Infrasity-Labs/dev-gtm-claude-skills

Open-source Claude skills for GEO, AI discoverability, and developer GTM workflows. Built for developer-focused companies that want their documentation to be found, parsed, and cited by AI systems.

124

stars

196

commits

Python

primary language

Jun 28, 2026

updated

www.infrasity.com/claude-skills
ai-citation
ai-visibility
claude
claude-skills
dev-gtm
geo
skills

README

Infrasity

Claude Code Skills for SEO, GEO & Developer Marketing

Free, open-source Claude skills that audit your docs, score your AI discoverability, and run developer-marketing workflows — so your product gets found, parsed, and cited by AI systems.

Claude Compatible GEO Optimized License: MIT GitHub stars Python 3.10+ skills.sh

Skills · Install · Commands · Who it's for · FAQ · Website

Works with: Claude Code · OpenAI Codex · OpenClaw · Hermes Agent[^hermes] · Mistral Vibe[^vibe] · Cursor · Aider · Windsurf · Kilo Code · OpenCode · Augment · Antigravity

dev-gtm-claude-skills


dev-gtm-claude-skills is a collection of open-source Claude Code skills for SEO, GEO (Generative Engine Optimization), AI discoverability, and developer marketing. Each skill is a self-contained package — a SKILL.md that tells Claude when and how to use it, optional Python tooling, and a README with full usage docs. Install once, then run from Claude Code, Claude Desktop, or Claude.ai with a plain-language prompt.

These skills are built for developer-focused companies — DevTools, AI-agent platforms, observability, and B2B SaaS — that need their documentation and content to be cited by AI systems like ChatGPT, Claude, Perplexity, and Gemini, not just indexed by Google.

What is GEO? Generative Engine Optimization is the practice of optimizing content so it gets surfaced and cited by AI answer engines. Traditional SEO tools optimize for search crawlers; these skills audit the signals — structured content, llms.txt, internal linking, and documentation completeness — that LLMs use when deciding what to recommend.

What you can do in one prompt

  • Audit developer docs for SEO and AI discoverability — 33 checks, scored 0–100
  • Score API & SDK documentation quality, endpoint by endpoint
  • Check AI-readinessrobots.txt, llms.txt, and llms-full.txt in one pass
  • Generate 3-month SEO performance reports vs competitors
  • Fix internal linking — find orphan pages and dead-ends, get paste-ready suggestions
  • Produce SEO content briefs as formatted .docx outlines

What Are Claude Code Skills & Agent Plugins?

Claude Code skills (also called agent skills or coding-agent plugins) are modular instruction packages that give AI coding agents domain expertise they don't have out of the box. Each skill in this repo includes:

  • SKILL.md — structured instructions, workflows, and decision frameworks that tell the agent when and how to act
  • Python tools — optional stdlib-only CLI scripts for the skills that crawl, score, or render reports
  • Reference docs — templates, scoring guides, and checklists the skill loads on demand

Because every skill follows the open SKILL.md standard, it isn't locked to a single product. The same package runs in Claude Code, Claude Desktop, Claude.ai, and any other agent that reads the standard (see Multi-Tool Support).

Skills vs Agents

SkillsAgents
PurposeHow to execute a taskWhat task to do
ScopeA single, well-defined workflowAn end-to-end job, often composing skills
Example"Follow these 33 checks to audit docs""Research, write, and review this blog post"

This repo ships several bundles: the SEO/GEO/docs skills under skills/, the full-funnel marketing skills under marketing-skills/, the blog content engine under writing-skills/, a comprehensive SEO suite under seo-skills/, and blog-production agents under agents/.


Table of contents


Multi-Tool Support

Every skill here is written to the open SKILL.md standard, so it isn't tied to a single agent. Claude Code, Claude Desktop, and Claude.ai read the skills natively (see Installation). For every other tool, the repo ships converter and installer scripts under scripts/ — clone the repo, then run the one-liner for your tool.

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills

Each script discovers all skills under skills/, marketing-skills/, writing-skills/, notion-skills/, and seo-skills/ and installs them in the format that tool expects.

ToolTestedSkills land in
Claude Code~/.claude/skills/
Claude Desktop / Claude.aiZIP upload
Hermes Agent~/.hermes/skills/
Kilo Code~/.claude/skills/ (via claudeCodeCompat)
Mistral Vibe~/.vibe/skills/
OpenAI Codex~/.codex/skills/
OpenClaw~/.openclaw/skills/
Augment.augment/skills/ (project-local)
Antigravity~/.gemini/antigravity/skills/
Cursor🔜.cursor/rules/ (project-local)
Aider🔜CONVENTIONS.md (project-local)
Windsurf🔜.windsurf/skills/ (project-local)
OpenCode🔜.opencode/skills/ (project-local)

See full install steps per tool below.


Installation

Most skills need no API keys; the SEO skills that pull live search data use a DataForSEO MCP server (setup below).

Install every skill in this repo with one command — no cloning, no copying:

npx skills add Infrasity-Labs/dev-gtm-claude-skills

This pulls the latest skills straight into your Claude Code skills directory. Re-run it any time to update. Prefer to install manually or use Claude Desktop / Claude.ai? Use one of the methods below.

Blog skills runtime (agents + scripts)

The writing skills add a /blog content engine built from 30 sub-skills, 5 subagents, and shared Python scripts. npx skills add installs the skill instructions, but the subagents and shared scripts need one extra step so the /blog write pipeline (research → write → SEO → review) runs end-to-end:

# Clone the repository to access the installer
git clone https://github.com/Infrasity-Labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills
./scripts/claude-blog-install.sh                  # agents → ~/.claude/agents, scripts → ~/.claude/scripts
pip install -r writing-skills/requirements.txt    # textstat + beautifulsoup4

Use --project to install into the current project's ./.claude/ instead of ~/.claude/ (make sure to run the script from your project's root directory, e.g., path/to/cloned-repo/scripts/claude-blog-install.sh --project), and --dry-run to preview. A few sub-skills need their own credentials — blog-google (Google API OAuth), blog-audio / blog-image (GOOGLE_AI_API_KEY + nanobanana MCP), blog-notebooklm (browser login) — and all degrade gracefully when unconfigured.

Claude Code (manual)

Clone the repo and copy the skill into your Claude Code skills directory.

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git

Project-level (available only in the current project):

mkdir -p .claude/skills
cp -r dev-gtm-claude-skills/skills/<skill-name> .claude/skills/

User-level (available across all projects):

mkdir -p ~/.claude/skills
cp -r dev-gtm-claude-skills/skills/<skill-name> ~/.claude/skills/

Skills activate automatically — Claude reads every SKILL.md in .claude/skills/ at the start of each session. Trigger them by describing the task in plain language, or type /<skill-name> directly.

clone repo

Activate skills GIF

Claude Desktop / Claude.ai

Skills upload as ZIP files via Settings → Customize → Skills → Create skill → Upload a skill.

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills/skills

# Zip the skill you want to install
zip -r docs-auditor.zip docs-auditor/

Upload the .zip, toggle the skill on, and it's active across all your chats. Uploaded skills stay private to your account; Claude installs any required packages the first time it runs them.

Converting to zip GIF

Add to Claude GIF

DataForSEO MCP (for the live-search skills)

growth-report, blog-post-counter, and api-docs-quality-report pull live search data via a DataForSEO MCP server.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "dataforseo": {
      "command": "npx",
      "args": ["-y", "@dataforseo/mcp-server"],
      "env": {
        "DATAFORSEO_USERNAME": "your@email.com",
        "DATAFORSEO_PASSWORD": "your_api_password"
      }
    }
  }
}

Claude Desktop — Customize → Connectors → Add Custom Connector:

https://your_email:your_api_password@mcp.dataforseo.com/http

Get credentials at dataforseo.com.

Clay connector (for prospect enrichment and cold-email)

dev-marketing-prospector and cold-email use Clay's data enrichment tools to look up company funding, headcount, tech stack, and verified contact information — replacing manual research across Crunchbase, LinkedIn, and Apollo.

Claude.ai / Claude Desktop — Settings → Customize → Connectors → Connect Clay. Sign in with your Clay account. Once connected, the find-and-enrich-company, ask-question-about-accounts, and find-and-enrich-contacts-at-company tools become available automatically.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "clay": {
      "command": "npx",
      "args": ["-y", "@clay-hq/mcp-server"],
      "env": {
        "CLAY_API_KEY": "your_clay_api_key"
      }
    }
  }
}

Get your API key at clay.com. Both skills degrade gracefully when Clay is not connected — dev-marketing-prospector falls back to manual web search across all source categories, and cold-email prompts the user for research signals instead.

Notion connector (for saving outputs to your workspace)

competitor-profiling, customer-research, and content-brief save their outputs to Notion as structured databases — competitor profiles become queryable competitive intelligence records, VOC research becomes a searchable quote bank, and content briefs sync to a living Notion database your whole team can filter and reference.

Claude.ai / Claude Desktop — Settings → Customize → Connectors → Connect Notion. Sign in with your Notion account and grant access to the workspaces you want skills to write to. Once connected, the notion-search, notion-create-database, notion-create-pages, and notion-update-page tools become available automatically.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": ["-y", "@notionhq/notion-mcp-server"],
      "env": {
        "NOTION_API_KEY": "your_notion_integration_secret"
      }
    }
  }
}

Get your integration secret at notion.so/my-integrations. All skills degrade gracefully when Notion is not connected — outputs are returned in chat or saved locally, and each skill appends a 💡 note with setup instructions.

Apify connector (for web scraping — reviews, Reddit, Google Maps)

reddit-comments, competitor-profiling, customer-research, seo-maps, and programmatic-seo use Apify actors to scrape data that WebFetch and Firecrawl can't reliably reach — Reddit threads blocked by rate limits, G2/Capterra/Trustpilot review pages with anti-bot protection, and live Google Maps business listings.

Note: Apify is an official Anthropic connector and is available on Claude Desktop only. It cannot be configured as a Claude Code MCP server.

Claude Desktop — Settings → Customize → Connectors → Connect Apify. Sign in with your Apify account. Once connected, the following actors are available across skills:

ActorUsed by
apify/reddit-scraperreddit-comments, customer-research
apify/g2-scraper, apify/capterra-scraper, apify/trustpilot-scrapercompetitor-profiling, customer-research
apify/google-maps-scraper, apify/google-maps-reviews-scraper, apify/yelp-scraperseo-maps
apify/youtube-scraper, apify/amazon-reviews-scrapercustomer-research
apify/google-maps-scraper, apify/g2-scraper, apify/capterra-scraperprogrammatic-seo

All skills degrade gracefully when Apify is not connected — each falls back to WebFetch or Firecrawl and appends a 💡 note explaining what Apify would unlock.

Klaviyo connector (for email template and campaign sync)

emails, churn-prevention, lead-magnets, and onboarding use Klaviyo's MCP tools to read your existing email setup and push new templates directly into your account — auditing existing flows, creating HTML and drag-and-drop templates, building campaigns, and pulling open/click/revenue metrics per flow step.

Note: The Klaviyo MCP can create templates and campaigns but cannot create automated flows. After the skill builds your templates, configure trigger conditions, delays, and branching logic in the Klaviyo UI.

Claude.ai / Claude Desktop — Settings → Customize → Connectors → Connect Klaviyo. Sign in with your Klaviyo account. Once connected, tools like list_email_templates, create_email_template, get_flows, create_campaign, and query_metric_aggregates become available automatically.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "klaviyo": {
      "command": "npx",
      "args": ["-y", "@klaviyo/mcp-server"],
      "env": {
        "KLAVIYO_API_KEY": "your_klaviyo_private_api_key"
      }
    }
  }
}

Get your private API key at klaviyo.com/account#api-keys-tab. All skills degrade gracefully when Klaviyo is not connected — they output email copy and sequence structure in chat, which you can manually import into any ESP.


Install Steps for Every Tool

All CLI installs start with cloning the repo:

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills

Hermes Agent ✅

  1. Run the sync script:
    python3 scripts/sync-hermes-skills.py
    
  2. Skills are symlinked into ~/.hermes/skills/. Add --copy if you want to delete the repo clone after install.
  3. Open Hermes and describe your task — the agent auto-loads the matching skill. You can also invoke by name: /docs-auditor.

Pass --verbose to see each skill as it syncs, --dry-run to preview without installing.


Kilo Code ✅

  1. In VS Code settings, enable the compatibility flag:
    kilo-code.new.claudeCodeCompat: true
    
    (Search "kilo-code claudeCodeCompat" in the VS Code settings UI.)
  2. Install skills using the standard Claude Code method — either the quick install:
    npx skills add Infrasity-Labs/dev-gtm-claude-skills
    
    or manual copy to ~/.claude/skills/:
    mkdir -p ~/.claude/skills
    cp -r skills/<skill-name> ~/.claude/skills/
    
  3. Open a Kilo Code chat and describe your task. Kilo Code reads from ~/.claude/skills/ when claudeCodeCompat is on.

Note: Placing .md files in .kilocode/rules/ only injects passive context — it does not enable skill invocation. The claudeCodeCompat path is the correct approach.


Mistral Vibe ✅

  1. Run the install script:
    ./scripts/vibe-install.sh
    
  2. Skills are symlinked flat into ~/.vibe/skills/<skill-name>/. Add --copy to copy instead of symlink.
  3. Open Vibe and describe your task, or invoke directly: /docs-auditor. Vibe auto-discovers skills from ~/.vibe/skills/.

Pass --dry-run to preview without installing, --verbose to list each skill.


OpenAI Codex ✅

  1. Generate local symlinks:
    python3 scripts/sync-codex-skills.py
    
  2. Copy skills to the Codex global directory:
    ./scripts/codex-install.sh
    
  3. Skills land in ~/.codex/skills/<skill-name>/. Open Codex and describe your task — the model reads the skill automatically.

Use ./scripts/codex-install.sh --dry-run to preview, --list to see all available skills.


OpenClaw ✅

  1. Run the install script:
    ./scripts/openclaw-install.sh
    
  2. Restart the OpenClaw gateway to pick up the new skills:
    openclaw gateway restart
    
  3. Verify the skills are visible:
    openclaw skills list
    
  4. Open an OpenClaw chat and describe your task. The agent auto-loads the matching skill. You can also invoke explicitly: /docs-auditor.

Use --dry-run to preview without installing, --force to overwrite existing skills.


Augment ✅

Augment reads skills from the .augment/skills/ directory inside your project — run these commands from your project root, not from the cloned repo.

  1. Convert skills to Augment format:
    cd /path/to/dev-gtm-claude-skills
    ./scripts/convert.sh --tool augment
    
  2. Install into your project:
    ./scripts/install.sh --tool augment --target /path/to/your/project
    
    Skills land in /path/to/your/project/.augment/skills/<skill-name>/SKILL.md.
  3. Open Augment in that project and describe your task — Augment detects the matching skill from .augment/skills/ automatically.

Re-run both commands whenever you want to update to the latest skills. Use --force on install.sh to overwrite.


Antigravity ✅

  1. Convert skills to Antigravity format:
    ./scripts/convert.sh --tool antigravity
    
  2. Install globally:
    ./scripts/install.sh --tool antigravity
    
  3. Skills land in ~/.gemini/antigravity/skills/<skill-name>/SKILL.md. Open Antigravity and describe your task — the agent auto-loads the matching skill.

Re-run both commands to update. Use --force on install.sh to overwrite existing skills.


Cursor 🔜 (steps ready, not yet tested)

  1. Convert skills to Cursor .mdc rule format:
    ./scripts/convert.sh --tool cursor
    
  2. Install into your project:
    ./scripts/install.sh --tool cursor --target /path/to/your/project
    
    Skills land in /path/to/your/project/.cursor/rules/<skill-name>.mdc.
  3. Open Cursor in that project — rules are applied automatically per the globs and alwaysApply settings in each .mdc file.

Aider 🔜 (steps ready, not yet tested)

  1. Convert all skills into a single CONVENTIONS.md:
    ./scripts/convert.sh --tool aider
    
  2. Install into your project:
    ./scripts/install.sh --tool aider --target /path/to/your/project
    
  3. Run Aider with the conventions file:
    aider --read CONVENTIONS.md
    

Windsurf 🔜 (steps ready, not yet tested)

  1. Convert skills to Windsurf skill bundle format:
    ./scripts/convert.sh --tool windsurf
    
  2. Install into your project:
    ./scripts/install.sh --tool windsurf --target /path/to/your/project
    
    Skills land in /path/to/your/project/.windsurf/skills/<skill-name>/SKILL.md.
  3. Open Windsurf in that project and describe your task.

Skills

Ten production-grade skills for SEO, GEO, documentation, and developer-marketing workflows.

