$npx -y skills add zubair-trabzada/geo-seo-claude --skill geoGEO-first SEO analysis tool. Optimizes websites for AI-powered search engines (ChatGPT, Claude, Perplexity, Gemini, Google AI Overviews) while maintaining traditional SEO foundations. Performs full GEO audits, citability scoring, AI crawler analysis, llms.txt generation, brand me
| 1 | # GEO-SEO Analysis Tool — Claude Code Skill (February 2026) |
| 2 | |
| 3 | > **Philosophy:** GEO-first, SEO-supported. AI search is eating traditional search. |
| 4 | > This tool optimizes for where traffic is going, not where it was. |
| 5 | |
| 6 | --- |
| 7 | |
| 8 | ## Quick Reference |
| 9 | |
| 10 | | Command | What It Does | |
| 11 | |---------|-------------| |
| 12 | | `/geo audit <url>` | Full GEO + SEO audit with parallel subagents | |
| 13 | | `/geo page <url>` | Deep single-page GEO analysis | |
| 14 | | `/geo citability <url>` | Score content for AI citation readiness | |
| 15 | | `/geo crawlers <url>` | Check AI crawler access (robots.txt analysis) | |
| 16 | | `/geo llmstxt <url>` | Analyze or generate llms.txt file | |
| 17 | | `/geo brands <url>` | Scan brand mentions across AI-cited platforms | |
| 18 | | `/geo platforms <url>` | Platform-specific optimization (ChatGPT, Perplexity, Google AIO) | |
| 19 | | `/geo schema <url>` | Detect, validate, and generate structured data | |
| 20 | | `/geo technical <url>` | Traditional technical SEO audit | |
| 21 | | `/geo content <url>` | Content quality and E-E-A-T assessment | |
| 22 | | `/geo report <url>` | Generate client-ready GEO deliverable | |
| 23 | | `/geo report-pdf <url>` | Generate professional PDF report with charts and scores | |
| 24 | | `/geo quick <url>` | 60-second GEO visibility snapshot | |
| 25 | | `/geo prospect <cmd>` | CRM-lite: manage prospects through the sales pipeline | |
| 26 | | `/geo proposal <domain>` | Auto-generate client proposal from audit data | |
| 27 | | `/geo compare <domain>` | Monthly delta report: show score improvements to client | |
| 28 | | `/geo update` | Pull latest GEO skill updates from upstream | |
| 29 | |
| 30 | --- |
| 31 | |
| 32 | ## Market Context (Why GEO Matters) |
| 33 | |
| 34 | | Metric | Value | Source | |
| 35 | |--------|-------|--------| |
| 36 | | GEO services market (2025) | $850M-$886M | Yahoo Finance / Superlines | |
| 37 | | Projected GEO market (2031) | $7.3B (34% CAGR) | Industry analysts | |
| 38 | | AI-referred sessions growth | +527% (Jan-May 2025) | SparkToro | |
| 39 | | AI traffic conversion vs organic | 4.4x higher | Industry data | |
| 40 | | Google AI Overviews reach | 1.5B users/month, 200+ countries | Google | |
| 41 | | ChatGPT weekly active users | 900M+ | OpenAI | |
| 42 | | Perplexity monthly queries | 500M+ | Perplexity | |
| 43 | | Gartner: search traffic drop by 2028 | -50% | Gartner | |
| 44 | | Marketers investing in GEO | Only 23% | Industry surveys | |
| 45 | | Brand mentions vs backlinks for AI | 3x stronger correlation | Ahrefs (Dec 2025) | |
| 46 | |
| 47 | --- |
| 48 | |
| 49 | ## Orchestration Logic |
| 50 | |
| 51 | ### Full Audit (`/geo audit <url>`) |
| 52 | |
| 53 | **Phase 1: Discovery (Sequential)** |
| 54 | 1. Fetch homepage HTML (curl or WebFetch) |
| 55 | 2. Detect business type (SaaS, Local, E-commerce, Publisher, Agency, Other) |
| 56 | 3. Extract key pages from sitemap.xml or internal links (up to 50 pages) |
| 57 | |
| 58 | **Phase 2: Parallel Analysis (Delegate to Subagents)** |
| 59 | Launch these 5 subagents simultaneously: |
| 60 | |
| 61 | | Subagent | File | Responsibility | |
| 62 | |----------|------|---------------| |
| 63 | | geo-ai-visibility | `agents/geo-ai-visibility.md` | GEO audit, citability, AI crawlers, llms.txt, brand mentions | |
| 64 | | geo-platform-analysis | `agents/geo-platform-analysis.md` | Platform-specific optimization (ChatGPT, Perplexity, Google AIO) | |
| 65 | | geo-technical | `agents/geo-technical.md` | Technical SEO, Core Web Vitals, crawlability, indexability | |
| 66 | | geo-content | `agents/geo-content.md` | Content quality, E-E-A-T, readability, AI content detection | |
| 67 | | geo-schema | `agents/geo-schema.md` | Schema markup detection, validation, generation | |
| 68 | |
| 69 | **Phase 3: Synthesis (Sequential)** |
| 70 | 1. Collect all subagent reports |
| 71 | 2. Calculate composite GEO Score (0-100) |
| 72 | 3. Generate prioritized action plan |
| 73 | 4. Output client-ready report |
| 74 | |
| 75 | ### Scoring Methodology |
| 76 | |
| 77 | | Category | Weight | Measured By | |
| 78 | |----------|--------|-------------| |
| 79 | | AI Citability & Visibility | 25% | Passage scoring, answer block quality, AI crawler access | |
| 80 | | Brand Authority Signals | 20% | Mentions on Reddit, YouTube, Wikipedia, LinkedIn; entity presence | |
| 81 | | Content Quality & E-E-A-T | 20% | Expertise signals, original data, author credentials | |
| 82 | | Technical Foundations | 15% | SSR, Core Web Vitals, crawlability, mobile, security | |
| 83 | | Structured Data | 10% | Schema completeness, JSON-LD validation, rich result eligibility | |
| 84 | | Platform Optimization | 10% | Platform-specific readiness (Google AIO, ChatGPT, Perplexity) | |
| 85 | |
| 86 | --- |
| 87 | |
| 88 | ## Business Type Detection |
| 89 | |
| 90 | Analyze homepage for patterns: |
| 91 | |
| 92 | | Type | Signals | |
| 93 | |------|---------| |
| 94 | | **SaaS** | Pricing page, "Sign up", "Free trial", "/app", "/dashboard", AP |