Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/hellowalt/aeo-radar/claude-mdgit clone --depth 1 https://github.com/hellowalt/aeo-radarWrote 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.
[](https://agentmods.dev/instructions/hellowalt/aeo-radar/claude-md)<a href="https://agentmods.dev/instructions/hellowalt/aeo-radar/claude-md"><img src="https://agentmods.dev/badge/instructions/hellowalt/aeo-radar/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01181 | $0.01181 |
| Opus 5 | $0.00590 | $0.00590 |
| Sonnet 5 | $0.00236 | $0.00236 |
| Haiku 4.5 | $0.00118 | $0.00118 |
Grade A, and why
aeo-radar CLAUDE.md 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 4d ago.
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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- **CLI:** TypeScript + tsx, Playwright (stealth plugin), Claude CLI via `execSync` How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — Dev playbook for AEO Radar
Context for Claude Code (or any LLM assistant) working on this repo. Keep it short; if the code answers the question, don't repeat the answer here.
Tech stack
- CLI: TypeScript + tsx, Playwright (stealth plugin), Claude CLI via
execSync - DB: SQLite via Prisma 7 (file at
data/aeo.db) - Dashboard: Next.js 16 + React 19 + Ant Design 6 + Recharts (port 3003)
- Package manager: npm
Common commands
# Crawl (defaults to headless)
npx tsx src/cli.ts run # ChatGPT
npx tsx src/cli.ts run chatgpt --visible # debug with visible browser
# Seeding & analysis
npx tsx src/cli.ts seed # generate prompts from brand.ts
npx tsx src/cli.ts analyze <runId> # re-run analysis on a past run
# Database
npm run db:push # apply schema changes to SQLite
# Dashboard
cd web && npm run dev # http://localhost:3003
Source layout
src/
├── cli.ts # Entry point (run / analyze / seed)
├── types.ts # LLM_PLATFORMS + shared types
├── config/
│ └── brand.ts # ← single source of truth for brand/keywords
├── crawlers/
│ ├── base.ts # Stealth + challenge detection + persistent profile
│ └── chatgpt.ts # DOM selectors: #prompt-textarea, stop-button
├── pipeline/
│ ├── runner.ts # Orchestrates prompts × platforms × analysis
│ └── analyzer.ts # Claude CLI → structured JSON
├── prompts/
│ └── generator.ts # Seeds keywords/prompts from brand.ts
└── db/
└── prisma.ts # Prisma singleton
prompts/
├── generator-template.md # Claude template for prompt generation
└── analysis-template.md # Claude template for answer analysis
web/ # Next.js dashboard
├── src/app/ # Pages + API routes
├── src/components/ # KPI cards, charts, tables, settings
└── src/lib/theme.ts # Grayscale tokens, AntD ConfigProvider
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.
- 4d ago First seen · 96 lines · 1,181 tokens per session scan A 5f124d59ff52
aeo-radar CLAUDE.md is an instructions file published in the GitHub repository hellowalt/aeo-radar (25 stars, last pushed 2mo ago), licensed MIT. It adds 1,181 tokens to every session, about $0.0059 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
claude-rank CLAUDE.md
Instructions for Houseofmvps/claude-rank, covering claude-rank, project overview, architecture, tech stack and conventions.
canonry AGENTS.md
AGENTS.md instructions for Canonry/canonry, covering agents.md, project overview, deployment posture (critical), what this means in practice and operational guidance.
canonry CLAUDE.md
Claude Code instructions for Canonry/canonry, covering ui design system, layout, color & theme, components & patterns and sidebar.
refd AGENTS.md
AGENTS.md instructions for emaitchess/refd, covering agents.md, what this is, monorepo layout, code style and commands.
ecom-agent CLAUDE.md
Claude Code instructions for krisdiallo/ecom-agent, covering claude.md — operating doctrine for this business, the affirmation, what that actually meant, in practice, operating rules and the one clause i did not write into this file.
geoskills CLAUDE.md
Instructions for Cognitic-Labs/geoskills, covering geoskills — ai agent guide, repository overview, directory structure, skill internal structure and skill.md conventions.