SkillClaude skill for…What it doesExample trigger
docs-auditordocumentation SEO & AI discoverabilityAudits a developer docs site across 33 checks in 7 categories — AI discoverability, structure, content quality, SEO, internal linking, versioning — and returns a scored 0–100 report with pass/warn/fail per check.Audit the docs at docs.stripe.com
sdk-docs-auditorSDK documentationAudits SDK docs across 6 sections (Installation, Quick Start, Error Handling, Troubleshooting, Examples, Best Practices), scores each 0–100, cross-references gaps, and ships a downloadable HTML report.Audit the SDK docs at docs.example.com
api-docs-quality-reportAPI documentation qualityCrawls every endpoint page and scores each across 5 checks. Outputs an interactive HTML report with a scorecard, pattern analysis, top issues, and per-endpoint fix guidance.Run an API docs audit on docs.company.com
growth-reportSEO performance reportsGenerates a 3-month SEO performance report for any domain vs competitors using live DataForSEO data: traffic trends, keyword rankings, top content clusters, and competitive positioning.Generate SEO report for firefly.ai vs spacelift.io
blog-post-countercontent research & competitive intelCounts unique blog posts for any company from its sitemap or listing page, with a competitor-comparison mode to benchmark content volume across domains.How many blogs does hackmamba.io have vs infrasity.com
brief-outline-generatorSEO content briefsGenerates a fully structured SEO content outline and exports it as a formatted .docx with section headings, topic prompts, and angles for a writer to fill in.Generate a content brief for "developer marketing strategy"
llms-txt-checkerGEO & AI readinessAudits a domain's AI-readiness by probing robots.txt, llms.txt, and llms-full.txt, scoring each against a structured checklist with a pass/warn/fail report and prioritized fixes. No API keys.Check if stripe.com has llms.txt
orphan-pages-internal-linking-opportunitiesinternal linkingFinds all orphan pages (zero incoming internal links) using Ahrefs, clusters them by topic, and generates 3 linking suggestions per orphan with anchor text and placement. Styled HTML report.Run an orphan page audit on example.com/blog/
no-outlinks-auditinternal linkingFinds dead-end pages (zero outgoing internal links) and generates 3 outgoing link suggestions per page — anchor text, placement, ready-to-paste copy. Styled HTML report.Find pages with no outgoing links on example.com
dev-marketing-prospectorprospecting & lead listsBuilds an exact-fit prospect list for any developer-focused vertical (AI agents, IaC, DevTools, observability, FinOps…), mapping a real outreach signal and email pain point per company, each sourced with a URL.Prospect AI agent companies, Series A, 50–200 headcount

Marketing skills

A full-funnel pack of 28 developer-marketing skills under marketing-skills/ — covering demand gen, content, lifecycle, conversion, and retention. Install the whole set with the quick install command above.

SkillClaude skill for…
ab-testingDesigning A/B tests and building an experimentation program
ad-creativeGenerating and iterating ad copy at scale for any platform
adsPaid campaign strategy, targeting, and bidding (Google, Meta, LinkedIn)
ai-seoOptimizing content to be cited by ChatGPT, Perplexity, Claude & AI Overviews
analyticsSetting up tracking, GA4, events, UTMs, and conversion measurement
churn-preventionCancel flows, save offers, dunning, and retention strategy
cold-emailB2B cold outreach and multi-touch follow-up sequences
community-marketingBuilding and growing Discord/Slack communities and advocates
competitor-profilingResearching and profiling competitors from their URLs
competitorsBuilding comparison, alternative, and "vs" pages
content-strategyPlanning topics, clusters, pillars, and editorial calendars
copywritingWriting and improving landing, pricing, and product page copy
croConversion rate optimization for pages and forms
customer-researchVOC, personas, JTBD, review mining, and transcript analysis
emailsLifecycle, drip, onboarding, and re-engagement email flows
free-toolsEngineering-as-marketing — calculators, graders, and lead-gen tools
launchProduct launches, Product Hunt, and go-to-market planning
lead-magnetsGated content, templates, checklists, and opt-in offers
marketing-ideasBrainstorming growth tactics and channels when you're stuck
onboardingActivation, first-run experience, and time-to-value
pricingPricing, packaging, freemium, and monetization strategy
programmatic-seoBuilding templated SEO pages at scale from data
referralsReferral, affiliate, and word-of-mouth program design
revopsLead scoring, routing, and marketing-to-sales handoff
sales-enablementPitch decks, one-pagers, objection handling, and demo scripts
schemaStructured data and JSON-LD for rich results
seo-auditTechnical and on-page SEO audits and diagnostics
socialSocial content, repurposing, and short-form video scripts

Writing skills

A full blog content engine under writing-skills/30 sub-skills routed by a blog orchestrator, plus 5 production subagents (agents/) and shared Python tooling (scripts/). Dual-optimized for Google rankings (E-E-A-T, Dec 2025 Core Update) and AI citations (GEO/AEO). Invoke everything through /blog <subcommand> — see the /blog command table. The same folder also ships 4 standalone writing skills for copy, social, and prose quality.

These need one extra setup step beyond npx skills add — see Blog skills runtime.

SkillClaude skill for…
blogOrchestrator — routes /blog <subcommand> to the right sub-skill
blog-writeWriting new articles from scratch (research → write → SEO → review pipeline)
blog-rewriteOptimizing/refreshing existing posts with anti-AI-detection patterns
blog-analyze5-category 100-point quality audit with AI-content detection
blog-briefContent briefs with template recommendation and distribution plan
blog-outlineSERP-informed outlines with competitive gap analysis
blog-strategyPositioning, topic clusters, and AI-citation surface strategy
blog-calendarEditorial calendars with decay detection and 60/30/10 content mix
blog-clusterSemantic topic-cluster planning + execution (hub-and-spoke)
blog-seo-checkPost-writing SEO validation (title, meta, headings, links, OG)
blog-schemaJSON-LD schema (BlogPosting, Person, FAQ, Breadcrumb)
blog-geoAI-citation readiness audit with a 0–100 GEO score
blog-auditFull-site blog health assessment across all posts
blog-factcheckVerifying statistics against their cited sources
blog-cannibalizationKeyword-overlap / cannibalization detection across posts
blog-repurposeCross-platform repurposing (social, email, YouTube, Reddit)
blog-personaWriting-voice and persona management (NNGroup framework)
blog-brandGenerating BRAND.md + VOICE.md context auto-loaded by all sub-skills
blog-discourseLast-30-days discourse research (API-free via WebSearch)
blog-taxonomyTag/category management across CMS platforms
blog-chartInline SVG data-viz charts (internal-only, called by write/rewrite)
blog-imageAI image generation/editing via Gemini (nanobanana MCP)
blog-audioAudio narration via Gemini TTS (summary/full/dialogue)
blog-notebooklmSource-grounded research from your NotebookLM documents
blog-googleGoogle API data: PSI, CrUX, GSC, GA4, NLP, YouTube, Keywords
blog-flowFLOW framework prompts (evidence-led, find/optimize/win)
blog-multilingualOne-command international publishing (write + translate + localize + hreflang)
blog-translateSEO-optimized translation with format preservation
blog-localizeCultural deep-adaptation per locale (DACH, FR, ES, JA, custom)
blog-locale-auditMultilingual content QA (completeness, hreflang, parity, freshness)

Standalone writing skills

Beyond the /blog engine, writing-skills/ ships 4 standalone craft skills for copy, social, and prose quality — usable on their own, no runtime setup required.

SkillClaude skill for…
ogilvy-copywritingSales-driven copy, headlines, and landing pages using David Ogilvy's advertising principles
social-media-postsPlatform-specific posts for LinkedIn, Facebook, Instagram & Reddit (limits, hooks, hashtags)
reddit-commentsDrafting on-brand Reddit comments from a domain + thread, with voice derived from the site
stop-slopStripping predictable AI writing tells from prose for more human-like output

SEO skills

A comprehensive SEO suite under seo-skills/25 sub-skills routed by a seo orchestrator, plus 18 specialist subagents (agents/), shared Python tooling (scripts/), and 8 optional MCP extensions (seo-skills/extensions/). Dual-optimized for Google rankings (technical SEO, E-E-A-T, Core Web Vitals with INP) and AI visibility (GEO for AI Overviews/ChatGPT/Perplexity). Detects business type (SaaS, e-commerce, local, publisher, agency) and delegates to the right specialists. Invoke everything through /seo <subcommand> — see the /seo command table.

SkillClaude skill for…
seoOrchestrator — routes /seo <subcommand> and runs full-audit delegation
seo-audit-fullFull-site audit with parallel subagent delegation (up to 500 pages)
seo-pageDeep single-page SEO analysis
seo-technicalTechnical SEO audit across 9 categories (crawl, index, CWV, JS rendering)
seo-contentE-E-A-T and content-quality analysis with AI-citation readiness
seo-content-briefCompetitive SEO content briefs with per-section word counts
seo-schemaSchema.org detection, validation, and JSON-LD generation
seo-sitemapXML sitemap analysis and generation
seo-imagesImage SEO, image SERP, and file optimization (WebP/AVIF, IPTC)
seo-geoGEO for AI Overviews, ChatGPT, and Perplexity
seo-planStrategic SEO planning with industry templates
seo-programmaticProgrammatic SEO at scale with thin-content safeguards
seo-competitor-pagesComparison, "vs", and alternatives page generation
seo-localLocal SEO — GBP, NAP, citations, reviews, map pack
seo-mapsMaps intelligence — geo-grid rank tracking, GBP audit
seo-hreflangHreflang and international SEO audit/generation
seo-googleGoogle APIs — GSC, PageSpeed, CrUX, Indexing, GA4
seo-backlinksBacklink profile analysis (free: Moz/Bing/Common Crawl)
seo-clusterSERP-based semantic topic clustering (hub-and-spoke)
seo-sxoSearch Experience Optimization — page-type mismatch detection
seo-driftSEO drift monitoring — baseline, compare, history
seo-ecommerceE-commerce SEO — product schema, marketplace intelligence
seo-dataforseoLive SEO data via DataForSEO (extension)
seo-image-genAI image generation for SEO assets via Gemini (extension)
seo-flowFLOW framework prompts (evidence-led: find/leverage/optimize/win)

Standalone SEO skill

Alongside the suite, seo-skills/ ships geo-seo-claude — a self-contained SEO/GEO/AEO optimizer (audit, schema generation, metadata validation, keyword/entity extraction, IndexNow) with its own bundled scripts and reference library.

SEO extensions

8 optional MCP extensions under seo-skills/extensions/ add live data and AI-visibility coverage — each installed on demand via its own install.sh:

Extension skillAdds
seo-dataforseoLive SERP, keyword, backlink, and AI-visibility data (DataForSEO MCP)
seo-image-genAI image generation via Gemini/nanobanana MCP
seo-firecrawlFull-site crawling and site mapping (Firecrawl MCP)
seo-ahrefsReferring domains, backlinks, and organic keywords (Ahrefs MCP)
seo-bingBing Webmaster Tools + IndexNow submission
seo-serankingAI Share-of-Voice across ChatGPT, Gemini, Perplexity, AI Overviews, AI Mode
seo-profoundTime-series LLM citation tracking
seo-unlighthouseMulti-page Lighthouse audits via the Unlighthouse CLI

Web design skills

Four skills for visual design, UI auditing, and site planning. Install via the standard Claude Code or CLI method — they live in web-design/.

SkillWhat it doesExample prompt
frontend-designDistinctive visual design direction, typography, palette, and aesthetic choices for new UI or redesigns. Rejects templated defaults.Give me frontend design direction for a devtools dashboard
landing-page-auditorAudits any landing or service page across 48 checks in 10 categories — LLM/AI discoverability, GEO readiness, content clarity, schema, internal linking, freshness, and technical hygiene.Audit the landing page at stripe.com/payments
site-architecturePlans page hierarchy, navigation, URL structure, and internal linking for a website or product. Use when figuring out what pages a site needs and how they connect.Plan the site architecture for a B2B SaaS docs portal
web-design-guidelinesReviews UI code against accessibility, UX, and web design best practices.Review my UI component for accessibility and UX issues

Product management skills

Eight skills for PM workflows — strategy, PRDs, prioritization, backlog, and growth. Install via the standard Claude Code or CLI method — they live in product-management-skills/.

SkillWhat it doesExample prompt
product-strategistStrategic product leadership toolkit: OKR cascades, quarterly planning, competitive analysis, product vision documents, and team scaling proposals.Build a quarterly OKR cascade for our AI platform
prd-developmentBuilds a structured, engineering-ready PRD from discovery notes — problem, users, solution, and success criteria.Write a PRD for our new API key management feature
prioritization-advisorChooses the right prioritization framework (RICE, ICE, value/effort, etc.) based on product stage, team context, and decision type.Help me pick a prioritization framework for our early-stage product
agile-product-ownerAgile backlog management: user stories, acceptance criteria, sprint planning, velocity tracking, and epic breakdown.Write user stories for our onboarding flow
user-story-mappingCreates a user story map — activities, steps, tasks, and release slices organized around the user journey.Map the user story for our checkout flow
organic-growth-advisorDiagnoses which organic growth path fits the current constraint: new segments, geographies, channels, or products. Uses a 2×2 framework.We've plateaued in our core market — what's the next growth move?
product-manager-toolkitComprehensive PM toolkit: RICE scoring, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategy.Help me run a RICE prioritization session
pm-skill-creatorDesigns a new PM skill through guided conversation — from raw idea to a structured, repo-compliant SKILL.md draft.Help me create a skill for competitive positioning

Notion skills

Seven personal-productivity and workflow skills under notion-skills/ — brain dumps, email triage, meeting notes, SEO content briefs, CLAUDE.md generation, mid-conversation reassessment, and multi-agent workflow scripting. Install via the standard Claude Code or CLI method.

SkillWhat it doesExample prompt
captureTransforms any chaotic brain dump into a clean four-section actionable system (Projects/Ideas, Tasks, Connections, Next Steps). Zero information loss, no upfront intake.brain dump: we need to redesign onboarding, fix the pricing page, interview 5 customers this week…
inboxFull email triage system — builds a personalized taxonomy KB on first run, then classifies, researches senders, and drafts replies (never sends).triage my inbox
reflectPauses execution mid-conversation and reassesses direction, assumptions, and bias across 5 dimensions. Ends with a concrete continue/pivot/pause recommendation.step back — are we overthinking this?
workflow-builderDesigns and writes deterministic multi-agent workflow scripts (.js) for Claude Code's Workflow tool — fan-out, pipeline, loop, and judge-panel topologies.Build a workflow that researches 10 companies and writes a cold email for each
content-briefGenerates a fully structured SEO content brief for a target keyword and optionally pushes it to a Notion database.Create a content brief for "developer onboarding best practices"
claude-md-starterScans the repo, infers tech stack and conventions, asks at most 3 questions, and writes a populated CLAUDE.md from scratch.Generate a CLAUDE.md for this repo
meeting-notesStructured meeting summaries with action items, decisions, and key discussion points.Summarize these meeting notes: [paste]

Coding skills

Seven skills for software engineering workflows — code review, architecture, TDD, and LLM coding best practices. Install via the standard Claude Code method — they live in coding-skills/.

SkillWhat it does
code-reviewerAutomated code review for 13 languages — analyzes PRs for complexity and risk, detects code smells and SOLID violations, generates structured review reports.
pr-review-expertExpert-level pull request review focused on security, correctness, and code quality across any diff or branch.
karpathy-guidelinesBehavioral guidelines derived from Andrej Karpathy's observations on LLM coding pitfalls — reduces overcomplication, surfaces assumptions, and enforces verifiable success criteria.
senior-architectArchitecture design and analysis toolkit — system design, microservices vs monolith evaluation, dependency analysis, ADRs, and Mermaid/PlantUML/ASCII diagrams.
brainstormingCollaborative dialogue skill for exploring user intent, requirements, and design before any implementation work begins. Use before creating features or building components.
test-driven-developmentTDD workflow — write the test first, watch it fail, write minimal code to pass. Applies to any feature or bugfix.
using-superpowersSession-start skill that establishes how to find and invoke available skills before responding to any task.

Job search skills

Twenty-seven skills covering the full job search lifecycle — from finding roles and tailoring resumes to writing cover letters, prepping for interviews, and negotiating offers. Install via the standard Claude Code method — they live in job-search/.

Search & Applications

SkillWhat it does
job-searchAutomated job search using browser automation — finds roles matching your resume and preferences across job boards.
applyFills out job applications on Greenhouse, Lever, and Workday end-to-end using browser automation.
application-form-fillerFills individual application form fields with context-aware, tailored answers drawn from your CV and the job description.
network-scanScans your LinkedIn contacts' companies for matching job openings — parallelized with caching for fast weekly reruns.
job-description-analyzerAnalyzes job postings, calculates a match score, identifies skill gaps, and builds an application strategy.

Resume Building

SkillWhat it does
tailor-resumeFull resume tailoring workflow with a profile interview step — fetches the job posting, tailors every section, critiques for AI writing patterns.
resume-tailorCustomize a resume for a specific role while maintaining truthfulness — reorders, reframes, and adds keywords from the job description.
resume-ats-optimizerOptimizes resumes for Applicant Tracking Systems and analyzes keyword match against a job posting.
resume-bullet-writerTransforms weak resume bullets into achievement-focused statements with metrics and measurable impact.
resume-formatterEnsures ATS-friendly formatting and produces a clean, scannable resume layout.
resume-quantifierFinds opportunities to add metrics and estimates reasonable numbers when exact data is unavailable.
resume-section-builderCreates targeted resume sections optimized for different experience levels, roles, and industries.
resume-version-managerTracks multiple tailored resume versions against a master resume and logs which version went where.
tech-resume-optimizerOptimizes resumes specifically for software engineering, product management, and other technical roles.
academic-cv-builderFormats CVs for academic positions — publications, grants, teaching experience, and conference sections.
executive-resume-writerCreates C-suite and VP-level resumes emphasizing strategic leadership, P&L ownership, and board interaction.
creative-portfolio-resumeBalances visual design with ATS compatibility for creative, design, and marketing roles.

Cover Letters & Outreach

SkillWhat it does
cover-letterFull cover letter workflow — fetches the job posting, writes a tailored 250–350 word letter grounded in your resume.
cover-letter-generatorGenerates a personalized, compelling cover letter directly from a pasted resume and job description.
cold-email-writerWrites personalized cold outreach emails to hiring managers and founders — specific, human, and not a pitch deck.

Research & Prep

SkillWhat it does
interview-prep-generatorGenerates STAR stories, role-specific practice questions, and talking points from your resume.
offer-comparison-analyzerCompares multiple job offers side-by-side with total compensation analysis (base, equity, bonus, benefits).
salary-negotiation-prepResearches market rates, builds a negotiation strategy, and writes counter-offer scripts.

Profile & Portfolio

