/ Diretório / Playground / Agentic-SEO-Skill
● Comunidade Bhanunamikaze ⚡ Instantâneo

Agentic-SEO-Skill

por Bhanunamikaze · Bhanunamikaze/Agentic-SEO-Skill

LLM-first SEO with 16 sub-skills, 10 specialist agents, 33 evidence-collector scripts — works in Antigravity, Codex, and Claude Code.

An evidence-first SEO skill: collect page data via utility scripts, analyze with an LLM that must cite proofs, apply confidence labels, prioritize by impact, and produce structured action plans. Enforces current Google standards (INP over FID, full E-E-A-T). Notable: a GitHub-analyst agent audits repo-hosted sites and writes GITHUB-SEO-REPORT.md.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

agentic-seo-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "agentic-seo-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Bhanunamikaze/Agentic-SEO-Skill",
        "~/.claude/skills/Agentic-SEO-Skill"
      ],
      "_inferred": true
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "agentic-seo-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Bhanunamikaze/Agentic-SEO-Skill",
        "~/.claude/skills/Agentic-SEO-Skill"
      ],
      "_inferred": true
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "agentic-seo-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Bhanunamikaze/Agentic-SEO-Skill",
        "~/.claude/skills/Agentic-SEO-Skill"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "agentic-seo-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Bhanunamikaze/Agentic-SEO-Skill",
        "~/.claude/skills/Agentic-SEO-Skill"
      ],
      "_inferred": true
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "agentic-seo-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Bhanunamikaze/Agentic-SEO-Skill",
        "~/.claude/skills/Agentic-SEO-Skill"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "agentic-seo-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/Bhanunamikaze/Agentic-SEO-Skill",
          "~/.claude/skills/Agentic-SEO-Skill"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add agentic-seo-skill -- git clone https://github.com/Bhanunamikaze/Agentic-SEO-Skill ~/.claude/skills/Agentic-SEO-Skill

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: Agentic-SEO-Skill

Run an evidence-backed SEO audit with confidence labels

👤 SEO analysts tired of 'trust me' recommendations ⏱ ~60 min intermediate

Quando usar: You want findings you can defend to a skeptical engineering lead.

Fluxo
  1. Trigger the full audit
    Use agentic-seo-skill on https://site.com — full evidence-backed audit.✓ Copiado
    → Scripts collect raw data (meta tags, schema, link graph, CWV); agents analyze
  2. Review findings with proofs
    Show the top 10 issues with their supporting evidence and confidence labels.✓ Copiado
    → Each finding has a literal quote/data point behind it
  3. Prioritized action plan
    Order by impact × effort.✓ Copiado
    → Ranked plan with numeric rationale

Resultado: An audit where every finding is citable.

Armadilhas
  • Low-confidence findings treated as high priority — Use the confidence labels — skip 'low' until high/medium are done
Combine com: firecrawl

Audit a GitHub-hosted docs site with the GitHub-analyst agent

👤 Dev-tool teams with docs on GitHub Pages ⏱ ~40 min intermediate

Quando usar: Your docs live in a repo and you want a SEO audit tied to the repo structure.

Fluxo
  1. Point the GitHub agent at the repo
    agentic-seo-skill — audit github.com/acme/docs site. Output GITHUB-SEO-REPORT.md.✓ Copiado
    → Report in the repo format with per-file recommendations
  2. Open a PR with fixes
    Turn the high-confidence findings into a PR.✓ Copiado
    → PR with concrete diffs

Resultado: A SEO-improved docs site with a trackable PR.

Armadilhas
  • PR touches too many files at once — Split by finding type (meta vs content vs schema)
Combine com: github

Optimize pages for Perplexity / ChatGPT / AI Overviews citations

👤 Content teams losing clicks to AI summaries ⏱ ~30 min intermediate

Quando usar: You want to be the cited source, not just another organic result.

Fluxo
  1. Run the GEO/AEO sub-skill
    agentic-seo-skill — GEO audit on https://site.com/post.✓ Copiado
    → Findings tied to snippet-friendliness, entity clarity, citation signals
  2. Apply and verify
    Apply recommendations and re-verify.✓ Copiado
    → Score deltas with evidence

Resultado: Pages restructured for AI-citation pickup.

Armadilhas
  • Over-optimization hurts human readability — The content-quality agent catches robotic-sounding edits

Combinações

Combine com outros MCPs para 10× de alavancagem

agentic-seo-skill + firecrawl

Firecrawl does the JS-rendered crawl; agentic-seo interprets

Crawl with firecrawl, pipe rendered HTML into agentic-seo-skill for analysis.✓ Copiado
agentic-seo-skill + github

Open PRs directly from audit findings

For the high-confidence findings, open a PR in the repo.✓ Copiado
agentic-seo-skill + claude-seo-skill

Use the /seo slash commands for fast runs, agentic-seo for evidence-backed depth

First do /seo audit for the quick view, then agentic-seo-skill for the deep defensible audit.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
Technical SEO agent URL Baseline tech audit 0
Schema agent URL Structured data work 0
Performance agent URL CWV review 0
GitHub-analyst agent repo URL Audits on GitHub-hosted sites 0
Verification agent prior findings Before publishing audit 0

Custo e limites

O que custa rodar

Cota de API
None for the skill
Tokens por chamada
10-30k for full audit — evidence collection uses scripts, not tokens, for the raw data
Monetário
Free — skill is local
Dica
Utility scripts are Python — run them as preflight outside the LLM loop to save tokens.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: No credentials — scripts hit public URLs only
Saída de dados: Only to the sites you audit

Solução de problemas

Erros comuns e correções

Utility scripts fail to run

Check Python version and required packages; install dependencies from the skill's requirements file.

Verificar: python --version
Confidence labels all 'low'

Scripts couldn't collect enough raw evidence — check network access and JS rendering.

GitHub-analyst can't access repo

Set a PAT for private repos; public repos should work unauthenticated.

Alternativas

Agentic-SEO-Skill vs. outros

AlternativaQuando usarTroca
claude-seo-skillYou want slash-command UX and enterprise reportingClaude-only; no multi-agent evidence framework
seo-geo-claude-skillYou want a phase-based lighter libraryLess evidence-first methodology

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills