aeo-brand-scan

aeo-brand-scan is a skill for Claude Code from WannabDad/aeo-brand-scan. It costs 85 tokens per session (933 once invoked), scanned A, original, MIT.

A check of how AI search tools such as ChatGPT, Claude, and Perplexity describe a brand compared with its competitors. AEO and GEO mean improving how a brand appears in AI-generated answers.

In plain words
What is it for?
Give the scan a brand, competitors, and an industry category to compare their descriptions and visibility in AI answers.
Why use it?
It shows whether AI search users are likely to find and recognise a brand, without relying only on traditional search rankings.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the aeo-brand-scan plugin — 1 skill shipped together

Good fit Give the scan a brand, competitors, and an industry category to compare their descriptions and visibility in AI answers.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add WannabDad/aeo-brand-scan
Claude Code
/plugin install aeo-brand-scan

Made for: Claude Code.

Or install aeo-brand-scan, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aeo-brand-scan

README.md
[![agentmods](https://agentmods.dev/badge/skills/wannabdad/aeo-brand-scan/scan/github.svg)](https://agentmods.dev/skills/wannabdad/aeo-brand-scan/scan)
Your own site
<a href="https://agentmods.dev/skills/wannabdad/aeo-brand-scan/scan"><img src="https://agentmods.dev/badge/skills/wannabdad/aeo-brand-scan/scan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aeo-brand-scan

Your own site · 80×15
<a href="https://agentmods.dev/skills/wannabdad/aeo-brand-scan/scan"><img src="https://agentmods.dev/badge/skills/wannabdad/aeo-brand-scan/scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 933 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.00933
Opus 5 $0.00043 $0.00466
Sonnet 5 $0.00017 $0.00187
Haiku 4.5 $0.00009 $0.00093

Measured 10d ago against content hash ede848f6b4fe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

aeo-brand-scan scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/scan.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Alternatively, the script accepts the same inputs via `LITE_SCAN_ENDPOINT` env var override and a single `curl` call to `https://api.genpicked.com/api/lite-scan` — see `scripts/scan.sh` for the exact payload shape if you
skills/scan/SKILL.md · 53 lines

How it starts

The opening of the file, as written. The whole thing — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AEO Brand Scan

You help users understand how AI search engines describe their brand compared to competitors. Use this skill whenever a user asks about AEO, GEO, AI search visibility, ChatGPT/Claude/Perplexity brand mentions, share of voice in LLM answers, or "how does AI describe my brand."

Workflow

  1. In a single turn, ask the user for:

    • Their brand name
    • Their brand website (optional — enables logo display in the result)
    • 1–3 competitor names (comma-separated)
    • Competitor websites (optional — enables competitor logos; provide in same order as names)
    • The category / industry / vertical (e.g. "dental practice management software")

    Frame the website inputs as optional in one short sentence so users skip them if they don't want to type domains.

  2. Run the scan by invoking the script that lives next to this SKILL.md.

    The script is at scripts/scan.sh relative to the directory containing this SKILL.md file. Locate it (e.g. via find . -name scan.sh -path "*/aeo-brand-scan/*" 2>/dev/null | head -1, or use ${CLAUDE_PLUGIN_ROOT}/skills/scan/scripts/scan.sh if the plugin runtime sets that variable). Then invoke:

    bash <path-to-scan.sh> "$BRAND" "$COMP1,$COMP2,$COMP3" "$CATEGORY" "$BRAND_DOMAIN" "$COMP_DOMAINS_CSV"
    

    If the user didn't provide domains, omit those trailing positional arguments — the scan still works, the result just won't include logos.

    Alternatively, the script accepts the same inputs via LITE_SCAN_ENDPOINT env var override and a single curl call to https://api.genpicked.com/api/lite-scan — see scripts/scan.sh for the exact payload shape if you prefer to call the endpoint directly.

  3. Render the JSON response as a markdown report in this exact order:

    • Brand banner — if .brand_logo_url is non-null, render it as a markdown image at the top: ![Brand](URL). Skip if null.
    • Headline — render .headline as an H2.
    • Per-model table — a table showing whether the brand was mentioned and at what list position in Claude vs ChatGPT.
    • Competitor mentions — for each competitor, render the row as ![](logo_url) **Name** — N mentions, position X if .competitors[].logo_url is non-null; otherwise just **Name** — N mentions, position X.
    • What AI actually says about you — render .what_ai_says.claude_excerpt and .what_ai_says.chatgpt_excerpt as blockquotes labeled "Claude says:" and "ChatGPT says:".
    • Citation depth — render .scorecard.citations.preview_message verbatim.
    • Recommendations — render .recommendations as a bulleted list.
    • Interpretation — render .interpretation verbatim.
    • 🔒 What this free scan is missing — render .missing_from_free as a fenced callout, each item on its own line, preserving the lock emoji.
    • Trend — render .trend_hook verbatim.
    • CTA — render .cta.headline as a bold callout, then .cta.url as a markdown link reading "Run the full battleground →".

Read the full file on GitHub · 53 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 53 lines · 85 tokens per session scan A ede848f6b4fe

Subscribe to this mod's changes

aeo-brand-scan is a skill published in the GitHub repository WannabDad/aeo-brand-scan (3 stars, last pushed 4mo ago), licensed MIT. It adds 85 tokens to every session and 933 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

geo-platform-optimizer

Platform-specific AI search optimization — audit and optimize for Google AI Overviews, ChatGPT, Perplexity, Gemini, and Bing Copilot individually.

TheSmokeDev/geo-skills · 34 tokens

geo-report

Generate a professional, client-facing GEO report combining all audit results into a single deliverable with scores, findings, and prioritized actions.

TheSmokeDev/geo-skills · 28 tokens

geo-schema

Schema.org structured data audit and generation for rich results and entity clarity — detect, validate, and generate JSON-LD markup. Schema is NOT an AI-citation lever (Ahrefs controlled study, May 2026); it earns rich results and keeps entity data unambiguous.

TheSmokeDev/geo-skills · 59 tokens

geo-technical

Technical SEO audit with GEO-specific checks — crawlability, indexability, security, performance, SSR, and AI crawler access.

TheSmokeDev/geo-skills · 28 tokens

geo-ai-index-access

Index and access layer audit for AI search -- the hard prerequisites. Verifies Bing indexation (the ChatGPT entry ticket), audits robots.txt and CDN-level AI-crawler access, removes legacy nosnippet/max-snippet preview restrictions, and confirms key content is server-rendered. Use before any content-level GEO work, or…

TheSmokeDev/geo-skills · 82 tokens

geo-fanout

Query fan-out and topic-cluster optimization for AI search. Maps a topic's full sub-query space, audits cluster coverage against what engines actually fan out into, and engineers titles and URL slugs for semantic match with fan-out queries. Use when a site needs to win citations beyond the organic top 10 or cover a…

TheSmokeDev/geo-skills · 78 tokens