SkillWhat it does
linkedin-profile-optimizerOptimizes your LinkedIn profile for recruiter searchability, keyword density, and engagement signals.
portfolio-case-study-writerTransforms resume bullets into detailed, narrative portfolio case studies.
career-changer-translatorTranslates skills and experience from one industry to another, surfacing transferable skills and reframing language.
reference-list-builderFormats professional references correctly and prepares reference sheets and briefing materials.

Product designer skills

Ninety-nine skills covering the full product design and UX practice — from early research and strategy through design systems, interface craft, critiques, accessibility, and handoff. Install via the standard Claude Code method — they live in product-designers/.

Research & Discovery

SkillWhat it does
user-personaCreates refined user personas from research data with demographics, goals, frustrations, and behavioral patterns.
empathy-mapBuilds a 4-quadrant empathy map (Says, Thinks, Does, Feels) to synthesize user research into actionable insights.
interview-scriptCreates structured user interview scripts with warm-up, core exploration, and wrap-up sections.
journey-mapCreates end-to-end user journey maps with stages, touchpoints, emotions, pain points, and opportunity areas.
affinity-diagramOrganizes qualitative research data into themes, clusters, and insight statements.
user-flow-diagramCreates user flow diagrams showing paths, decisions, and branch logic.
experience-mapMaps the full ecosystem of user touchpoints, channels, and relationships across a service.
diary-study-planDesigns diary studies with prompts, duration, participant criteria, and an analysis framework.
card-sort-analysisAnalyzes card sorting results to inform information architecture and navigation structure.
survey-designDesigns surveys that collect reliable, unbiased quantitative data to validate hypotheses.
summarize-interviewSummarizes a user interview transcript into structured insights with key themes, quotes, and action items.
research-repositoryBuilds and maintains a research repository that makes findings findable and reusable across teams.

Strategy & Planning

SkillWhat it does
design-briefWrites a comprehensive design brief defining problem space, constraints, audience, and success criteria.
design-principlesDefines actionable design principles that guide decision-making and resolve trade-offs.
jobs-to-be-doneMaps user Jobs-to-Be-Done with functional, emotional, and social dimensions plus outcome expectations.
north-star-visionArticulates a compelling north-star product vision that aligns teams and inspires strategic design decisions.
opportunity-frameworkIdentifies, evaluates, and prioritizes design opportunities using impact-effort frameworks.
business-designToolkit for thinking and communicating as a designer in a business context — financials, competitive landscapes, defending decisions in the language of value.
competitive-analysisStructured competitive analysis comparing UX patterns, features, strengths, and gaps across rival products.
metrics-definitionDefines UX metrics and KPIs that connect design decisions to measurable business and user outcomes.
design-impact-reportingCommunicates design's contribution to business and user outcomes in stakeholder-friendly terms.
content-strategyDefines what content a product needs, how it should be structured, and who owns it.
stakeholder-alignmentCreates responsibility matrices, decision frameworks, and communication plans to align stakeholders.

UX Laws & Frameworks

SkillWhat it does
fitts-lawApplies Fitts's Law to size and position interactive targets for fast, accurate interaction.
hicks-lawApplies Hick's Law to reduce decision time by limiting the number of simultaneous choices presented.
millers-lawApplies Miller's Law — chunks information into groups of ~4 to fit working memory limits.
doherty-thresholdApplies the Doherty Threshold — keeps system response times under 400ms to maintain user flow.
aesthetic-usabilityApplies the Aesthetic-Usability Effect — visually polished interfaces are perceived as more usable.
law-of-proximityApplies the Law of Proximity to group related elements through spatial relationships.
law-of-common-regionApplies the Law of Common Region to group elements using containers, backgrounds, and boundaries.
von-restorff-effectApplies the Von Restorff Effect to make the most important element distinctly different from its surroundings.

Design System

SkillWhat it does
color-systemBuilds a comprehensive color system with palette generation, semantic mapping, and accessibility compliance.
typography-scaleCreates a modular typography scale with size, weight, and line-height relationships.
spacing-systemCreates a consistent spacing system based on a base unit with contextual application rules.
layout-gridDefines responsive layout grid systems with columns, gutters, margins, and breakpoint behavior.
design-tokenDefines and organizes design tokens (color, spacing, typography, elevation) with naming conventions and usage guidance.
design-token-auditAudits design token usage across a product for consistency and coverage.
naming-conventionEstablishes naming convention systems for design elements, components, and tokens.
icon-systemCreates an icon system specification covering grid, sizing, naming, categories, and implementation guidance.
illustration-styleDefines an illustration style guide with visual language, color usage, and application rules.
motion-systemDefines a motion system with duration tokens, easing vocabulary, and reduced-motion handling.
pattern-libraryStructures pattern library entries with problem context, solution pattern, usage examples, and related patterns.
theming-systemDesigns theming architecture supporting brand variants, dark mode, and high-contrast modes.
dark-mode-designDesigns effective dark mode interfaces with proper color adaptation, contrast, and elevation.
readable-measureSets optimal line lengths for readability across typography scales and responsive layouts.

Interface Design

SkillWhat it does
interface-designCraft-first interface design for dashboards, admin panels, SaaS apps, tools, and settings pages — the difference between designed and generated.
interfaces-that-feelApplies an emotional resonance lens to technically correct but flat UIs — prescribes specific changes at the copy, motion, and interaction layer.
information-architectureDesigns the structure, hierarchy, and navigation model for a product's content and features.
navigation-patternsSelects and designs navigation patterns matching product structure, user tasks, and platform conventions.
visual-hierarchyEstablishes clear visual hierarchy through size, weight, color, spacing, and positioning.
responsive-designDesigns adaptive layouts and interactions that work across all screen sizes and input methods.
form-designDesigns forms that minimize friction, prevent errors, and guide users to successful completion.
loading-statesDesigns loading, skeleton, and progressive content reveal patterns.
error-handling-uxDesigns error prevention, detection, and recovery experiences.
onboarding-designDesigns first-run experiences that get users to value quickly without overwhelming them.
search-uxDesigns search experiences that help users find what they need, recover from failure, and refine results.
feedback-patternsDesigns system feedback for user actions including confirmations, status updates, and notifications.
data-visualizationDesigns clear, accessible data visualizations with appropriate chart selection and styling.
animation-principlesApplies animation principles to UI motion for purposeful, polished interactions.
gesture-patternsDesigns gesture-based interactions for touch and pointer devices.
micro-interaction-specSpecifies micro-interactions with trigger, rules, feedback, and loop/mode definitions.
state-machineModels complex UI behavior as finite state machines with states, events, and transitions.
localization-designDesigns interfaces that adapt gracefully to multiple languages, writing directions, and cultural contexts.

Critique

SkillWhat it does
critique-affordanceCritiques a screen's interactive affordances — what looks clickable, state visibility, CTA clarity.
critique-brand-consistencyCritiques brand consistency against mood, voice, and token definitions.
critique-colorCritiques colour usage — contrast ratios, palette coherence, semantic meaning, and colour accessibility.
critique-compositionCritiques composition — balance, whitespace, rhythm, and gestalt principles.
critique-information-densityCritiques information density — cognitive load, content prioritisation, and progressive disclosure.
critique-typographyCritiques typography — scale usage, readability, consistency, and token compliance.
critique-visual-hierarchyCritiques visual hierarchy — entry point, eye flow, weight distribution, and emphasis.

Testing & Evaluation

SkillWhat it does
accessibility-auditComprehensive accessibility audit against WCAG guidelines with severity ratings and remediation steps.
accessibility-test-planCreates accessibility testing plans covering assistive technologies and WCAG criteria.
a-b-test-designDesigns rigorous A/B tests with hypotheses, variants, metrics, and sample size calculations.
heuristic-evaluationConducts expert heuristic evaluations using Nielsen's heuristics and domain-specific criteria.
usability-test-planDesigns usability test plans with tasks, success metrics, participant criteria, and a facilitation guide.
click-test-planDesigns click/first-click tests to evaluate navigation and information findability.
test-scenarioGenerates structured usability test scenarios with realistic tasks, success criteria, and facilitation notes.
design-qa-checklistCreates QA checklists for verifying design implementation accuracy.
design-debt-auditIdentifies, categorizes, and prioritizes accumulated design inconsistencies and structural problems.
prototype-strategyChooses the right prototyping fidelity and method for the design question at hand.

Documentation & Handoff

SkillWhat it does
component-specWrites detailed component specifications including props, states, variants, accessibility requirements, and usage guidelines.
handoff-specCreates developer handoff specifications with measurements, behaviors, assets, and edge cases.
design-rationaleWrites clear design rationale connecting decisions to user needs, business goals, and principles.
design-review-processEstablishes design review gates with criteria, checklists, and approval workflows.
design-critiqueFacilitates structured design critiques with clear feedback frameworks and actionable outcomes.
documentation-templateGenerates structured documentation templates for components, patterns, or guidelines within a design system.
wireframe-specSpecifies wireframe layouts with content priority, component placement, and annotation.
anydesignAnalyzes any visual source — website, screenshot, Figma file, or image — to extract its design system, tokens, and components into a design.md.
case-studyCrafts portfolio-ready case studies that tell the full story of a design project.
presentation-deckStructures compelling design presentations for stakeholders, reviews, and showcases.
service-blueprintMaps the end-to-end service delivery system including frontstage, backstage, and supporting infrastructure.
team-workflowDesigns team workflows covering task management, collaboration rituals, and tooling.
version-control-strategyDefines version control strategies for design files, components, and libraries.
design-system-governanceDefines how a design system evolves — contribution models, versioning, change management, and deprecation.
design-system-adoptionCreates adoption strategies and materials to drive design system usage across teams.
design-sprint-planPlans and facilitates design sprints from challenge framing through prototype testing.
design-negotiationAdvocates for design quality, scope, and time with cross-functional partners using evidence and shared goals.
ux-writingWrites effective UI copy including microcopy, error messages, empty states, and CTAs.
ux-researcher-designerFull UX research and design toolkit — personas, journey mapping, usability testing frameworks, and research synthesis.

Commands

If you've installed the command pack, every skill is also a slash subcommand. The SEO, GEO, and docs skills run under /dev-gtm; the full-funnel marketing skills run under /marketing; the comprehensive SEO suite runs under /seo; the blog content engine runs under /blog; the web design skills run under /web-design; the product management skills run under /pm; the Notion and productivity skills run under /notion; the coding skills run under /coding-skills; the job search skills run under /job-search; and the product designer skills run under /product-designers.

Claude Commands

/dev-gtm — SEO, GEO & docs

CommandDescription
/dev-gtm docs-audit <url>Run the full 33-check developer docs audit and return a scored report.
/dev-gtm sdk-audit <url>Audit SDK documentation across 6 sections; scored, downloadable HTML report.
/dev-gtm api-audit <url>Crawl every endpoint page and score each across 5 quality checks.
/dev-gtm blog-count <company or domain>Count unique blog posts for one company, or compare a target vs competitors.
/dev-gtm brief-outline <keyword or title>Generate an SEO content outline and export it as a formatted .docx.
/dev-gtm growth-report <domain> [competitors...]3-month SEO performance report with traffic, keywords, and competitive positioning.
/dev-gtm llms-check <domain>Audit AI-readiness: probe robots.txt, llms.txt, llms-full.txt; scored report.
/dev-gtm orphan-pages <domain>Discover pages with zero incoming internal links; 3 linking suggestions per orphan.
/dev-gtm dead-end-pages <domain>Find pages with zero outgoing internal links; 3 outgoing link suggestions per page.
/dev-gtm prospect <domain or ICP>Build an exact-fit developer-marketing prospect list with signals and pain points.

/marketing — full-funnel growth

CommandDescription
/marketing seo-audit <domain or url>Diagnose technical & on-page SEO issues.
/marketing ai-seo <url or topic>Optimize for AI search engines & LLM citations.
/marketing schema <url or page type>Add or fix structured data markup.
/marketing programmatic-seo <keyword pattern>Build SEO pages at scale from templates.
/marketing content-strategy <product or niche>Plan what content to create.
/marketing copywriting <page or url>Write or improve marketing copy.
/marketing social <platform or topic>Create & schedule social content.
/marketing lead-magnets <topic or audience>Plan a lead magnet.
/marketing free-tools <product or idea>Plan a free marketing tool.
/marketing ads <product or goal>Paid campaign strategy & targeting.
/marketing ad-creative <product or offer>Generate ad copy variations at scale.
/marketing ab-testing <what to test>Design an A/B test or experiment.
/marketing cro <page url>Improve conversion rate.
/marketing launch <product or feature>Plan a product/feature launch.
/marketing marketing-ideas <product>Brainstorm growth ideas.
/marketing referrals <product>Design a referral/affiliate program.
/marketing community-marketing <product or goal>Plan community-led growth.
/marketing emails <sequence type>Build a lifecycle/drip email flow.
/marketing cold-email <target or offer>Write cold outreach sequences.
/marketing onboarding <product>Optimize post-signup activation.
/marketing churn-prevention <context>Reduce churn & build retention flows.
/marketing customer-research <source or topic>Conduct or analyze customer research.
/marketing competitor-profiling <competitor URLs>Produce structured competitor profiles.
/marketing competitors <you vs competitor>Create comparison/alternative pages.
/marketing analytics <what to track>Set up or audit measurement.
/marketing pricing <product or context>Pricing & packaging strategy.
/marketing revops <context>Lead lifecycle & marketing-to-sales handoff.
/marketing sales-enablement <asset type>Create sales collateral.

/blog — blog content engine

Single entry point for all 30 writing skills. Requires the Blog skills runtime step.

CommandDescription
/blog write <topic>Write a new post from scratch (research → write → SEO → review).
/blog rewrite <file>Rewrite/optimize an existing post.
/blog update <file>Update an existing post with fresh statistics (routes to rewrite).
/blog analyze <file-or-url>Audit quality with a 0–100 score.
/blog brief <topic>Generate a detailed content brief.
/blog outline <topic>SERP-informed content outline.
/blog strategy <niche>Blog strategy and topic ideation.
/blog calendar [monthly|quarterly]Generate an editorial calendar.
/blog cluster [plan|execute] <seed>Semantic topic-cluster planning + execution.
/blog seo-check <file>Post-writing SEO validation checklist.
/blog schema <file>Generate JSON-LD schema markup.
/blog geo <file>AI-citation readiness audit.
/blog audit [directory]Full-site blog health assessment.
/blog factcheck <file>Verify statistics against cited sources.
/blog cannibalization [dir]Detect keyword cannibalization across posts.
/blog repurpose <file>Repurpose content for other platforms.
/blog persona [create|list|use|show]Manage writing personas and voice profiles.
/blog brand [init|show|update]Generate BRAND.md + VOICE.md context files.
/blog discourse <topic>Research what people said in the last 30 days.
/blog taxonomy [suggest|sync|audit]Tag/category management across CMS platforms.
/blog image [generate|edit|setup]AI image generation via Gemini.
/blog audio [generate|voices|setup]Generate audio narration of a post.
/blog notebooklm <question>Query NotebookLM for source-grounded research.
/blog google [command] [args]Google API data: PSI, CrUX, GSC, GA4, NLP, YouTube.
/blog flow [find|optimize|win|prompts|sync]FLOW framework prompts.
/blog multilingual <topic> --languages <codes>Write + translate + localize + hreflang.
/blog translate <file> --to <codes>SEO-optimized translation.
/blog localize <file> --locale <code>Cultural deep-adaptation.
/blog locale-audit <directory>Multilingual content QA.

/seo — comprehensive SEO suite

Single entry point for the SEO suite. The seo orchestrator detects business type and delegates to specialist subagents in parallel for full audits.

CommandDescription
/seo audit <url>Full website audit with parallel subagent delegation.
/seo page <url>Deep single-page SEO analysis.
/seo technical <url>Technical SEO audit (9 categories).
/seo content <url>E-E-A-T and content-quality analysis.
/seo content-brief <topic or url>Generate a competitive SEO content brief.
/seo schema <url>Detect, validate, and generate Schema.org markup.
/seo sitemap <url or generate>Analyze or generate XML sitemaps.
/seo images <url or optimize>Image SEO audit, SERP analysis, file optimization.
/seo geo <url>AI Overviews / Generative Engine Optimization.
/seo plan <business-type>Strategic SEO planning.
/seo programmatic [url|plan]Programmatic SEO analysis and planning.
/seo competitor-pages [url|generate]Competitor comparison page generation.
/seo local <url>Local SEO (GBP, citations, reviews, map pack).
/seo maps [command] [args]Maps intelligence (geo-grid, GBP audit, reviews).
/seo hreflang [url]Hreflang / i18n SEO audit and generation.
/seo google [command] [url]Google SEO APIs (GSC, PageSpeed, CrUX, Indexing, GA4).
/seo backlinks <url>Backlink profile analysis (free + DataForSEO).
/seo cluster <seed-keyword>SERP-based semantic clustering and content architecture.
/seo sxo <url>Search Experience Optimization — page-type and persona scoring.
/seo drift [baseline|compare|history] <url>Capture and track SEO changes over time.
/seo ecommerce <url>E-commerce SEO (product schema, marketplace intelligence).
/seo flow [stage] [url|topic]FLOW framework prompts (find/leverage/optimize/win/local).
/seo dataforseo [command]Live SEO data via DataForSEO (extension).
/seo image-gen [use-case] <description>AI image generation for SEO assets (extension).
/seo firecrawl [command] <url>Full-site crawling and site mapping (extension).

/web-design — design & UI

CommandDescription
/web-design frontend-design <brief or url>Get distinctive visual design direction, typography, and aesthetic guidance.
/web-design landing-page-auditor <url>Audit a page across 48 checks — LLM/AI discoverability, GEO readiness, content clarity, schema, and technical crawlability. Produces a scored HTML report.
/web-design site-architecture <domain or goal>Plan page hierarchy, navigation, URL structure, and internal linking.
/web-design web-design-guidelines <file or pattern>Audit UI code for accessibility, UX, and web design best practices.

/pm — product management

CommandDescription
/pm strategy <product or context>Drive vision, OKR cascades, quarterly planning, roadmaps, and team scaling.
/pm prd <feature or notes>Build a structured, engineering-ready PRD from discovery notes.
/pm prioritize <context>Choose the right prioritization framework (RICE, ICE, value/effort, etc.).
/pm backlog <story or sprint context>Write user stories, define acceptance criteria, plan sprints, and track velocity.
/pm story-map <product or journey>Build a user story map (activities, steps, tasks, release slices).
/pm growth <growth constraint>Diagnose which organic growth path to pursue next.
/pm toolkit <PM task>RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and GTM strategy.
/pm create-skill <idea or content>Design a new PM skill through guided conversation.

/notion — productivity & workflow

CommandDescription
/notion captureTransform a messy brain dump into four structured sections (Projects/Ideas, Tasks, Connections, Next Steps).
/notion inboxRun email triage — first run builds your taxonomy KB, recurring runs classify and draft replies.
/notion reflectPause mid-conversation for a frank 5-dimension reassessment with a concrete continue/pivot/pause recommendation.
/notion workflow <task>Design and generate a multi-agent Claude Code workflow script for any repeatable multi-step task.
/notion content-brief <keyword>Generate a full SEO content brief and optionally push it to Notion.
/notion claude-md-starterScan the current repo and auto-generate a populated CLAUDE.md.
/notion meeting-notesStructure raw meeting notes into action items, decisions, and a summary.

/coding-skills — software engineering

CommandDescription
/coding-skills code-reviewer <repo or file>Analyze PRs for complexity, risk, code smells, and SOLID violations across 13 languages.
/coding-skills pr-review-expert <PR or diff>Expert-level PR review for security issues, correctness, and code quality.
/coding-skills karpathy-guidelinesApply behavioral guidelines to reduce common LLM coding mistakes.
/coding-skills senior-architect <system>Design system architecture, evaluate trade-offs, create diagrams, and write ADRs.
/coding-skills brainstorming <idea or feature>Explore user intent, requirements, and design before any implementation begins.
/coding-skills test-driven-development <feature>Write tests first, watch them fail, then write minimal passing code.
/coding-skills using-superpowersEstablish skill discovery and invocation at the start of a session.

/job-search — job search & career

CommandDescription
/job-search job-search <keyword>Search jobs matching your resume and preferences across job boards.
/job-search apply <job URL>Fill out a Greenhouse, Lever, or Workday application end-to-end.
/job-search application-form-filler <job desc>Fill application form fields from your CV and the job description.
/job-search network-scan <contacts or 'all'>Scan LinkedIn contacts' companies for matching job openings.
/job-search job-description-analyzer <posting>Analyze a job posting, score the match, and identify gaps.
/job-search tailor-resume <job URL>Full resume tailoring workflow — fetches posting, tailors, critiques.
/job-search resume-tailor <job posting>Customize a resume for a specific role.
/job-search resume-ats-optimizer <resume>Optimize for ATS and analyze keyword match.
/job-search resume-bullet-writer <bullets>Transform weak bullets into achievement-focused statements.
/job-search resume-formatter <resume>ATS-friendly formatting and clean scannable layout.
/job-search resume-quantifier <resume>Add metrics and quantified impact to resume bullets.
/job-search resume-section-builder <role>Build targeted sections for different experience levels and roles.
/job-search resume-version-manager <context>Track and manage multiple resume versions.
/job-search tech-resume-optimizer <resume>Optimize for engineering and technical roles.
/job-search academic-cv-builder <CV>Format CVs for academic positions with publications and grants.
/job-search executive-resume-writer <context>C-suite and VP level resume writing.
/job-search creative-portfolio-resume <context>Visual resume balancing design with ATS compatibility.
/job-search cover-letter <job URL>Write a tailored cover letter for a specific job posting.
/job-search cover-letter-generator <resume + JD>Generate a cover letter from resume and job description.
/job-search cold-email-writer <target>Personalized cold outreach emails to hiring managers.
/job-search interview-prep-generator <resume>STAR stories, practice questions, and talking points.
/job-search offer-comparison-analyzer <offers>Compare multiple offers with total compensation analysis.
/job-search salary-negotiation-prep <role>Market rates, negotiation strategy, and counter-offer scripts.
/job-search linkedin-profile-optimizer <profile>Optimize LinkedIn for recruiter searchability and engagement.
/job-search portfolio-case-study-writer <project>Transform resume bullets into portfolio case studies.
/job-search career-changer-translator <industries>Identify transferable skills across industries.
/job-search reference-list-builder <context>Format and prepare professional references.

/product-designers — UX & product design

CommandDescription
/product-designers user-persona <research>Create user personas from research data.
/product-designers empathy-map <user>Build empathy maps (Says / Thinks / Does / Feels).
/product-designers interview-script <topic>Create structured user interview scripts.
/product-designers journey-map <user + product>End-to-end journey maps with stages and pain points.
/product-designers affinity-diagram <data>Organize research into themes and clusters.
/product-designers user-flow-diagram <task>Create flow diagrams with decisions and branches.
/product-designers experience-map <service>Map full ecosystem of touchpoints and channels.
/product-designers diary-study-plan <topic>Design diary studies for longitudinal research.
/product-designers card-sort-analysis <data>Analyze card sorts for IA decisions.
/product-designers survey-design <hypothesis>Design reliable quantitative surveys.
/product-designers summarize-interview <transcript>Summarize interviews into structured insights.
/product-designers research-repository <context>Build a findable, reusable research repository.
/product-designers design-brief <problem>Write a comprehensive design brief.
/product-designers design-principles <product>Define actionable design principles.
/product-designers jobs-to-be-done <product>Map Jobs-to-Be-Done with full functional, emotional, and social dimensions.
/product-designers north-star-vision <product>Articulate a compelling product vision.
/product-designers opportunity-framework <problem>Identify and prioritize design opportunities.
/product-designers business-design <context>Communicate design in the language of business value.
/product-designers competitive-analysis <product>Compare UX patterns across competitors.
/product-designers metrics-definition <feature>Define UX metrics and KPIs.
/product-designers design-impact-reporting <project>Report design's business contribution to stakeholders.
/product-designers content-strategy <product>Define content structure and ownership.
/product-designers stakeholder-alignment <project>Build alignment with RACI and decision frameworks.
/product-designers fitts-law <interface>Size and position targets for fast, accurate interaction.
/product-designers hicks-law <interface>Reduce decision time by limiting simultaneous choices.
/product-designers millers-law <content>Chunk information to fit working memory limits.
/product-designers doherty-threshold <feature>Keep system response times under 400ms.
/product-designers aesthetic-usability <interface>Polished interfaces feel more usable.
/product-designers law-of-proximity <layout>Group elements through spatial relationships.
/product-designers law-of-common-region <layout>Group elements with containers and backgrounds.
/product-designers von-restorff-effect <interface>Make key elements distinctly different from surroundings.
/product-designers color-system <product>Build a color palette with semantic mapping and a11y compliance.
/product-designers typography-scale <product>Create a modular type scale with size, weight, and line-height.
/product-designers spacing-system <product>Build consistent spacing from a base unit.
/product-designers layout-grid <product>Define responsive grids with columns, gutters, and breakpoints.
/product-designers design-token <system>Define and organize design tokens with naming conventions.
/product-designers design-token-audit <codebase>Audit token usage for consistency and coverage.
/product-designers naming-convention <system>Establish naming rules for components and tokens.
/product-designers icon-system <product>Spec icon grid, sizing, naming, and categories.
/product-designers illustration-style <product>Define illustration visual language and application rules.
/product-designers motion-system <product>Define duration tokens, easing vocabulary, and reduced motion.
/product-designers pattern-library <pattern>Structure pattern library entries with context and examples.
/product-designers theming-system <product>Design theming for brand variants and dark mode.
/product-designers dark-mode-design <interface>Adapt color, contrast, and elevation for dark mode.
/product-designers readable-measure <typography>Set optimal line lengths for readability.
/product-designers interface-design <product>Craft-first design for SaaS apps, dashboards, and tools.
/product-designers interfaces-that-feel <interface>Apply emotional resonance to technically correct but flat UIs.
/product-designers information-architecture <product>Design structure, hierarchy, and navigation model.
/product-designers navigation-patterns <product>Select navigation patterns by task and platform.
/product-designers visual-hierarchy <screen>Establish hierarchy through size, weight, and color.
/product-designers responsive-design <product>Adaptive layouts across all screen sizes.
/product-designers form-design <form>Design forms that minimize friction and prevent errors.
/product-designers loading-states <component>Design skeleton and progressive reveal patterns.
/product-designers error-handling-ux <flow>Design error prevention and recovery experiences.
/product-designers onboarding-design <product>First-run experiences that reach value fast.
/product-designers search-ux <product>Design search with findability and failure recovery.
/product-designers feedback-patterns <product>Confirmations, status updates, and notifications.
/product-designers data-visualization <data>Clear, accessible charts and data displays.
/product-designers animation-principles <interface>Apply animation principles to UI motion.
/product-designers gesture-patterns <touch interface>Design gesture interactions for touch and pointer.
/product-designers micro-interaction-spec <action>Specify micro-interactions with trigger, rules, and feedback.
/product-designers state-machine <component>Model UI behavior as finite state machines.
/product-designers localization-design <product>Design for multiple languages and writing directions.
/product-designers critique-affordance <screen>Critique what looks clickable and CTA clarity.
/product-designers critique-brand-consistency <screen>Critique brand against mood and token definitions.
/product-designers critique-color <screen>Critique contrast, palette, and colour accessibility.
/product-designers critique-composition <screen>Critique balance, whitespace, and gestalt.
/product-designers critique-information-density <screen>Critique cognitive load and content prioritisation.
/product-designers critique-typography <screen>Critique scale, readability, and token compliance.
/product-designers critique-visual-hierarchy <screen>Critique entry point, eye flow, and emphasis.
/product-designers accessibility-audit <product>WCAG audit with severity ratings and remediation steps.
/product-designers accessibility-test-plan <feature>Testing plan covering assistive technologies and WCAG.
/product-designers a-b-test-design <hypothesis>Design A/B tests with metrics and sample sizes.
/product-designers heuristic-evaluation <product>Expert evaluation using Nielsen's heuristics.
/product-designers usability-test-plan <feature>Test plan with tasks, metrics, and facilitation guide.
/product-designers click-test-plan <navigation>First-click tests for navigation findability.
/product-designers test-scenario <feature>Structured usability test scenarios ready to run.
/product-designers design-qa-checklist <release>QA checklist for design implementation accuracy.
/product-designers design-debt-audit <product>Identify and prioritize design inconsistencies.
/product-designers prototype-strategy <question>Choose the right fidelity and prototyping method.
/product-designers component-spec <component>Props, states, variants, and accessibility specification.
/product-designers handoff-spec <design>Dev handoff with measurements, behaviors, and edge cases.
/product-designers design-rationale <decision>Rationale connecting decisions to user needs and goals.
/product-designers design-review-process <team>Review gates with criteria and approval workflows.
/product-designers design-critique <design>Facilitate structured critique sessions.
/product-designers documentation-template <pattern>Generate documentation templates for components.
/product-designers wireframe-spec <screen>Wireframe spec with content priority and annotations.
/product-designers anydesign <URL or image>Extract design system from any visual source.
/product-designers case-study <project>Portfolio-ready design case studies.
/product-designers presentation-deck <project>Compelling design presentations for stakeholders.
/product-designers service-blueprint <service>Map frontstage, backstage, and supporting infrastructure.
/product-designers team-workflow <team>Design team rituals, task management, and tooling.
/product-designers version-control-strategy <files>Version control for design files and libraries.
/product-designers design-system-governance <system>Contribution models, versioning, and deprecation.
/product-designers design-system-adoption <system>Drive design system adoption across teams.
/product-designers design-sprint-plan <challenge>Plan design sprints from brief to prototype.
/product-designers design-negotiation <context>Advocate for design with evidence and shared goals.
/product-designers ux-writing <screen>Microcopy, error messages, empty states, and CTAs.
/product-designers ux-researcher-designer <context>Full UX research and design toolkit.

Who it's for

These skills are built for technical teams who care about being discoverable by AI, not just by Google:

  • DevTool & infrastructure startups measuring whether their docs are LLM-citable
  • AI-agent and LLM platforms that need their API/SDK docs parsed correctly by agents
  • Developer marketing & DevRel teams running SEO + GEO audits without a dedicated SEO hire
  • Technical content teams producing briefs and benchmarking content against competitors
  • Founders who want a fast, honest read on their AI visibility before investing in it

Requirements

  • Claude Code, Claude Desktop, or Claude.ai
  • Python 3.10+
  • Node.js with npx (to run the DataForSEO MCP server locally)
  • A DataForSEO API account — only for the live-search skills: growth-report, blog-post-counter, api-docs-quality-report

Sample outputs

Docs AuditorGrowth Report
Docs Auditor running in Claude CodeGrowth Report running in Claude Code

Repository structure

dev-gtm-claude-skills/
├── assets/                          # Logos, images, and GIFs for this README
├── skills/
│   ├── docs-auditor/
│   │   ├── SKILL.md                 # Agent instructions (Claude reads this)
│   │   ├── README.md                # Human-facing usage docs
│   │   └── references/              # Scoring guide, widget template, fetch strategy
│   ├── sdk-docs-auditor/
│   ├── api-docs-quality-report/
│   ├── growth-report/
│   ├── blog-post-counter/
│   ├── brief-outline-generator/
│   ├── llms-txt-checker/
│   ├── orphan-pages-internal-linking-opportunities/
│   ├── no-outlinks-audit/
│   └── dev-marketing-prospector/
├── marketing-skills/                # 28 full-funnel developer-marketing skills
│   ├── seo-audit/
│   ├── content-strategy/
│   ├── cro/
│   ├── emails/
│   └── …                            # ad-creative, ads, pricing, launch, and more
├── notion-skills/                   # 7 personal-productivity and workflow skills (/notion)
│   ├── capture/                     # brain-dump organizer
│   ├── inbox/                       # email triage system
│   ├── reflect/                     # mid-conversation reassessment
│   ├── workflow-builder/            # multi-agent workflow script generator
│   ├── content-brief/               # keyword → SEO brief → Notion
│   ├── claude-md-starter/           # repo scanner + CLAUDE.md generator
│   └── meeting-notes/               # structured meeting summaries
├── writing-skills/                  # 30 blog/content-engine sub-skills (/blog) + 4 standalone
│   ├── blog/                        # orchestrator
│   ├── blog-write/
│   ├── blog-analyze/
│   ├── ogilvy-copywriting/          # standalone: sales-driven copy
│   ├── social-media-posts/          # standalone: per-platform social posts
│   ├── reddit-comments/             # standalone: on-brand Reddit replies
│   ├── stop-slop/                   # standalone: strip AI writing tells
│   └── …                            # rewrite, brief, schema, translate, and more
├── seo-skills/                      # 25 SEO sub-skills (/seo) + geo-seo-claude + 8 extensions
│   ├── seo/                         # orchestrator
│   ├── seo-audit/                   # full-site audit (installs as seo-audit-full)
│   ├── seo-technical/
│   ├── seo-geo/
│   ├── geo-seo-claude/              # standalone SEO/GEO/AEO optimizer (own scripts)
│   ├── extensions/                  # 8 optional MCP extensions (dataforseo, firecrawl, …)
│   └── …                            # schema, local, maps, backlinks, cluster, and more
├── agents/                          # blog + 18 SEO specialist subagents (Task subagents)
├── data/                            # shared data (e.g., google-updates.json)
├── scripts/                         # shared blog + SEO scripts + multi-tool installers
└── README.md

FAQ

Are these Claude skills free? Yes, every skill is free and MIT-licensed. No license fees, no paywalls.

Do I need Claude Code? No. Skills run in Claude Code, Claude Desktop, or Claude.ai. Desktop and web use the ZIP upload method above.

Which skills need API keys? Most need none. Only the live-search skills (growth-report, blog-post-counter, api-docs-quality-report) use DataForSEO, and the internal-linking skills (orphan-pages…, no-outlinks-audit) use Ahrefs.

How is this different from a standard SEO audit tool? Traditional tools optimize for Google crawlers. These skills are built for developer documentation and AI discoverability. They check whether your docs can be parsed, cited, and recommended by LLMs.

How often do new skills ship? Regularly. Star or watch the repo to get notified.


Contributing

To add a skill, create a folder under skills/:

skills/your-skill-name/
├── SKILL.md          # Required: agent instructions
├── README.md         # Required: human-facing docs
├── requirements.txt  # If the skill has Python dependencies
└── references/       # Templates, scoring guides, or other reference files

SKILL.md must include a frontmatter block:

---
name: your-skill-name
description: >
  One paragraph describing exactly when Claude should activate this skill.
  Write it to match the natural language a user would use.
---

The description field is what Claude uses to decide when to activate the skill — be specific about trigger phrases and input formats. Open a PR with your skill folder and a one-line summary.


License

MIT — see LICENSE.

Built by Infrasity

Infrasity is a developer-marketing agency for DevTools, AI-agent platforms, and B2B SaaS. We help technical products get found, parsed, and cited by AI systems.

🌐 infrasity.com · 🔗 LinkedIn · 📸 Instagram

Want a GEO audit of your own docs?infrasity.com/claude-skills

Contributors

divyamprusty

142 commits

Infrasity-Labs

49 commits

Sid-Lais

5 commits

Infrasity-Labs/dev-gtm-claude-skills

