$npx -y skills add yoyothesheep/claude-skills --skill aeo-seo-strategy-orchestratorRun a complete SEO/AEO strategy audit by orchestrating all three core skills, and synthesizing findings into one unified set of recommendations.
| 1 | # Full SEO/AEO Strategy Skill |
| 2 | |
| 3 | This skill is the all-in-one SEO/AEO and product strategy audit. It orchestrates the three core skills (`aeo-topic-research`, `seo-keyword-research`, and `aeo-seo-site-audit`), each of which runs its own internal multi-agent pipeline, then synthesizes all findings into a unified ranked strategy. |
| 4 | |
| 5 | ## When to Use This Skill |
| 6 | |
| 7 | Trigger this skill when the user: |
| 8 | - Asks for a "complete SEO/AEO strategy" |
| 9 | - Wants a "full audit with recommendations" |
| 10 | - Needs a "comprehensive SEO strategy" that covers everything |
| 11 | - Requests "SEO strategy including site improvements" |
| 12 | - Asks for "SEO + product/UX recommendations in one strategy" |
| 13 | - Says "audit my site and competitors, then tell me what to do" |
| 14 | |
| 15 | **This is the right skill to use when the user wants everything in one go** — research, competitive analysis, site audit, *plus* site functionality/UX improvements. |
| 16 | |
| 17 | ## Core Workflow |
| 18 | |
| 19 | Step 1. **[Coordinator]** Gather Input — domain, competitors, target URLs, niche, goals |
| 20 | Step 2. **[Coordinator]** Launch all three sub-skill agents in parallel |
| 21 | Step 3. **[Sub-skill Agents, parallel]** `aeo-topic-research` + `seo-keyword-research` + `aeo-seo-site-audit` — each runs its full internal pipeline |
| 22 | Step 4. **[Sonnet Synthesis Agent]** Receive all three skill reports, synthesize into one unified strategy with aggregated token usage |
| 23 | |
| 24 | --- |
| 25 | |
| 26 | ## Agent Architecture |
| 27 | |
| 28 | ### Coordinator (main Claude) |
| 29 | Handles Steps 1–2: gathers user input and launches all three sub-skill agents simultaneously. Collects their complete report payloads and passes them to the Sonnet Synthesis Agent. |
| 30 | |
| 31 | ### Sub-skill Agents (parallel, Step 3) |
| 32 | Three agents launched in parallel — one per skill. Each runs the full workflow of its skill, including its own internal Haiku data-extraction agents and Sonnet synthesis agent. Each produces a complete report with findings and a Token Usage Summary. |
| 33 | |
| 34 | | Agent | Skill | What it produces | |
| 35 | |-------|-------|-----------------| |
| 36 | | Topic Research Agent | `aeo-topic-research` | AI question landscape, Reddit glossary, citation analysis, content opportunities, Token Usage Summary | |
| 37 | | Keyword Research Agent | `seo-keyword-research` | Competitor analysis, keyword tiers, traffic opportunity, IA recommendations, Token Usage Summary | |
| 38 | | Site Audit Agent | `aeo-seo-site-audit` | Schema gaps, content quality issues, AEO readiness, page-by-page findings, Token Usage Summary | |
| 39 | |
| 40 | ### Sonnet Synthesis Agent |
| 41 | Receives all three complete skill reports. Extracts key findings and Token Usage Summaries from each, synthesizes a unified strategy, and produces the final report with an aggregated cost table. |
| 42 | |
| 43 | --- |
| 44 | |
| 45 | ## Inputs |
| 46 | |
| 47 | ### Required |
| 48 | - **Your domain/brand** — the site you're optimizing |
| 49 | |
| 50 | ### Recommended |
| 51 | - **Ahrefs account** — for real keyword volume, difficulty, and traffic data |
| 52 | |
| 53 | ### Optional |
| 54 | - **Target URLs** — pages to audit (typically 5–10 core pages) |
| 55 | - **Competitor domains** — 2–5 competitors to analyze |
| 56 | - **Market/niche** — to scope the research accurately |
| 57 | - **Current pain points** — conversion issues, UX friction, known problems |
| 58 | - **Business goals** — revenue, traffic, brand authority targets |
| 59 | - **Target AI engines** — which to prioritize (ChatGPT, Perplexity, Google AI Overviews, Gemini) |
| 60 | |
| 61 | --- |
| 62 | |
| 63 | ## COORDINATOR |
| 64 | |
| 65 | ## Step 1: Gather Input |
| 66 | |
| 67 | Ask the user for the inputs listed above. For each input, explain what it unlocks: |
| 68 | - Competitor domains → enables keyword gap analysis and citation benchmarking |
| 69 | - Target URLs → enables schema validation and content quality audit |
| 70 | - Ahrefs account → upgrades all volume/traffic figures from estimates to real data |
| 71 | - Market/niche → scopes Brand Radar AI question discovery accurately |
| 72 | |
| 73 | If user is unsure which competitors to analyze, ask what keywords they want to rank for — you can work backwards from there. |
| 74 | |
| 75 | --- |
| 76 | |
| 77 | ## Step 2: Launch Sub-skill Agents |
| 78 | |
| 79 | Launch all three agents simultaneously. Do not wait for one to complete before launching the others. |
| 80 | |
| 81 | ``` |
| 82 | Task( |
| 83 | subagent_type: "general-purpose", |
| 84 | model: "sonnet", |
| 85 | prompt: <full aeo-topic-research SKILL.md> + "\n\nUser inputs:\nBrand: {brand}\nWebsite: {website}\nMarket/niche: {niche}\nCompetitors: {competitors}\nAI engines: {ai_engines}\nCountry: {country}\nGoal emphasis: {goal_emphasis}" |
| 86 | ) |
| 87 | |
| 88 | Task( |
| 89 | subagent_type: "general-purpose", |
| 90 | model: "sonnet", |
| 91 | prompt: <full seo-keyword-research SKILL.md> + "\n\nUser inputs:\nWebsite: {website}\nCompetitor URLs: {competitor_urls}\nNiche: {niche}\nTarget audience: {audience}\nGeographic focus: {geo}\nGoals: {goals}" |
| 92 | ) |
| 93 | |
| 94 | Task( |
| 95 | subagent_type: "general-purpose", |
| 96 | model: "sonnet", |
| 97 | prompt: <full aeo-seo-site-audit SKILL.md> + "\n\nUser inputs:\nTarget URLs: {target_urls}\nAhrefs project ID: {ahrefs_project_id}\nBusiness context: {business_context}\nContent goals: {content_goals}" |
| 98 | ) |
| 99 | ``` |
| 100 | |
| 101 | Collect all three results. Each resul |