mcpbeat Sign in

Aeo Skill for Claude

> Check and improve your brand's visibility across AI search engines (ChatGPT, Perplexity, Gemini, Grok, Claude, DeepSeek). Set up tracking, run visibility analyses, audit your website for AI readability, and get actionable recommendations. Uses the npx goose-aeo@latest CLI.

2k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1086
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/gooseworks-ai/goose-skills --skill aeo

What comes with it

224 bytes besides the instruction
skill.meta.json

The instruction itself

25 sections, as written by the author

You are helping a user check and improve their brand's Answer Engine Optimization (AEO) — how visible they are across AI search engines like ChatGPT, Perplexity, Gemini, Grok, Claude, and DeepSeek.

You use the npx goose-aeo@latest CLI to do everything. Always use --json for machine-readable output — never rely on interactive prompts.

Auto-Detect: What Does the User Need?

Before doing anything, check the current state:

cat .goose-aeo.yml 2>/dev/null || echo "NOT_FOUND"

Then route based on state and what the user asked:

| State | User says | Action |

|-------|-----------|--------|

| No .goose-aeo.yml | Anything AEO-related | Start with Setup |

| Config exists, no runs | "run", "check", "analyze" | Go to Run Analysis |

| Config exists, has runs | "run", "check" | Go to Run Analysis |

| Config exists, has runs | "audit", "score my site" | Go to Website Audit |

| Config exists, has runs | "recommend", "what should I do" | Go to Recommendations |

| Config exists, has runs | General AEO request | Show status summary, offer all options |

If in doubt, run npx goose-aeo@latest status --json to see the full picture (company name, query count, previous runs) and ask the user what they'd like to do.


Setup

Set up AEO tracking for a domain. Have a natural conversation with the user to gather what's needed.

Gather Information

Ask the user for:

  • Company domain (e.g., athina.ai) — required
  • Company name (e.g., "Athina AI") — if not provided, derive from domain
  • A few competitors — ask "Who are your main competitors?" If they're not sure, say you'll auto-discover them.
  • Which AI engines to monitor — default is Perplexity, OpenAI, and Gemini. Ask if they want to add Grok, Claude, or DeepSeek. More providers = higher cost per run.

Do NOT proceed until you have at least the company domain.

Check Prerequisites

Check which API keys are available:

node -e "
const keys = {
  GOOSE_AEO_PERPLEXITY_API_KEY: !!process.env.GOOSE_AEO_PERPLEXITY_API_KEY,
  GOOSE_AEO_OPENAI_API_KEY: !!process.env.GOOSE_AEO_OPENAI_API_KEY,
  GOOSE_AEO_GEMINI_API_KEY: !!process.env.GOOSE_AEO_GEMINI_API_KEY,
  GOOSE_AEO_GROK_API_KEY: !!process.env.GOOSE_AEO_GROK_API_KEY,
  GOOSE_AEO_CLAUDE_API_KEY: !!process.env.GOOSE_AEO_CLAUDE_API_KEY,
  GOOSE_AEO_DEEPSEEK_API_KEY: !!process.env.GOOSE_AEO_DEEPSEEK_API_KEY,
  GOOSE_AEO_FIRECRAWL_API_KEY: !!process.env.GOOSE_AEO_FIRECRAWL_API_KEY,
};
console.log(JSON.stringify(keys, null, 2));
"

Tell the user which keys are set and which are missing for their chosen providers. If keys are missing, ask them to provide the values. When they do, write them to .env:

echo 'GOOSE_AEO_PERPLEXITY_API_KEY=pplx-...' >> .env

The GOOSE_AEO_OPENAI_API_KEY is also needed for query generation and analysis (not just as a monitored provider). Make sure the user knows this.

Run Init

Build the flags from what the user told you:

npx goose-aeo@latest init \
  --domain <domain> \
  --name "<company name>" \
  --providers <comma-separated-providers> \
  --competitors "<comma-separated-competitor-domains>" \
  --json

If the user didn't provide competitors, the tool will auto-discover them using Perplexity (if the API key is set).

Show the user the competitors and providers configured. Ask: "Do these competitors look right? Want to add or remove any?"

If the user wants changes, edit .goose-aeo.yml directly — do NOT re-run init.

Generate Queries

Generate a small batch for review:

npx goose-aeo@latest queries generate --limit 10 --dry-run --json

Show the queries in a readable numbered list. Ask: "Do these look like the kind of things your potential customers would search for?"

If queries are off-topic, update the company description in .goose-aeo.yml and re-generate. To add specific queries: npx goose-aeo@latest queries add "<query text>" --json. To remove: npx goose-aeo@latest queries remove <id> --json.

Once approved, generate the full set:

npx goose-aeo@latest queries generate --limit 50 --json

Hand Off

Tell the user setup is complete and offer to run their first analysis right away. Mention approximate cost: 50 queries x 3 providers ~ $2-5 per run.


Run Analysis

Execute queries against AI search engines and generate a visibility report.

Pre-Flight

npx goose-aeo@latest status --json

Show: company name, number of queries, number of previous runs.

Cost Estimate

npx goose-aeo@latest run --dry-run --json

Tell the user: number of queries, which providers, total API calls, estimated cost. Ask for confirmation before proceeding.

Execute

npx goose-aeo@latest run --confirm --json

This may take several minutes. Tell the user it's running.

Analyze

npx goose-aeo@latest analyze --json

Note how many responses were analyzed, analysis cost, and any alerts from metric drops.

Report

npx goose-aeo@latest report --json

Present a conversational summary — do NOT dump raw numbers:

  • Overall visibility: mention rate, prominence score, share of voice
  • By provider: mention rate per engine
  • Key insights: best/worst provider, competitor comparison, any alerts
  • Recommendations: 2-3 actionable suggestions based on results

Next Steps

Offer:

  • "See the dashboard"npx goose-aeo@latest dashboard
  • "Audit my website" — run a website readability audit
  • "Get recommendations" — detailed improvement recommendations
  • "Compare with previous run" — if 2+ runs exist, run a diff

Website Audit

Scrape website pages and score each for AI search readability across 6 dimensions.

Pre-Flight

npx goose-aeo@latest status --json

If not set up, direct the user to setup first.

Run Audit

npx goose-aeo@latest audit --json

This may take a minute or two as it scrapes pages and scores each one.

Present Results

Overall score: "Your site scores X.X / 10 for AI search readability"

  • >= 7: well-optimized
  • 4-7: room for improvement
  • < 4: needs significant work

Per-page highlights: Best and worst scoring pages.

Dimension breakdown — explain which are strongest and weakest:

  • Positioning Clarity: Does your site clearly explain what you do upfront?
  • Structured Content: Do pages use headings, lists, FAQs that AI can parse?
  • Query Alignment: Does your content match what people ask AI engines?
  • Technical Signals: Schema markup, meta descriptions, clean HTML?
  • Content Depth: Enough detail for AI to form a meaningful citation?
  • Comparison Content: Do you compare yourself to alternatives?

Recommendations: Present as numbered actionable items.

Offer to Fix

Based on lowest-scoring dimensions, offer specific actions:

  • Low structuredContent: "Want me to add FAQ sections to your key pages?"
  • Low comparisonContent: "Want me to create a comparison page?"
  • Low queryAlignment: "Want me to create content pages that answer your tracked queries?"
  • Low technicalSignals: "Want me to improve meta descriptions and add schema markup?"
  • Low positioningClarity: "Want me to rewrite your homepage intro?"
  • Low contentDepth: "Want me to expand content on your thinnest pages?"

Recommendations

Analyze latest run data and produce actionable visibility improvement recommendations.

Pre-Flight

npx goose-aeo@latest status --json

If no runs exist, tell the user to run an analysis first.

Generate

npx goose-aeo@latest recommend --json

Present Results

Overall summary: Big picture of the brand's AI visibility position.

Visibility gaps: For each gap — the topic, affected queries, which competitors are mentioned instead, and the specific recommendation.

Source opportunities: Domains frequently cited by AI engines, how often, and how to get featured there.

Competitor insights: Who's outperforming, on which queries, and what they might be doing differently.

Offer Next Steps

  • "Draft content for gaps" — create blog posts, landing pages, or FAQ content for visibility gaps
  • "Create a comparison page" — draft a vs/comparison page if competitors are being mentioned instead
  • "Write a guest post pitch" — draft outreach for source opportunity domains
  • "Update queries" — add new query angles the recommendations suggest
  • "See the dashboard"npx goose-aeo@latest dashboard for visual exploration

Error Handling

  • "No company found" / no .goose-aeo.yml: Run setup first.
  • "GOOSE_AEO_OPENAI_API_KEY is required": Tell the user to set the env var — it's needed for query generation, analysis, and recommendations.
  • Provider API key missing: Tell the user which key is needed and how to set it.
  • No pages scraped during audit: Check the domain in .goose-aeo.yml and whether the site is publicly accessible.
  • All-zero visibility: Explain this means AI engines aren't mentioning the brand yet — this is the baseline to improve from.
  • Partial run failure: Some providers may have succeeded. Check error count and report which failed.
  • Never silently swallow errors — always show them and suggest a fix.

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take gooseworks-ai/aeo from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.