Open-source Claude skills for GEO, AI discoverability, and developer GTM workflows. Built for developer-focused companies that want their documentation to be found, parsed, and cited by AI systems.

124

stars

196

commits

Python

primary language

Jun 28, 2026

updated

www.infrasity.com/claude-skills
ai-citation
ai-visibility
claude
claude-skills
dev-gtm
geo
skills

README

Infrasity

Claude Code Skills for SEO, GEO & Developer Marketing

Free, open-source Claude skills that audit your docs, score your AI discoverability, and run developer-marketing workflows — so your product gets found, parsed, and cited by AI systems.

Claude Compatible GEO Optimized License: MIT GitHub stars Python 3.10+ skills.sh

Skills · Install · Commands · Who it's for · FAQ · Website

Works with: Claude Code · OpenAI Codex · OpenClaw · Hermes Agent[^hermes] · Mistral Vibe[^vibe] · Cursor · Aider · Windsurf · Kilo Code · OpenCode · Augment · Antigravity

dev-gtm-claude-skills


dev-gtm-claude-skills is a collection of open-source Claude Code skills for SEO, GEO (Generative Engine Optimization), AI discoverability, and developer marketing. Each skill is a self-contained package — a SKILL.md that tells Claude when and how to use it, optional Python tooling, and a README with full usage docs. Install once, then run from Claude Code, Claude Desktop, or Claude.ai with a plain-language prompt.

These skills are built for developer-focused companies — DevTools, AI-agent platforms, observability, and B2B SaaS — that need their documentation and content to be cited by AI systems like ChatGPT, Claude, Perplexity, and Gemini, not just indexed by Google.

What is GEO? Generative Engine Optimization is the practice of optimizing content so it gets surfaced and cited by AI answer engines. Traditional SEO tools optimize for search crawlers; these skills audit the signals — structured content, llms.txt, internal linking, and documentation completeness — that LLMs use when deciding what to recommend.

What you can do in one prompt

  • Audit developer docs for SEO and AI discoverability — 33 checks, scored 0–100
  • Score API & SDK documentation quality, endpoint by endpoint
  • Check AI-readinessrobots.txt, llms.txt, and llms-full.txt in one pass
  • Generate 3-month SEO performance reports vs competitors
  • Fix internal linking — find orphan pages and dead-ends, get paste-ready suggestions
  • Produce SEO content briefs as formatted .docx outlines

What Are Claude Code Skills & Agent Plugins?

Claude Code skills (also called agent skills or coding-agent plugins) are modular instruction packages that give AI coding agents domain expertise they don't have out of the box. Each skill in this repo includes:

  • SKILL.md — structured instructions, workflows, and decision frameworks that tell the agent when and how to act
  • Python tools — optional stdlib-only CLI scripts for the skills that crawl, score, or render reports
  • Reference docs — templates, scoring guides, and checklists the skill loads on demand

Because every skill follows the open SKILL.md standard, it isn't locked to a single product. The same package runs in Claude Code, Claude Desktop, Claude.ai, and any other agent that reads the standard (see Multi-Tool Support).

Skills vs Agents

SkillsAgents
PurposeHow to execute a taskWhat task to do
ScopeA single, well-defined workflowAn end-to-end job, often composing skills
Example"Follow these 33 checks to audit docs""Research, write, and review this blog post"

This repo ships several bundles: the SEO/GEO/docs skills under skills/, the full-funnel marketing skills under marketing-skills/, the blog content engine under writing-skills/, a comprehensive SEO suite under seo-skills/, and blog-production agents under agents/.


Table of contents


Multi-Tool Support

Every skill here is written to the open SKILL.md standard, so it isn't tied to a single agent. Claude Code, Claude Desktop, and Claude.ai read the skills natively (see Installation). For every other tool, the repo ships converter and installer scripts under scripts/ — clone the repo, then run the one-liner for your tool.

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills

Each script discovers all skills under skills/, marketing-skills/, writing-skills/, notion-skills/, and seo-skills/ and installs them in the format that tool expects.

ToolTestedSkills land in
Claude Code~/.claude/skills/
Claude Desktop / Claude.aiZIP upload
Hermes Agent~/.hermes/skills/
Kilo Code~/.claude/skills/ (via claudeCodeCompat)
Mistral Vibe~/.vibe/skills/
OpenAI Codex~/.codex/skills/
OpenClaw~/.openclaw/skills/
Augment.augment/skills/ (project-local)
Antigravity~/.gemini/antigravity/skills/
Cursor🔜.cursor/rules/ (project-local)
Aider🔜CONVENTIONS.md (project-local)
Windsurf🔜.windsurf/skills/ (project-local)
OpenCode🔜.opencode/skills/ (project-local)

See full install steps per tool below.


Installation

Most skills need no API keys; the SEO skills that pull live search data use a DataForSEO MCP server (setup below).

Install every skill in this repo with one command — no cloning, no copying:

npx skills add Infrasity-Labs/dev-gtm-claude-skills

This pulls the latest skills straight into your Claude Code skills directory. Re-run it any time to update. Prefer to install manually or use Claude Desktop / Claude.ai? Use one of the methods below.

Blog skills runtime (agents + scripts)

The writing skills add a /blog content engine built from 30 sub-skills, 5 subagents, and shared Python scripts. npx skills add installs the skill instructions, but the subagents and shared scripts need one extra step so the /blog write pipeline (research → write → SEO → review) runs end-to-end:

# Clone the repository to access the installer
git clone https://github.com/Infrasity-Labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills
./scripts/claude-blog-install.sh                  # agents → ~/.claude/agents, scripts → ~/.claude/scripts
pip install -r writing-skills/requirements.txt    # textstat + beautifulsoup4

Use --project to install into the current project's ./.claude/ instead of ~/.claude/ (make sure to run the script from your project's root directory, e.g., path/to/cloned-repo/scripts/claude-blog-install.sh --project), and --dry-run to preview. A few sub-skills need their own credentials — blog-google (Google API OAuth), blog-audio / blog-image (GOOGLE_AI_API_KEY + nanobanana MCP), blog-notebooklm (browser login) — and all degrade gracefully when unconfigured.

Claude Code (manual)

Clone the repo and copy the skill into your Claude Code skills directory.

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git

Project-level (available only in the current project):

mkdir -p .claude/skills
cp -r dev-gtm-claude-skills/skills/<skill-name> .claude/skills/

User-level (available across all projects):

mkdir -p ~/.claude/skills
cp -r dev-gtm-claude-skills/skills/<skill-name> ~/.claude/skills/

Skills activate automatically — Claude reads every SKILL.md in .claude/skills/ at the start of each session. Trigger them by describing the task in plain language, or type /<skill-name> directly.

clone repo

Activate skills GIF

Claude Desktop / Claude.ai

Skills upload as ZIP files via Settings → Customize → Skills → Create skill → Upload a skill.

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills/skills

# Zip the skill you want to install
zip -r docs-auditor.zip docs-auditor/

Upload the .zip, toggle the skill on, and it's active across all your chats. Uploaded skills stay private to your account; Claude installs any required packages the first time it runs them.

Converting to zip GIF

Add to Claude GIF

DataForSEO MCP (for the live-search skills)

growth-report, blog-post-counter, and api-docs-quality-report pull live search data via a DataForSEO MCP server.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "dataforseo": {
      "command": "npx",
      "args": ["-y", "@dataforseo/mcp-server"],
      "env": {
        "DATAFORSEO_USERNAME": "your@email.com",
        "DATAFORSEO_PASSWORD": "your_api_password"
      }
    }
  }
}

Claude Desktop — Customize → Connectors → Add Custom Connector:

https://your_email:your_api_password@mcp.dataforseo.com/http

Get credentials at dataforseo.com.

Clay connector (for prospect enrichment and cold-email)

dev-marketing-prospector and cold-email use Clay's data enrichment tools to look up company funding, headcount, tech stack, and verified contact information — replacing manual research across Crunchbase, LinkedIn, and Apollo.

Claude.ai / Claude Desktop — Settings → Customize → Connectors → Connect Clay. Sign in with your Clay account. Once connected, the find-and-enrich-company, ask-question-about-accounts, and find-and-enrich-contacts-at-company tools become available automatically.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "clay": {
      "command": "npx",
      "args": ["-y", "@clay-hq/mcp-server"],
      "env": {
        "CLAY_API_KEY": "your_clay_api_key"
      }
    }
  }
}

Get your API key at clay.com. Both skills degrade gracefully when Clay is not connected — dev-marketing-prospector falls back to manual web search across all source categories, and cold-email prompts the user for research signals instead.

Notion connector (for saving outputs to your workspace)

competitor-profiling, customer-research, and content-brief save their outputs to Notion as structured databases — competitor profiles become queryable competitive intelligence records, VOC research becomes a searchable quote bank, and content briefs sync to a living Notion database your whole team can filter and reference.

Claude.ai / Claude Desktop — Settings → Customize → Connectors → Connect Notion. Sign in with your Notion account and grant access to the workspaces you want skills to write to. Once connected, the notion-search, notion-create-database, notion-create-pages, and notion-update-page tools become available automatically.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": ["-y", "@notionhq/notion-mcp-server"],
      "env": {
        "NOTION_API_KEY": "your_notion_integration_secret"
      }
    }
  }
}

Get your integration secret at notion.so/my-integrations. All skills degrade gracefully when Notion is not connected — outputs are returned in chat or saved locally, and each skill appends a 💡 note with setup instructions.

Apify connector (for web scraping — reviews, Reddit, Google Maps)

reddit-comments, competitor-profiling, customer-research, seo-maps, and programmatic-seo use Apify actors to scrape data that WebFetch and Firecrawl can't reliably reach — Reddit threads blocked by rate limits, G2/Capterra/Trustpilot review pages with anti-bot protection, and live Google Maps business listings.

Note: Apify is an official Anthropic connector and is available on Claude Desktop only. It cannot be configured as a Claude Code MCP server.

Claude Desktop — Settings → Customize → Connectors → Connect Apify. Sign in with your Apify account. Once connected, the following actors are available across skills:

ActorUsed by
apify/reddit-scraperreddit-comments, customer-research
apify/g2-scraper, apify/capterra-scraper, apify/trustpilot-scrapercompetitor-profiling, customer-research
apify/google-maps-scraper, apify/google-maps-reviews-scraper, apify/yelp-scraperseo-maps
apify/youtube-scraper, apify/amazon-reviews-scrapercustomer-research
apify/google-maps-scraper, apify/g2-scraper, apify/capterra-scraperprogrammatic-seo

All skills degrade gracefully when Apify is not connected — each falls back to WebFetch or Firecrawl and appends a 💡 note explaining what Apify would unlock.

Klaviyo connector (for email template and campaign sync)

emails, churn-prevention, lead-magnets, and onboarding use Klaviyo's MCP tools to read your existing email setup and push new templates directly into your account — auditing existing flows, creating HTML and drag-and-drop templates, building campaigns, and pulling open/click/revenue metrics per flow step.

Note: The Klaviyo MCP can create templates and campaigns but cannot create automated flows. After the skill builds your templates, configure trigger conditions, delays, and branching logic in the Klaviyo UI.

Claude.ai / Claude Desktop — Settings → Customize → Connectors → Connect Klaviyo. Sign in with your Klaviyo account. Once connected, tools like list_email_templates, create_email_template, get_flows, create_campaign, and query_metric_aggregates become available automatically.

Claude Code — add to .claude/settings.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "klaviyo": {
      "command": "npx",
      "args": ["-y", "@klaviyo/mcp-server"],
      "env": {
        "KLAVIYO_API_KEY": "your_klaviyo_private_api_key"
      }
    }
  }
}

Get your private API key at klaviyo.com/account#api-keys-tab. All skills degrade gracefully when Klaviyo is not connected — they output email copy and sequence structure in chat, which you can manually import into any ESP.


Install Steps for Every Tool

All CLI installs start with cloning the repo:

git clone https://github.com/infrasity-labs/dev-gtm-claude-skills.git
cd dev-gtm-claude-skills

Hermes Agent ✅

  1. Run the sync script:
    python3 scripts/sync-hermes-skills.py
    
  2. Skills are symlinked into ~/.hermes/skills/. Add --copy if you want to delete the repo clone after install.
  3. Open Hermes and describe your task — the agent auto-loads the matching skill. You can also invoke by name: /docs-auditor.

Pass --verbose to see each skill as it syncs, --dry-run to preview without installing.


Kilo Code ✅

  1. In VS Code settings, enable the compatibility flag:
    kilo-code.new.claudeCodeCompat: true
    
    (Search "kilo-code claudeCodeCompat" in the VS Code settings UI.)
  2. Install skills using the standard Claude Code method — either the quick install:
    npx skills add Infrasity-Labs/dev-gtm-claude-skills
    
    or manual copy to ~/.claude/skills/:
    mkdir -p ~/.claude/skills
    cp -r skills/<skill-name> ~/.claude/skills/
    
  3. Open a Kilo Code chat and describe your task. Kilo Code reads from ~/.claude/skills/ when claudeCodeCompat is on.

Note: Placing .md files in .kilocode/rules/ only injects passive context — it does not enable skill invocation. The claudeCodeCompat path is the correct approach.


Mistral Vibe ✅

  1. Run the install script:
    ./scripts/vibe-install.sh
    
  2. Skills are symlinked flat into ~/.vibe/skills/<skill-name>/. Add --copy to copy instead of symlink.
  3. Open Vibe and describe your task, or invoke directly: /docs-auditor. Vibe auto-discovers skills from ~/.vibe/skills/.

Pass --dry-run to preview without installing, --verbose to list each skill.


OpenAI Codex ✅

  1. Generate local symlinks:
    python3 scripts/sync-codex-skills.py
    
  2. Copy skills to the Codex global directory:
    ./scripts/codex-install.sh
    
  3. Skills land in ~/.codex/skills/<skill-name>/. Open Codex and describe your task — the model reads the skill automatically.

Use ./scripts/codex-install.sh --dry-run to preview, --list to see all available skills.


OpenClaw ✅

  1. Run the install script:
    ./scripts/openclaw-install.sh
    
  2. Restart the OpenClaw gateway to pick up the new skills:
    openclaw gateway restart
    
  3. Verify the skills are visible:
    openclaw skills list
    
  4. Open an OpenClaw chat and describe your task. The agent auto-loads the matching skill. You can also invoke explicitly: /docs-auditor.

Use --dry-run to preview without installing, --force to overwrite existing skills.


Augment ✅

Augment reads skills from the .augment/skills/ directory inside your project — run these commands from your project root, not from the cloned repo.

  1. Convert skills to Augment format:
    cd /path/to/dev-gtm-claude-skills
    ./scripts/convert.sh --tool augment
    
  2. Install into your project:
    ./scripts/install.sh --tool augment --target /path/to/your/project
    
    Skills land in /path/to/your/project/.augment/skills/<skill-name>/SKILL.md.
  3. Open Augment in that project and describe your task — Augment detects the matching skill from .augment/skills/ automatically.

Re-run both commands whenever you want to update to the latest skills. Use --force on install.sh to overwrite.


Antigravity ✅

  1. Convert skills to Antigravity format:
    ./scripts/convert.sh --tool antigravity
    
  2. Install globally:
    ./scripts/install.sh --tool antigravity
    
  3. Skills land in ~/.gemini/antigravity/skills/<skill-name>/SKILL.md. Open Antigravity and describe your task — the agent auto-loads the matching skill.

Re-run both commands to update. Use --force on install.sh to overwrite existing skills.


Cursor 🔜 (steps ready, not yet tested)

  1. Convert skills to Cursor .mdc rule format:
    ./scripts/convert.sh --tool cursor
    
  2. Install into your project:
    ./scripts/install.sh --tool cursor --target /path/to/your/project
    
    Skills land in /path/to/your/project/.cursor/rules/<skill-name>.mdc.
  3. Open Cursor in that project — rules are applied automatically per the globs and alwaysApply settings in each .mdc file.

Aider 🔜 (steps ready, not yet tested)

  1. Convert all skills into a single CONVENTIONS.md:
    ./scripts/convert.sh --tool aider
    
  2. Install into your project:
    ./scripts/install.sh --tool aider --target /path/to/your/project
    
  3. Run Aider with the conventions file:
    aider --read CONVENTIONS.md
    

Windsurf 🔜 (steps ready, not yet tested)

  1. Convert skills to Windsurf skill bundle format:
    ./scripts/convert.sh --tool windsurf
    
  2. Install into your project:
    ./scripts/install.sh --tool windsurf --target /path/to/your/project
    
    Skills land in /path/to/your/project/.windsurf/skills/<skill-name>/SKILL.md.
  3. Open Windsurf in that project and describe your task.

Skills

Ten production-grade skills for SEO, GEO, documentation, and developer-marketing workflows.

