{
  "markdown": "# SEO Intelligence — Claude Plugin\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)\n\n> AI-powered SEO toolkit built into Claude. Audit pages, analyze competitors, generate ranking plans, build schema markup, cluster keywords, and track AI search visibility.\n\n## Install\n\nIn Claude Code:\n```\n/plugin install seo-intelligence\n```\n\nOr browse: `/plugin` → Discover → search **\"seo-intelligence\"**\n\n---\n\n## Skills (Auto-Activating)\n\nClaude automatically uses these skills based on context — no commands needed.\n\n| Skill | Triggers when you ask about... |\n|-------|-------------------------------|\n| **on-page-seo** | SEO score, title tags, meta descriptions, heading structure |\n| **technical-seo** | Crawlability, sitemap, robots.txt, SSL, redirects, canonicals |\n| **competitor-analysis** | Why competitors rank higher, SERP gap analysis |\n| **keyword-research** | Keyword clustering, search intent, difficulty, cannibalization |\n| **content-strategy** | Content briefs, blog outlines, what to write for a keyword |\n| **schema-markup** | JSON-LD, structured data, rich results, FAQ/Product schema |\n| **local-seo** | Google Maps, Local 3-Pack, citations, NAP consistency |\n| **aeo-visibility** | AI search citations (Perplexity, ChatGPT, Google SGE) |\n| **ranking-plan** | How to rank higher, prioritized SEO action plans |\n| **ecommerce-seo** | Product page SEO, Google Merchant Center schema validation |\n| **international-seo** | hreflang tags, multilingual sites, country targeting |\n\n**Example prompts:**\n```\n\"Why is my competitor ranking higher for 'best coffee maker'?\"\n\"Check the SEO of https://mysite.com\"\n\"What's the search intent for 'cold brew coffee recipe'?\"\n\"Generate schema markup for my FAQ page at https://mysite.com/faq\"\n```\n\n---\n\n## Commands\n\n| Command | What it does |\n|---------|-------------|\n| `/seo-intelligence:seo-check <url> <keyword>` | Quick SEO health check — score + top 5 fixes |\n| `/seo-intelligence:seo-audit <url> <keywords>` | Full multi-keyword audit with competitor analysis |\n| `/seo-intelligence:technical-audit <url>` | Technical SEO infrastructure audit |\n| `/seo-intelligence:competitor-gap <url> <keyword>` | Gap analysis against top 3 ranking pages |\n| `/seo-intelligence:ranking-plan <url> <keyword>` | Prioritized action plan to rank higher |\n| `/seo-intelligence:keyword-cluster <keywords>` | Cluster keywords + detect cannibalization |\n| `/seo-intelligence:generate-schema <url> [type]` | Generate JSON-LD schema markup |\n| `/seo-intelligence:content-brief <keyword>` | SEO content brief from competitor analysis |\n\n---\n\n## Agents\n\nThree autonomous agents for multi-step SEO tasks:\n\n### SEO Auditor\nRuns a complete SEO audit autonomously — on-page analysis, technical check, competitor gap analysis, and prioritized action plan.\n```\n\"Run an SEO audit on https://mysite.com for keywords: best coffee maker, coffee machine reviews\"\n```\n\n### Competitor Analyzer\nResearches top 5 SERP competitors, crawls each, and delivers a gap analysis showing exactly what they do better.\n```\n\"Who is outranking me for 'best coffee maker' and why?\"\n```\n\n### Content Strategist\nTakes a keyword list and produces a complete content strategy — clustering, intent classification, content briefs, cannibalization fixes, and prioritized content calendar.\n```\n\"Build a content strategy for: cold brew coffee, iced coffee, cold brew recipe, cold brew maker\"\n```\n\n---\n\n## MCP Tools (22 Tools)\n\nAll skills, agents, and commands are powered by these MCP tools:\n\n| Tool | Description | API Key Required |\n|------|-------------|-----------------|\n| `analyze_page_seo` | Full on-page SEO health check | No |\n| `search_serp` | Live Google SERP results | SerpAPI |\n| `compare_with_competitors` | Competitor gap analysis | SerpAPI |\n| `generate_ranking_plan` | Prioritized ranking action plan | SerpAPI |\n| `get_quick_wins` | Top 5 easiest high-impact fixes | No |\n| `technical_seo_audit` | Sitemap, robots.txt, SSL, redirects | No |\n| `classify_search_intent` | Intent classification per keyword | SerpAPI |\n| `cluster_keywords` | Group keywords by SERP URL overlap | SerpAPI |\n| `detect_cannibalization` | Find competing pages for same keywords | SerpAPI |\n| `predict_keyword_difficulty` | Ranking difficulty + ROI projection | SerpAPI |\n| `check_ai_search_visibility` | AEO: Perplexity, ChatGPT, SGE citations | Optional |\n| `analyze_entity` | Google Knowledge Graph entity validation | Optional |\n| `check_local_pack` | Google Local 3-Pack presence check | SerpAPI |\n| `build_local_citations` | Directory citation list by category | No |\n| `generate_geo_tags` | HTML geo meta tags for local SEO | No |\n| `ecommerce_product_seo` | Product schema + Merchant Center validation | No |\n| `analyze_accessibility` | WCAG 2.1 AA + UX audit | No |\n| `analyze_media_seo` | VideoObject + Speakable schema | No |\n| `international_seo` | hreflang + HTML lang validation | No |\n\n---\n\n## API Keys\n\n**SerpAPI** (free tier: 100 searches/month) powers all live SERP features.\nSign up: [serpapi.com](https://serpapi.com/users/sign_up?source=seo-intelligence)\n\n10+ tools work with **zero API keys** — on-page analysis, technical audits, schema generation, local citations, accessibility, schema validation, and more work immediately after install.\n\nConfigure keys after installing the plugin: `/plugin config seo-intelligence`\n\n---\n\n## Architecture\n\nBuilt with a BYOK (Bring Your Own Key) model — the plugin is free. You supply only the API keys you need for the features you use.\n\n```\nseo-intelligence/\n├── .claude-plugin/plugin.json   # Plugin manifest\n├── skills/                      # 11 auto-activating skills\n├── agents/                      # 3 autonomous agents\n├── commands/                    # 8 slash commands\n├── server.py                    # MCP server entry point\n├── crawler.py                   # Page crawling & HTML parsing\n├── serp.py                      # SerpAPI integration\n├── analyzer.py                  # Gap analysis, scoring, plans\n├── technical.py                 # Technical SEO audits\n├── content.py                   # Content briefs, clustering\n├── ai_search.py                 # AEO visibility checks\n├── entity.py                    # Knowledge Graph entity validation\n├── predictive.py                # Difficulty & ROI prediction\n├── local_seo.py                 # Local SEO & 3-Pack\n├── ecommerce_seo.py             # Product schema validation\n├── accessibility_seo.py         # WCAG 2.1 AA audits\n├── media_seo.py                 # Video & voice schema\n├── international_seo.py         # hreflang validation\n└── tests/                       # 142+ pytest tests\n```\n\n---\n\n## License\n\nMIT — [Bhargav Patel](https://github.com/trentiums)\n",
  "bytes": 6706,
  "sha": "d6b98f7f73d347f5e464fc3f44bad56b5930fc4874b039678df9c4d7abd57927",
  "repo_slug": "trentiums/seo-intelligence",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_trentiums_seo_intelligence_seo_intellige_fa07d9e1/readme"
}