SkillClaude skill for…What it doesExample trigger
docs-auditordocumentation SEO & AI discoverabilityAudits a developer docs site across 33 checks in 7 categories — AI discoverability, structure, content quality, SEO, internal linking, versioning — and returns a scored 0–100 report with pass/warn/fail per check.Audit the docs at docs.stripe.com
sdk-docs-auditorSDK documentationAudits SDK docs across 6 sections (Installation, Quick Start, Error Handling, Troubleshooting, Examples, Best Practices), scores each 0–100, cross-references gaps, and ships a downloadable HTML report.Audit the SDK docs at docs.example.com
api-docs-quality-reportAPI documentation qualityCrawls every endpoint page and scores each across 5 checks. Outputs an interactive HTML report with a scorecard, pattern analysis, top issues, and per-endpoint fix guidance.Run an API docs audit on docs.company.com
growth-reportSEO performance reportsGenerates a 3-month SEO performance report for any domain vs competitors using live DataForSEO data: traffic trends, keyword rankings, top content clusters, and competitive positioning.Generate SEO report for firefly.ai vs spacelift.io
blog-post-countercontent research & competitive intelCounts unique blog posts for any company from its sitemap or listing page, with a competitor-comparison mode to benchmark content volume across domains.How many blogs does hackmamba.io have vs infrasity.com
brief-outline-generatorSEO content briefsGenerates a fully structured SEO content outline and exports it as a formatted .docx with section headings, topic prompts, and angles for a writer to fill in.Generate a content brief for "developer marketing strategy"
llms-txt-checkerGEO & AI readinessAudits a domain's AI-readiness by probing robots.txt, llms.txt, and llms-full.txt, scoring each against a structured checklist with a pass/warn/fail report and prioritized fixes. No API keys.Check if stripe.com has llms.txt
orphan-pages-internal-linking-opportunitiesinternal linkingFinds all orphan pages (zero incoming internal links) using Ahrefs, clusters them by topic, and generates 3 linking suggestions per orphan with anchor text and placement. Styled HTML report.Run an orphan page audit on example.com/blog/
no-outlinks-auditinternal linkingFinds dead-end pages (zero outgoing internal links) and generates 3 outgoing link suggestions per page — anchor text, placement, ready-to-paste copy. Styled HTML report.Find pages with no outgoing links on example.com
dev-marketing-prospectorprospecting & lead listsBuilds an exact-fit prospect list for any developer-focused vertical (AI agents, IaC, DevTools, observability, FinOps…), mapping a real outreach signal and email pain point per company, each sourced with a URL.Prospect AI agent companies, Series A, 50–200 headcount

Marketing skills

A full-funnel pack of 28 developer-marketing skills under marketing-skills/ — covering demand gen, content, lifecycle, conversion, and retention. Install the whole set with the quick install command above.

SkillClaude skill for…
ab-testingDesigning A/B tests and building an experimentation program
ad-creativeGenerating and iterating ad copy at scale for any platform
adsPaid campaign strategy, targeting, and bidding (Google, Meta, LinkedIn)
ai-seoOptimizing content to be cited by ChatGPT, Perplexity, Claude & AI Overviews
analyticsSetting up tracking, GA4, events, UTMs, and conversion measurement
churn-preventionCancel flows, save offers, dunning, and retention strategy
cold-emailB2B cold outreach and multi-touch follow-up sequences
community-marketingBuilding and growing Discord/Slack communities and advocates
competitor-profilingResearching and profiling competitors from their URLs
competitorsBuilding comparison, alternative, and "vs" pages
content-strategyPlanning topics, clusters, pillars, and editorial calendars
copywritingWriting and improving landing, pricing, and product page copy
croConversion rate optimization for pages and forms
customer-researchVOC, personas, JTBD, review mining, and transcript analysis
emailsLifecycle, drip, onboarding, and re-engagement email flows
free-toolsEngineering-as-marketing — calculators, graders, and lead-gen tools
launchProduct launches, Product Hunt, and go-to-market planning
lead-magnetsGated content, templates, checklists, and opt-in offers
marketing-ideasBrainstorming growth tactics and channels when you're stuck
onboardingActivation, first-run experience, and time-to-value
pricingPricing, packaging, freemium, and monetization strategy
programmatic-seoBuilding templated SEO pages at scale from data
referralsReferral, affiliate, and word-of-mouth program design
revopsLead scoring, routing, and marketing-to-sales handoff
sales-enablementPitch decks, one-pagers, objection handling, and demo scripts
schemaStructured data and JSON-LD for rich results
seo-auditTechnical and on-page SEO audits and diagnostics
socialSocial content, repurposing, and short-form video scripts

Writing skills

A full blog content engine under writing-skills/30 sub-skills routed by a blog orchestrator, plus 5 production subagents (agents/) and shared Python tooling (scripts/). Dual-optimized for Google rankings (E-E-A-T, Dec 2025 Core Update) and AI citations (GEO/AEO). Invoke everything through /blog <subcommand> — see the /blog command table. The same folder also ships 4 standalone writing skills for copy, social, and prose quality.

These need one extra setup step beyond npx skills add — see Blog skills runtime.

SkillClaude skill for…
blogOrchestrator — routes /blog <subcommand> to the right sub-skill
blog-writeWriting new articles from scratch (research → write → SEO → review pipeline)
blog-rewriteOptimizing/refreshing existing posts with anti-AI-detection patterns
blog-analyze5-category 100-point quality audit with AI-content detection
blog-briefContent briefs with template recommendation and distribution plan
blog-outlineSERP-informed outlines with competitive gap analysis
blog-strategyPositioning, topic clusters, and AI-citation surface strategy
blog-calendarEditorial calendars with decay detection and 60/30/10 content mix
blog-clusterSemantic topic-cluster planning + execution (hub-and-spoke)
blog-seo-checkPost-writing SEO validation (title, meta, headings, links, OG)
blog-schemaJSON-LD schema (BlogPosting, Person, FAQ, Breadcrumb)
blog-geoAI-citation readiness audit with a 0–100 GEO score
blog-auditFull-site blog health assessment across all posts
blog-factcheckVerifying statistics against their cited sources
blog-cannibalizationKeyword-overlap / cannibalization detection across posts
blog-repurposeCross-platform repurposing (social, email, YouTube, Reddit)
blog-personaWriting-voice and persona management (NNGroup framework)
blog-brandGenerating BRAND.md + VOICE.md context auto-loaded by all sub-skills
blog-discourseLast-30-days discourse research (API-free via WebSearch)
blog-taxonomyTag/category management across CMS platforms
blog-chartInline SVG data-viz charts (internal-only, called by write/rewrite)
blog-imageAI image generation/editing via Gemini (nanobanana MCP)
blog-audioAudio narration via Gemini TTS (summary/full/dialogue)
blog-notebooklmSource-grounded research from your NotebookLM documents
blog-googleGoogle API data: PSI, CrUX, GSC, GA4, NLP, YouTube, Keywords
blog-flowFLOW framework prompts (evidence-led, find/optimize/win)
blog-multilingualOne-command international publishing (write + translate + localize + hreflang)
blog-translateSEO-optimized translation with format preservation
blog-localizeCultural deep-adaptation per locale (DACH, FR, ES, JA, custom)
blog-locale-auditMultilingual content QA (completeness, hreflang, parity, freshness)

Standalone writing skills

Beyond the /blog engine, writing-skills/ ships 4 standalone craft skills for copy, social, and prose quality — usable on their own, no runtime setup required.

SkillClaude skill for…
ogilvy-copywritingSales-driven copy, headlines, and landing pages using David Ogilvy's advertising principles
social-media-postsPlatform-specific posts for LinkedIn, Facebook, Instagram & Reddit (limits, hooks, hashtags)
reddit-commentsDrafting on-brand Reddit comments from a domain + thread, with voice derived from the site
stop-slopStripping predictable AI writing tells from prose for more human-like output

SEO skills

A comprehensive SEO suite under seo-skills/25 sub-skills routed by a seo orchestrator, plus 18 specialist subagents (agents/), shared Python tooling (scripts/), and 8 optional MCP extensions (seo-skills/extensions/). Dual-optimized for Google rankings (technical SEO, E-E-A-T, Core Web Vitals with INP) and AI visibility (GEO for AI Overviews/ChatGPT/Perplexity). Detects business type (SaaS, e-commerce, local, publisher, agency) and delegates to the right specialists. Invoke everything through /seo <subcommand> — see the /seo command table.

SkillClaude skill for…
seoOrchestrator — routes /seo <subcommand> and runs full-audit delegation
seo-audit-fullFull-site audit with parallel subagent delegation (up to 500 pages)
seo-pageDeep single-page SEO analysis
seo-technicalTechnical SEO audit across 9 categories (crawl, index, CWV, JS rendering)
seo-contentE-E-A-T and content-quality analysis with AI-citation readiness
seo-content-briefCompetitive SEO content briefs with per-section word counts
seo-schemaSchema.org detection, validation, and JSON-LD generation
seo-sitemapXML sitemap analysis and generation
seo-imagesImage SEO, image SERP, and file optimization (WebP/AVIF, IPTC)
seo-geoGEO for AI Overviews, ChatGPT, and Perplexity
seo-planStrategic SEO planning with industry templates
seo-programmaticProgrammatic SEO at scale with thin-content safeguards
seo-competitor-pagesComparison, "vs", and alternatives page generation
seo-localLocal SEO — GBP, NAP, citations, reviews, map pack
seo-mapsMaps intelligence — geo-grid rank tracking, GBP audit
seo-hreflangHreflang and international SEO audit/generation
seo-googleGoogle APIs — GSC, PageSpeed, CrUX, Indexing, GA4
seo-backlinksBacklink profile analysis (free: Moz/Bing/Common Crawl)
seo-clusterSERP-based semantic topic clustering (hub-and-spoke)
seo-sxoSearch Experience Optimization — page-type mismatch detection
seo-driftSEO drift monitoring — baseline, compare, history
seo-ecommerceE-commerce SEO — product schema, marketplace intelligence
seo-dataforseoLive SEO data via DataForSEO (extension)
seo-image-genAI image generation for SEO assets via Gemini (extension)
seo-flowFLOW framework prompts (evidence-led: find/leverage/optimize/win)

Standalone SEO skill

Alongside the suite, seo-skills/ ships geo-seo-claude — a self-contained SEO/GEO/AEO optimizer (audit, schema generation, metadata validation, keyword/entity extraction, IndexNow) with its own bundled scripts and reference library.

SEO extensions

8 optional MCP extensions under seo-skills/extensions/ add live data and AI-visibility coverage — each installed on demand via its own install.sh:

Extension skillAdds
seo-dataforseoLive SERP, keyword, backlink, and AI-visibility data (DataForSEO MCP)
seo-image-genAI image generation via Gemini/nanobanana MCP
seo-firecrawlFull-site crawling and site mapping (Firecrawl MCP)
seo-ahrefsReferring domains, backlinks, and organic keywords (Ahrefs MCP)
seo-bingBing Webmaster Tools + IndexNow submission
seo-serankingAI Share-of-Voice across ChatGPT, Gemini, Perplexity, AI Overviews, AI Mode
seo-profoundTime-series LLM citation tracking
seo-unlighthouseMulti-page Lighthouse audits via the Unlighthouse CLI

Web design skills

Four skills for visual design, UI auditing, and site planning. Install via the standard Claude Code or CLI method — they live in web-design/.

SkillWhat it doesExample prompt
frontend-designDistinctive visual design direction, typography, palette, and aesthetic choices for new UI or redesigns. Rejects templated defaults.Give me frontend design direction for a devtools dashboard
landing-page-auditorAudits any landing or service page across 48 checks in 10 categories — LLM/AI discoverability, GEO readiness, content clarity, schema, internal linking, freshness, and technical hygiene.Audit the landing page at stripe.com/payments
site-architecturePlans page hierarchy, navigation, URL structure, and internal linking for a website or product. Use when figuring out what pages a site needs and how they connect.Plan the site architecture for a B2B SaaS docs portal
web-design-guidelinesReviews UI code against accessibility, UX, and web design best practices.Review my UI component for accessibility and UX issues

Product management skills

Eight skills for PM workflows — strategy, PRDs, prioritization, backlog, and growth. Install via the standard Claude Code or CLI method — they live in product-management-skills/.

SkillWhat it doesExample prompt
product-strategistStrategic product leadership toolkit: OKR cascades, quarterly planning, competitive analysis, product vision documents, and team scaling proposals.Build a quarterly OKR cascade for our AI platform
prd-developmentBuilds a structured, engineering-ready PRD from discovery notes — problem, users, solution, and success criteria.Write a PRD for our new API key management feature
prioritization-advisorChooses the right prioritization framework (RICE, ICE, value/effort, etc.) based on product stage, team context, and decision type.Help me pick a prioritization framework for our early-stage product
agile-product-ownerAgile backlog management: user stories, acceptance criteria, sprint planning, velocity tracking, and epic breakdown.Write user stories for our onboarding flow
user-story-mappingCreates a user story map — activities, steps, tasks, and release slices organized around the user journey.Map the user story for our checkout flow
organic-growth-advisorDiagnoses which organic growth path fits the current constraint: new segments, geographies, channels, or products. Uses a 2×2 framework.We've plateaued in our core market — what's the next growth move?
product-manager-toolkitComprehensive PM toolkit: RICE scoring, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategy.Help me run a RICE prioritization session
pm-skill-creatorDesigns a new PM skill through guided conversation — from raw idea to a structured, repo-compliant SKILL.md draft.Help me create a skill for competitive positioning

Notion skills

Seven personal-productivity and workflow skills under notion-skills/ — brain dumps, email triage, meeting notes, SEO content briefs, CLAUDE.md generation, mid-conversation reassessment, and multi-agent workflow scripting. Install via the standard Claude Code or CLI method.

SkillWhat it doesExample prompt
captureTransforms any chaotic brain dump into a clean four-section actionable system (Projects/Ideas, Tasks, Connections, Next Steps). Zero information loss, no upfront intake.brain dump: we need to redesign onboarding, fix the pricing page, interview 5 customers this week…
inboxFull email triage system — builds a personalized taxonomy KB on first run, then classifies, researches senders, and drafts replies (never sends).triage my inbox
reflectPauses execution mid-conversation and reassesses direction, assumptions, and bias across 5 dimensions. Ends with a concrete continue/pivot/pause recommendation.step back — are we overthinking this?
workflow-builderDesigns and writes deterministic multi-agent workflow scripts (.js) for Claude Code's Workflow tool — fan-out, pipeline, loop, and judge-panel topologies.Build a workflow that researches 10 companies and writes a cold email for each
content-briefGenerates a fully structured SEO content brief for a target keyword and optionally pushes it to a Notion database.Create a content brief for "developer onboarding best practices"
claude-md-starterScans the repo, infers tech stack and conventions, asks at most 3 questions, and writes a populated CLAUDE.md from scratch.Generate a CLAUDE.md for this repo
meeting-notesStructured meeting summaries with action items, decisions, and key discussion points.Summarize these meeting notes: [paste]

Coding skills

Seven skills for software engineering workflows — code review, architecture, TDD, and LLM coding best practices. Install via the standard Claude Code method — they live in coding-skills/.

SkillWhat it does
code-reviewerAutomated code review for 13 languages — analyzes PRs for complexity and risk, detects code smells and SOLID violations, generates structured review reports.
pr-review-expertExpert-level pull request review focused on security, correctness, and code quality across any diff or branch.
karpathy-guidelinesBehavioral guidelines derived from Andrej Karpathy's observations on LLM coding pitfalls — reduces overcomplication, surfaces assumptions, and enforces verifiable success criteria.
senior-architectArchitecture design and analysis toolkit — system design, microservices vs monolith evaluation, dependency analysis, ADRs, and Mermaid/PlantUML/ASCII diagrams.
brainstormingCollaborative dialogue skill for exploring user intent, requirements, and design before any implementation work begins. Use before creating features or building components.
test-driven-developmentTDD workflow — write the test first, watch it fail, write minimal code to pass. Applies to any feature or bugfix.
using-superpowersSession-start skill that establishes how to find and invoke available skills before responding to any task.

Job search skills

Twenty-seven skills covering the full job search lifecycle — from finding roles and tailoring resumes to writing cover letters, prepping for interviews, and negotiating offers. Install via the standard Claude Code method — they live in job-search/.

Search & Applications

SkillWhat it does
job-searchAutomated job search using browser automation — finds roles matching your resume and preferences across job boards.
applyFills out job applications on Greenhouse, Lever, and Workday end-to-end using browser automation.
application-form-fillerFills individual application form fields with context-aware, tailored answers drawn from your CV and the job description.
network-scanScans your LinkedIn contacts' companies for matching job openings — parallelized with caching for fast weekly reruns.
job-description-analyzerAnalyzes job postings, calculates a match score, identifies skill gaps, and builds an application strategy.

Resume Building

SkillWhat it does
tailor-resumeFull resume tailoring workflow with a profile interview step — fetches the job posting, tailors every section, critiques for AI writing patterns.
resume-tailorCustomize a resume for a specific role while maintaining truthfulness — reorders, reframes, and adds keywords from the job description.
resume-ats-optimizerOptimizes resumes for Applicant Tracking Systems and analyzes keyword match against a job posting.
resume-bullet-writerTransforms weak resume bullets into achievement-focused statements with metrics and measurable impact.
resume-formatterEnsures ATS-friendly formatting and produces a clean, scannable resume layout.
resume-quantifierFinds opportunities to add metrics and estimates reasonable numbers when exact data is unavailable.
resume-section-builderCreates targeted resume sections optimized for different experience levels, roles, and industries.
resume-version-managerTracks multiple tailored resume versions against a master resume and logs which version went where.
tech-resume-optimizerOptimizes resumes specifically for software engineering, product management, and other technical roles.
academic-cv-builderFormats CVs for academic positions — publications, grants, teaching experience, and conference sections.
executive-resume-writerCreates C-suite and VP-level resumes emphasizing strategic leadership, P&L ownership, and board interaction.
creative-portfolio-resumeBalances visual design with ATS compatibility for creative, design, and marketing roles.

Cover Letters & Outreach

SkillWhat it does
cover-letterFull cover letter workflow — fetches the job posting, writes a tailored 250–350 word letter grounded in your resume.
cover-letter-generatorGenerates a personalized, compelling cover letter directly from a pasted resume and job description.
cold-email-writerWrites personalized cold outreach emails to hiring managers and founders — specific, human, and not a pitch deck.

Research & Prep

SkillWhat it does
interview-prep-generatorGenerates STAR stories, role-specific practice questions, and talking points from your resume.
offer-comparison-analyzerCompares multiple job offers side-by-side with total compensation analysis (base, equity, bonus, benefits).
salary-negotiation-prepResearches market rates, builds a negotiation strategy, and writes counter-offer scripts.

Profile & Portfolio

SkillWhat it does
linkedin-profile-optimizerOptimizes your LinkedIn profile for recruiter searchability, keyword density, and engagement signals.
portfolio-case-study-writerTransforms resume bullets into detailed, narrative portfolio case studies.
career-changer-translatorTranslates skills and experience from one industry to another, surfacing transferable skills and reframing language.
reference-list-builderFormats professional references correctly and prepares reference sheets and briefing materials.

Product designer skills

Ninety-nine skills covering the full product design and UX practice — from early research and strategy through design systems, interface craft, critiques, accessibility, and handoff. Install via the standard Claude Code method — they live in product-designers/.

Research & Discovery

SkillWhat it does
user-personaCreates refined user personas from research data with demographics, goals, frustrations, and behavioral patterns.
empathy-mapBuilds a 4-quadrant empathy map (Says, Thinks, Does, Feels) to synthesize user research into actionable insights.
interview-scriptCreates structured user interview scripts with warm-up, core exploration, and wrap-up sections.
journey-mapCreates end-to-end user journey maps with stages, touchpoints, emotions, pain points, and opportunity areas.
affinity-diagramOrganizes qualitative research data into themes, clusters, and insight statements.
user-flow-diagramCreates user flow diagrams showing paths, decisions, and branch logic.
experience-mapMaps the full ecosystem of user touchpoints, channels, and relationships across a service.
diary-study-planDesigns diary studies with prompts, duration, participant criteria, and an analysis framework.
card-sort-analysisAnalyzes card sorting results to inform information architecture and navigation structure.
survey-designDesigns surveys that collect reliable, unbiased quantitative data to validate hypotheses.
summarize-interviewSummarizes a user interview transcript into structured insights with key themes, quotes, and action items.
research-repositoryBuilds and maintains a research repository that makes findings findable and reusable across teams.

Strategy & Planning

SkillWhat it does
design-briefWrites a comprehensive design brief defining problem space, constraints, audience, and success criteria.
design-principlesDefines actionable design principles that guide decision-making and resolve trade-offs.
jobs-to-be-doneMaps user Jobs-to-Be-Done with functional, emotional, and social dimensions plus outcome expectations.
north-star-visionArticulates a compelling north-star product vision that aligns teams and inspires strategic design decisions.
opportunity-frameworkIdentifies, evaluates, and prioritizes design opportunities using impact-effort frameworks.
business-designToolkit for thinking and communicating as a designer in a business context — financials, competitive landscapes, defending decisions in the language of value.
competitive-analysisStructured competitive analysis comparing UX patterns, features, strengths, and gaps across rival products.
metrics-definitionDefines UX metrics and KPIs that connect design decisions to measurable business and user outcomes.
design-impact-reportingCommunicates design's contribution to business and user outcomes in stakeholder-friendly terms.
content-strategyDefines what content a product needs, how it should be structured, and who owns it.
stakeholder-alignmentCreates responsibility matrices, decision frameworks, and communication plans to align stakeholders.

UX Laws & Frameworks

SkillWhat it does
fitts-lawApplies Fitts's Law to size and position interactive targets for fast, accurate interaction.
hicks-lawApplies Hick's Law to reduce decision time by limiting the number of simultaneous choices presented.
millers-lawApplies Miller's Law — chunks information into groups of ~4 to fit working memory limits.
doherty-thresholdApplies the Doherty Threshold — keeps system response times under 400ms to maintain user flow.
aesthetic-usabilityApplies the Aesthetic-Usability Effect — visually polished interfaces are perceived as more usable.
law-of-proximityApplies the Law of Proximity to group related elements through spatial relationships.
law-of-common-regionApplies the Law of Common Region to group elements using containers, backgrounds, and boundaries.
von-restorff-effectApplies the Von Restorff Effect to make the most important element distinctly different from its surroundings.

Design System

SkillWhat it does
color-systemBuilds a comprehensive color system with palette generation, semantic mapping, and accessibility compliance.
typography-scaleCreates a modular typography scale with size, weight, and line-height relationships.
spacing-systemCreates a consistent spacing system based on a base unit with contextual application rules.
layout-gridDefines responsive layout grid systems with columns, gutters, margins, and breakpoint behavior.
design-tokenDefines and organizes design tokens (color, spacing, typography, elevation) with naming conventions and usage guidance.
design-token-auditAudits design token usage across a product for consistency and coverage.
naming-conventionEstablishes naming convention systems for design elements, components, and tokens.
icon-systemCreates an icon system specification covering grid, sizing, naming, categories, and implementation guidance.
illustration-styleDefines an illustration style guide with visual language, color usage, and application rules.
motion-systemDefines a motion system with duration tokens, easing vocabulary, and reduced-motion handling.
pattern-libraryStructures pattern library entries with problem context, solution pattern, usage examples, and related patterns.
theming-systemDesigns theming architecture supporting brand variants, dark mode, and high-contrast modes.
dark-mode-designDesigns effective dark mode interfaces with proper color adaptation, contrast, and elevation.
readable-measureSets optimal line lengths for readability across typography scales and responsive layouts.

Interface Design

SkillWhat it does
interface-designCraft-first interface design for dashboards, admin panels, SaaS apps, tools, and settings pages — the difference between designed and generated.
interfaces-that-feelApplies an emotional resonance lens to technically correct but flat UIs — prescribes specific changes at the copy, motion, and interaction layer.
information-architectureDesigns the structure, hierarchy, and navigation model for a product's content and features.
navigation-patternsSelects and designs navigation patterns matching product structure, user tasks, and platform conventions.
visual-hierarchyEstablishes clear visual hierarchy through size, weight, color, spacing, and positioning.
responsive-designDesigns adaptive layouts and interactions that work across all screen sizes and input methods.
form-designDesigns forms that minimize friction, prevent errors, and guide users to successful completion.
loading-statesDesigns loading, skeleton, and progressive content reveal patterns.
error-handling-uxDesigns error prevention, detection, and recovery experiences.
onboarding-designDesigns first-run experiences that get users to value quickly without overwhelming them.
search-uxDesigns search experiences that help users find what they need, recover from failure, and refine results.
feedback-patternsDesigns system feedback for user actions including confirmations, status updates, and notifications.
data-visualizationDesigns clear, accessible data visualizations with appropriate chart selection and styling.
animation-principlesApplies animation principles to UI motion for purposeful, polished interactions.
gesture-patternsDesigns gesture-based interactions for touch and pointer devices.
micro-interaction-specSpecifies micro-interactions with trigger, rules, feedback, and loop/mode definitions.
state-machineModels complex UI behavior as finite state machines with states, events, and transitions.
localization-designDesigns interfaces that adapt gracefully to multiple languages, writing directions, and cultural contexts.

Critique

SkillWhat it does
critique-affordanceCritiques a screen's interactive affordances — what looks clickable, state visibility, CTA clarity.
critique-brand-consistencyCritiques brand consistency against mood, voice, and token definitions.
critique-colorCritiques colour usage — contrast ratios, palette coherence, semantic meaning, and colour accessibility.
critique-compositionCritiques composition — balance, whitespace, rhythm, and gestalt principles.
critique-information-densityCritiques information density — cognitive load, content prioritisation, and progressive disclosure.
critique-typographyCritiques typography — scale usage, readability, consistency, and token compliance.
critique-visual-hierarchyCritiques visual hierarchy — entry point, eye flow, weight distribution, and emphasis.

Testing & Evaluation

SkillWhat it does
accessibility-auditComprehensive accessibility audit against WCAG guidelines with severity ratings and remediation steps.
accessibility-test-planCreates accessibility testing plans covering assistive technologies and WCAG criteria.
a-b-test-designDesigns rigorous A/B tests with hypotheses, variants, metrics, and sample size calculations.
heuristic-evaluationConducts expert heuristic evaluations using Nielsen's heuristics and domain-specific criteria.
usability-test-planDesigns usability test plans with tasks, success metrics, participant criteria, and a facilitation guide.
click-test-planDesigns click/first-click tests to evaluate navigation and information findability.
test-scenarioGenerates structured usability test scenarios with realistic tasks, success criteria, and facilitation notes.
design-qa-checklistCreates QA checklists for verifying design implementation accuracy.
design-debt-auditIdentifies, categorizes, and prioritizes accumulated design inconsistencies and structural problems.
prototype-strategyChooses the right prototyping fidelity and method for the design question at hand.

Documentation & Handoff

SkillWhat it does
component-specWrites detailed component specifications including props, states, variants, accessibility requirements, and usage guidelines.
handoff-specCreates developer handoff specifications with measurements, behaviors, assets, and edge cases.
design-rationaleWrites clear design rationale connecting decisions to user needs, business goals, and principles.
design-review-processEstablishes design review gates with criteria, checklists, and approval workflows.
design-critiqueFacilitates structured design critiques with clear feedback frameworks and actionable outcomes.
documentation-templateGenerates structured documentation templates for components, patterns, or guidelines within a design system.
wireframe-specSpecifies wireframe layouts with content priority, component placement, and annotation.
anydesignAnalyzes any visual source — website, screenshot, Figma file, or image — to extract its design system, tokens, and components into a design.md.
case-studyCrafts portfolio-ready case studies that tell the full story of a design project.
presentation-deckStructures compelling design presentations for stakeholders, reviews, and showcases.
service-blueprintMaps the end-to-end service delivery system including frontstage, backstage, and supporting infrastructure.
team-workflowDesigns team workflows covering task management, collaboration rituals, and tooling.
version-control-strategyDefines version control strategies for design files, components, and libraries.
design-system-governanceDefines how a design system evolves — contribution models, versioning, change management, and deprecation.
design-system-adoptionCreates adoption strategies and materials to drive design system usage across teams.
design-sprint-planPlans and facilitates design sprints from challenge framing through prototype testing.
design-negotiationAdvocates for design quality, scope, and time with cross-functional partners using evidence and shared goals.
ux-writingWrites effective UI copy including microcopy, error messages, empty states, and CTAs.
ux-researcher-designerFull UX research and design toolkit — personas, journey mapping, usability testing frameworks, and research synthesis.

Commands

If you've installed the command pack, every skill is also a slash subcommand. The SEO, GEO, and docs skills run under /dev-gtm; the full-funnel marketing skills run under /marketing; the comprehensive SEO suite runs under /seo; the blog content engine runs under /blog; the web design skills run under /web-design; the product management skills run under /pm; the Notion and productivity skills run under /notion; the coding skills run under /coding-skills; the job search skills run under /job-search; and the product designer skills run under /product-designers.

Claude Commands

/dev-gtm — SEO, GEO & docs

CommandDescription
/dev-gtm docs-audit <url>Run the full 33-check developer docs audit and return a scored report.
/dev-gtm sdk-audit <url>Audit SDK documentation across 6 sections; scored, downloadable HTML report.
/dev-gtm api-audit <url>Crawl every endpoint page and score each across 5 quality checks.
/dev-gtm blog-count <company or domain>Count unique blog posts for one company, or compare a target vs competitors.
/dev-gtm brief-outline <keyword or title>Generate an SEO content outline and export it as a formatted .docx.
/dev-gtm growth-report <domain> [competitors...]3-month SEO performance report with traffic, keywords, and competitive positioning.
/dev-gtm llms-check <domain>Audit AI-readiness: probe robots.txt, llms.txt, llms-full.txt; scored report.
/dev-gtm orphan-pages <domain>Discover pages with zero incoming internal links; 3 linking suggestions per orphan.
/dev-gtm dead-end-pages <domain>Find pages with zero outgoing internal links; 3 outgoing link suggestions per page.
/dev-gtm prospect <domain or ICP>Build an exact-fit developer-marketing prospect list with signals and pain points.

/marketing — full-funnel growth

CommandDescription
/marketing seo-audit <domain or url>Diagnose technical & on-page SEO issues.
/marketing ai-seo <url or topic>Optimize for AI search engines & LLM citations.
/marketing schema <url or page type>Add or fix structured data markup.
/marketing programmatic-seo <keyword pattern>Build SEO pages at scale from templates.
/marketing content-strategy <product or niche>Plan what content to create.
/marketing copywriting <page or url>Write or improve marketing copy.
/marketing social <platform or topic>Create & schedule social content.
/marketing lead-magnets <topic or audience>Plan a lead magnet.
/marketing free-tools <product or idea>Plan a free marketing tool.
/marketing ads <product or goal>Paid campaign strategy & targeting.
/marketing ad-creative <product or offer>Generate ad copy variations at scale.
/marketing ab-testing <what to test>Design an A/B test or experiment.
/marketing cro <page url>Improve conversion rate.
/marketing launch <product or feature>Plan a product/feature launch.
/marketing marketing-ideas <product>Brainstorm growth ideas.
/marketing referrals <product>Design a referral/affiliate program.
/marketing community-marketing <product or goal>Plan community-led growth.
/marketing emails <sequence type>Build a lifecycle/drip email flow.
/marketing cold-email <target or offer>Write cold outreach sequences.
/marketing onboarding <product>Optimize post-signup activation.
/marketing churn-prevention <context>Reduce churn & build retention flows.
/marketing customer-research <source or topic>Conduct or analyze customer research.
/marketing competitor-profiling <competitor URLs>Produce structured competitor profiles.
/marketing competitors <you vs competitor>Create comparison/alternative pages.
/marketing analytics <what to track>Set up or audit measurement.
/marketing pricing <product or context>Pricing & packaging strategy.
/marketing revops <context>Lead lifecycle & marketing-to-sales handoff.
/marketing sales-enablement <asset type>Create sales collateral.

/blog — blog content engine

Single entry point for all 30 writing skills. Requires the Blog skills runtime step.

CommandDescription
/blog write <topic>Write a new post from scratch (research → write → SEO → review).
/blog rewrite <file>Rewrite/optimize an existing post.
/blog update <file>Update an existing post with fresh statistics (routes to rewrite).
/blog analyze <file-or-url>Audit quality with a 0–100 score.
/blog brief <topic>Generate a detailed content brief.
/blog outline <topic>SERP-informed content outline.
/blog strategy <niche>Blog strategy and topic ideation.
/blog calendar [monthly|quarterly]Generate an editorial calendar.
/blog cluster [plan|execute] <seed>Semantic topic-cluster planning + execution.
/blog seo-check <file>Post-writing SEO validation checklist.
/blog schema <file>Generate JSON-LD schema markup.
/blog geo <file>AI-citation readiness audit.
/blog audit [directory]Full-site blog health assessment.
/blog factcheck <file>Verify statistics against cited sources.
/blog cannibalization [dir]Detect keyword cannibalization across posts.
/blog repurpose <file>Repurpose content for other platforms.
/blog persona [create|list|use|show]Manage writing personas and voice profiles.
/blog brand [init|show|update]Generate BRAND.md + VOICE.md context files.
/blog discourse <topic>Research what people said in the last 30 days.
/blog taxonomy [suggest|sync|audit]Tag/category management across CMS platforms.
/blog image [generate|edit|setup]AI image generation via Gemini.
/blog audio [generate|voices|setup]Generate audio narration of a post.
/blog notebooklm <question>Query NotebookLM for source-grounded research.
/blog google [command] [args]Google API data: PSI, CrUX, GSC, GA4, NLP, YouTube.
/blog flow [find|optimize|win|prompts|sync]FLOW framework prompts.
/blog multilingual <topic> --languages <codes>Write + translate + localize + hreflang.
/blog translate <file> --to <codes>SEO-optimized translation.
/blog localize <file> --locale <code>Cultural deep-adaptation.
/blog locale-audit <directory>Multilingual content QA.

/seo — comprehensive SEO suite

Single entry point for the SEO suite. The seo orchestrator detects business type and delegates to specialist subagents in parallel for full audits.

CommandDescription
/seo audit <url>Full website audit with parallel subagent delegation.
/seo page <url>Deep single-page SEO analysis.
/seo technical <url>Technical SEO audit (9 categories).
/seo content <url>E-E-A-T and content-quality analysis.
/seo content-brief <topic or url>Generate a competitive SEO content brief.
/seo schema <url>Detect, validate, and generate Schema.org markup.
/seo sitemap <url or generate>Analyze or generate XML sitemaps.
/seo images <url or optimize>Image SEO audit, SERP analysis, file optimization.
/seo geo <url>AI Overviews / Generative Engine Optimization.
/seo plan <business-type>Strategic SEO planning.
/seo programmatic [url|plan]Programmatic SEO analysis and planning.
/seo competitor-pages [url|generate]Competitor comparison page generation.
/seo local <url>Local SEO (GBP, citations, reviews, map pack).
/seo maps [command] [args]Maps intelligence (geo-grid, GBP audit, reviews).
/seo hreflang [url]Hreflang / i18n SEO audit and generation.
/seo google [command] [url]Google SEO APIs (GSC, PageSpeed, CrUX, Indexing, GA4).
/seo backlinks <url>Backlink profile analysis (free + DataForSEO).
/seo cluster <seed-keyword>SERP-based semantic clustering and content architecture.
/seo sxo <url>Search Experience Optimization — page-type and persona scoring.
/seo drift [baseline|compare|history] <url>Capture and track SEO changes over time.
/seo ecommerce <url>E-commerce SEO (product schema, marketplace intelligence).
/seo flow [stage] [url|topic]FLOW framework prompts (find/leverage/optimize/win/local).
/seo dataforseo [command]Live SEO data via DataForSEO (extension).
/seo image-gen [use-case] <description>AI image generation for SEO assets (extension).
/seo firecrawl [command] <url>Full-site crawling and site mapping (extension).

/web-design — design & UI

CommandDescription
/web-design frontend-design <brief or url>Get distinctive visual design direction, typography, and aesthetic guidance.
/web-design landing-page-auditor <url>Audit a page across 48 checks — LLM/AI discoverability, GEO readiness, content clarity, schema, and technical crawlability. Produces a scored HTML report.
/web-design site-architecture <domain or goal>Plan page hierarchy, navigation, URL structure, and internal linking.
/web-design web-design-guidelines <file or pattern>Audit UI code for accessibility, UX, and web design best practices.

/pm — product management

CommandDescription
/pm strategy <product or context>Drive vision, OKR cascades, quarterly planning, roadmaps, and team scaling.
/pm prd <feature or notes>Build a structured, engineering-ready PRD from discovery notes.
/pm prioritize <context>Choose the right prioritization framework (RICE, ICE, value/effort, etc.).
/pm backlog <story or sprint context>Write user stories, define acceptance criteria, plan sprints, and track velocity.
/pm story-map <product or journey>Build a user story map (activities, steps, tasks, release slices).
/pm growth <growth constraint>Diagnose which organic growth path to pursue next.
/pm toolkit <PM task>RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and GTM strategy.
/pm create-skill <idea or content>Design a new PM skill through guided conversation.

/notion — productivity & workflow

CommandDescription
/notion captureTransform a messy brain dump into four structured sections (Projects/Ideas, Tasks, Connections, Next Steps).
/notion inboxRun email triage — first run builds your taxonomy KB, recurring runs classify and draft replies.
/notion reflectPause mid-conversation for a frank 5-dimension reassessment with a concrete continue/pivot/pause recommendation.
/notion workflow <task>Design and generate a multi-agent Claude Code workflow script for any repeatable multi-step task.
/notion content-brief <keyword>Generate a full SEO content brief and optionally push it to Notion.
/notion claude-md-starterScan the current repo and auto-generate a populated CLAUDE.md.
/notion meeting-notesStructure raw meeting notes into action items, decisions, and a summary.

/coding-skills — software engineering

CommandDescription
/coding-skills code-reviewer <repo or file>Analyze PRs for complexity, risk, code smells, and SOLID violations across 13 languages.
/coding-skills pr-review-expert <PR or diff>Expert-level PR review for security issues, correctness, and code quality.
/coding-skills karpathy-guidelinesApply behavioral guidelines to reduce common LLM coding mistakes.
/coding-skills senior-architect <system>Design system architecture, evaluate trade-offs, create diagrams, and write ADRs.
/coding-skills brainstorming <idea or feature>Explore user intent, requirements, and design before any implementation begins.
/coding-skills test-driven-development <feature>Write tests first, watch them fail, then write minimal passing code.
/coding-skills using-superpowersEstablish skill discovery and invocation at the start of a session.

/job-search — job search & career

CommandDescription
/job-search job-search <keyword>Search jobs matching your resume and preferences across job boards.
/job-search apply <job URL>Fill out a Greenhouse, Lever, or Workday application end-to-end.
/job-search application-form-filler <job desc>Fill application form fields from your CV and the job description.
/job-search network-scan <contacts or 'all'>Scan LinkedIn contacts' companies for matching job openings.
/job-search job-description-analyzer <posting>Analyze a job posting, score the match, and identify gaps.
/job-search tailor-resume <job URL>Full resume tailoring workflow — fetches posting, tailors, critiques.
/job-search resume-tailor <job posting>Customize a resume for a specific role.
/job-search resume-ats-optimizer <resume>Optimize for ATS and analyze keyword match.
/job-search resume-bullet-writer <bullets>Transform weak bullets into achievement-focused statements.
/job-search resume-formatter <resume>ATS-friendly formatting and clean scannable layout.
/job-search resume-quantifier <resume>Add metrics and quantified impact to resume bullets.
/job-search resume-section-builder <role>Build targeted sections for different experience levels and roles.
/job-search resume-version-manager <context>Track and manage multiple resume versions.
/job-search tech-resume-optimizer <resume>Optimize for engineering and technical roles.
/job-search academic-cv-builder <CV>Format CVs for academic positions with publications and grants.
/job-search executive-resume-writer <context>C-suite and VP level resume writing.
/job-search creative-portfolio-resume <context>Visual resume balancing design with ATS compatibility.
/job-search cover-letter <job URL>Write a tailored cover letter for a specific job posting.
/job-search cover-letter-generator <resume + JD>Generate a cover letter from resume and job description.
/job-search cold-email-writer <target>Personalized cold outreach emails to hiring managers.
/job-search interview-prep-generator <resume>STAR stories, practice questions, and talking points.
/job-search offer-comparison-analyzer <offers>Compare multiple offers with total compensation analysis.
/job-search salary-negotiation-prep <role>Market rates, negotiation strategy, and counter-offer scripts.
/job-search linkedin-profile-optimizer <profile>Optimize LinkedIn for recruiter searchability and engagement.
/job-search portfolio-case-study-writer <project>Transform resume bullets into portfolio case studies.
/job-search career-changer-translator <industries>Identify transferable skills across industries.
/job-search reference-list-builder <context>Format and prepare professional references.

/product-designers — UX & product design

CommandDescription
/product-designers user-persona <research>Create user personas from research data.
/product-designers empathy-map <user>Build empathy maps (Says / Thinks / Does / Feels).
/product-designers interview-script <topic>Create structured user interview scripts.
/product-designers journey-map <user + product>End-to-end journey maps with stages and pain points.
/product-designers affinity-diagram <data>Organize research into themes and clusters.
/product-designers user-flow-diagram <task>Create flow diagrams with decisions and branches.
/product-designers experience-map <service>Map full ecosystem of touchpoints and channels.
/product-designers diary-study-plan <topic>Design diary studies for longitudinal research.
/product-designers card-sort-analysis <data>Analyze card sorts for IA decisions.
/product-designers survey-design <hypothesis>Design reliable quantitative surveys.
/product-designers summarize-interview <transcript>Summarize interviews into structured insights.
/product-designers research-repository <context>Build a findable, reusable research repository.
/product-designers design-brief <problem>Write a comprehensive design brief.
/product-designers design-principles <product>Define actionable design principles.
/product-designers jobs-to-be-done <product>Map Jobs-to-Be-Done with full functional, emotional, and social dimensions.
/product-designers north-star-vision <product>Articulate a compelling product vision.
/product-designers opportunity-framework <problem>Identify and prioritize design opportunities.
/product-designers business-design <context>Communicate design in the language of business value.
/product-designers competitive-analysis <product>Compare UX patterns across competitors.
/product-designers metrics-definition <feature>Define UX metrics and KPIs.
/product-designers design-impact-reporting <project>Report design's business contribution to stakeholders.
/product-designers content-strategy <product>Define content structure and ownership.
/product-designers stakeholder-alignment <project>Build alignment with RACI and decision frameworks.
/product-designers fitts-law <interface>Size and position targets for fast, accurate interaction.
/product-designers hicks-law <interface>Reduce decision time by limiting simultaneous choices.
/product-designers millers-law <content>Chunk information to fit working memory limits.
/product-designers doherty-threshold <feature>Keep system response times under 400ms.
/product-designers aesthetic-usability <interface>Polished interfaces feel more usable.
/product-designers law-of-proximity <layout>Group elements through spatial relationships.
/product-designers law-of-common-region <layout>Group elements with containers and backgrounds.
/product-designers von-restorff-effect <interface>Make key elements distinctly different from surroundings.
/product-designers color-system <product>Build a color palette with semantic mapping and a11y compliance.
/product-designers typography-scale <product>Create a modular type scale with size, weight, and line-height.
/product-designers spacing-system <product>Build consistent spacing from a base unit.
/product-designers layout-grid <product>Define responsive grids with columns, gutters, and breakpoints.
/product-designers design-token <system>Define and organize design tokens with naming conventions.
/product-designers design-token-audit <codebase>Audit token usage for consistency and coverage.
/product-designers naming-convention <system>Establish naming rules for components and tokens.
/product-designers icon-system <product>Spec icon grid, sizing, naming, and categories.
/product-designers illustration-style <product>Define illustration visual language and application rules.
/product-designers motion-system <product>Define duration tokens, easing vocabulary, and reduced motion.
/product-designers pattern-library <pattern>Structure pattern library entries with context and examples.
/product-designers theming-system <product>Design theming for brand variants and dark mode.
/product-designers dark-mode-design <interface>Adapt color, contrast, and elevation for dark mode.
/product-designers readable-measure <typography>Set optimal line lengths for readability.
/product-designers interface-design <product>Craft-first design for SaaS apps, dashboards, and tools.
/product-designers interfaces-that-feel <interface>Apply emotional resonance to technically correct but flat UIs.
/product-designers information-architecture <product>Design structure, hierarchy, and navigation model.
/product-designers navigation-patterns <product>Select navigation patterns by task and platform.
/product-designers visual-hierarchy <screen>Establish hierarchy through size, weight, and color.
/product-designers responsive-design <product>Adaptive layouts across all screen sizes.
/product-designers form-design <form>Design forms that minimize friction and prevent errors.
/product-designers loading-states <component>Design skeleton and progressive reveal patterns.
/product-designers error-handling-ux <flow>Design error prevention and recovery experiences.
/product-designers onboarding-design <product>First-run experiences that reach value fast.
/product-designers search-ux <product>Design search with findability and failure recovery.
/product-designers feedback-patterns <product>Confirmations, status updates, and notifications.
/product-designers data-visualization <data>Clear, accessible charts and data displays.
/product-designers animation-principles <interface>Apply animation principles to UI motion.
/product-designers gesture-patterns <touch interface>Design gesture interactions for touch and pointer.
/product-designers micro-interaction-spec <action>Specify micro-interactions with trigger, rules, and feedback.
/product-designers state-machine <component>Model UI behavior as finite state machines.
/product-designers localization-design <product>Design for multiple languages and writing directions.
/product-designers critique-affordance <screen>Critique what looks clickable and CTA clarity.
/product-designers critique-brand-consistency <screen>Critique brand against mood and token definitions.
/product-designers critique-color <screen>Critique contrast, palette, and colour accessibility.
/product-designers critique-composition <screen>Critique balance, whitespace, and gestalt.
/product-designers critique-information-density <screen>Critique cognitive load and content prioritisation.
/product-designers critique-typography <screen>Critique scale, readability, and token compliance.
/product-designers critique-visual-hierarchy <screen>Critique entry point, eye flow, and emphasis.
/product-designers accessibility-audit <product>WCAG audit with severity ratings and remediation steps.
/product-designers accessibility-test-plan <feature>Testing plan covering assistive technologies and WCAG.
/product-designers a-b-test-design <hypothesis>Design A/B tests with metrics and sample sizes.
/product-designers heuristic-evaluation <product>Expert evaluation using Nielsen's heuristics.
/product-designers usability-test-plan <feature>Test plan with tasks, metrics, and facilitation guide.
/product-designers click-test-plan <navigation>First-click tests for navigation findability.
/product-designers test-scenario <feature>Structured usability test scenarios ready to run.
/product-designers design-qa-checklist <release>QA checklist for design implementation accuracy.
/product-designers design-debt-audit <product>Identify and prioritize design inconsistencies.
/product-designers prototype-strategy <question>Choose the right fidelity and prototyping method.
/product-designers component-spec <component>Props, states, variants, and accessibility specification.
/product-designers handoff-spec <design>Dev handoff with measurements, behaviors, and edge cases.
/product-designers design-rationale <decision>Rationale connecting decisions to user needs and goals.
/product-designers design-review-process <team>Review gates with criteria and approval workflows.
/product-designers design-critique <design>Facilitate structured critique sessions.
/product-designers documentation-template <pattern>Generate documentation templates for components.
/product-designers wireframe-spec <screen>Wireframe spec with content priority and annotations.
/product-designers anydesign <URL or image>Extract design system from any visual source.
/product-designers case-study <project>Portfolio-ready design case studies.
/product-designers presentation-deck <project>Compelling design presentations for stakeholders.
/product-designers service-blueprint <service>Map frontstage, backstage, and supporting infrastructure.
/product-designers team-workflow <team>Design team rituals, task management, and tooling.
/product-designers version-control-strategy <files>Version control for design files and libraries.
/product-designers design-system-governance <system>Contribution models, versioning, and deprecation.
/product-designers design-system-adoption <system>Drive design system adoption across teams.
/product-designers design-sprint-plan <challenge>Plan design sprints from brief to prototype.
/product-designers design-negotiation <context>Advocate for design with evidence and shared goals.
/product-designers ux-writing <screen>Microcopy, error messages, empty states, and CTAs.
/product-designers ux-researcher-designer <context>Full UX research and design toolkit.

Who it's for

These skills are built for technical teams who care about being discoverable by AI, not just by Google:

  • DevTool & infrastructure startups measuring whether their docs are LLM-citable
  • AI-agent and LLM platforms that need their API/SDK docs parsed correctly by agents
  • Developer marketing & DevRel teams running SEO + GEO audits without a dedicated SEO hire
  • Technical content teams producing briefs and benchmarking content against competitors
  • Founders who want a fast, honest read on their AI visibility before investing in it

Requirements

  • Claude Code, Claude Desktop, or Claude.ai
  • Python 3.10+
  • Node.js with npx (to run the DataForSEO MCP server locally)
  • A DataForSEO API account — only for the live-search skills: growth-report, blog-post-counter, api-docs-quality-report

Sample outputs

Docs AuditorGrowth Report
Docs Auditor running in Claude CodeGrowth Report running in Claude Code

Repository structure

dev-gtm-claude-skills/
├── assets/                          # Logos, images, and GIFs for this README
├── skills/
│   ├── docs-auditor/
│   │   ├── SKILL.md                 # Agent instructions (Claude reads this)
│   │   ├── README.md                # Human-facing usage docs
│   │   └── references/              # Scoring guide, widget template, fetch strategy
│   ├── sdk-docs-auditor/
│   ├── api-docs-quality-report/
│   ├── growth-report/
│   ├── blog-post-counter/
│   ├── brief-outline-generator/
│   ├── llms-txt-checker/
│   ├── orphan-pages-internal-linking-opportunities/
│   ├── no-outlinks-audit/
│   └── dev-marketing-prospector/
├── marketing-skills/                # 28 full-funnel developer-marketing skills
│   ├── seo-audit/
│   ├── content-strategy/
│   ├── cro/
│   ├── emails/
│   └── …                            # ad-creative, ads, pricing, launch, and more
├── notion-skills/                   # 7 personal-productivity and workflow skills (/notion)
│   ├── capture/                     # brain-dump organizer
│   ├── inbox/                       # email triage system
│   ├── reflect/                     # mid-conversation reassessment
│   ├── workflow-builder/            # multi-agent workflow script generator
│   ├── content-brief/               # keyword → SEO brief → Notion
│   ├── claude-md-starter/           # repo scanner + CLAUDE.md generator
│   └── meeting-notes/               # structured meeting summaries
├── writing-skills/                  # 30 blog/content-engine sub-skills (/blog) + 4 standalone
│   ├── blog/                        # orchestrator
│   ├── blog-write/
│   ├── blog-analyze/
│   ├── ogilvy-copywriting/          # standalone: sales-driven copy
│   ├── social-media-posts/          # standalone: per-platform social posts
│   ├── reddit-comments/             # standalone: on-brand Reddit replies
│   ├── stop-slop/                   # standalone: strip AI writing tells
│   └── …                            # rewrite, brief, schema, translate, and more
├── seo-skills/                      # 25 SEO sub-skills (/seo) + geo-seo-claude + 8 extensions
│   ├── seo/                         # orchestrator
│   ├── seo-audit/                   # full-site audit (installs as seo-audit-full)
│   ├── seo-technical/
│   ├── seo-geo/
│   ├── geo-seo-claude/              # standalone SEO/GEO/AEO optimizer (own scripts)
│   ├── extensions/                  # 8 optional MCP extensions (dataforseo, firecrawl, …)
│   └── …                            # schema, local, maps, backlinks, cluster, and more
├── agents/                          # blog + 18 SEO specialist subagents (Task subagents)
├── data/                            # shared data (e.g., google-updates.json)
├── scripts/                         # shared blog + SEO scripts + multi-tool installers
└── README.md

FAQ

Are these Claude skills free? Yes, every skill is free and MIT-licensed. No license fees, no paywalls.

Do I need Claude Code? No. Skills run in Claude Code, Claude Desktop, or Claude.ai. Desktop and web use the ZIP upload method above.

Which skills need API keys? Most need none. Only the live-search skills (growth-report, blog-post-counter, api-docs-quality-report) use DataForSEO, and the internal-linking skills (orphan-pages…, no-outlinks-audit) use Ahrefs.

How is this different from a standard SEO audit tool? Traditional tools optimize for Google crawlers. These skills are built for developer documentation and AI discoverability. They check whether your docs can be parsed, cited, and recommended by LLMs.

How often do new skills ship? Regularly. Star or watch the repo to get notified.


Contributing

To add a skill, create a folder under skills/:

skills/your-skill-name/
├── SKILL.md          # Required: agent instructions
├── README.md         # Required: human-facing docs
├── requirements.txt  # If the skill has Python dependencies
└── references/       # Templates, scoring guides, or other reference files

SKILL.md must include a frontmatter block:

---
name: your-skill-name
description: >
  One paragraph describing exactly when Claude should activate this skill.
  Write it to match the natural language a user would use.
---

The description field is what Claude uses to decide when to activate the skill — be specific about trigger phrases and input formats. Open a PR with your skill folder and a one-line summary.


License

MIT — see LICENSE.

Built by Infrasity

Infrasity is a developer-marketing agency for DevTools, AI-agent platforms, and B2B SaaS. We help technical products get found, parsed, and cited by AI systems.

🌐 infrasity.com · 🔗 LinkedIn · 📸 Instagram

Want a GEO audit of your own docs?infrasity.com/claude-skills

Contributors

divyamprusty

142 commits

Infrasity-Labs

49 commits

Sid-Lais

5 commits

Languages

Python

86.0%

JavaScript

6.1%

HTML

3.5%

Shell

2.6%