Install
openclaw skills install aeo-systemAnswer Engine Optimization — get AI assistants to recommend your brand. Run AEO audits, build Answer Intent Maps, track AI recommendation positions, and main...
openclaw skills install aeo-systemGet AI assistants — ChatGPT, Perplexity, Claude, Gemini — to recommend your brand when people ask purchase-intent questions.
AEO is the discipline of optimizing for AI-powered answer engines the same way SEO optimizes for search engines. When someone asks Perplexity "what's the best magnesium supplement for sleep?" — AEO determines whether your brand gets named.
This skill gives an OpenClaw agent the ability to:
| Layer | Name | What It Is | Priority |
|---|---|---|---|
| 1 | Answer Intent Map | Spreadsheet of all purchase-intent queries + which brands AI recommends | Foundation |
| 2 | Answer Hub | A long-form guide page that answers every key question in your category | High |
| 3 | Brand-Facts Page | Human-readable brand facts page (neutral, factual, cite-able) | High |
| 4 | brand-facts.json | Machine-readable brand data at /.well-known/brand-facts.json | Medium |
| 5 | Schema Markup | Product, FAQ, and Organization structured data | Medium |
| 6 | Citation Network | Getting listed on the sources AI models actually cite | High |
| 7 | GPT Shopping | Google Merchant Center + review feed for AI shopping results | High |
Required:
PERPLEXITY_API_KEY — enables direct API queries (get free at perplexity.ai/settings/api)answer-intent-map.js script)Optional:
OPENAI_API_KEY — enables ChatGPT query automationBRAVE_API_KEY — enables web searches for infrastructure checksWithout API keys: The skill runs in "manual-assist" mode — generates the queries, provides a blank log template, and analyzes results you paste in.
Trigger: "Run an AEO audit for [brand URL]"
Steps:
Fetch and analyze the brand's website for AEO infrastructure:
/guides/ or similar long-form page)/brand-facts)/.well-known/brand-facts.json)Score each of the 7 layers (0–3 scale):
Generate a gap analysis report with:
Output: Markdown report saved as aeo-audit-[brand]-[date].md
Trigger: "Build an Answer Intent Map for [category]" or run scripts/answer-intent-map.js
Steps:
Generate query list from four types:
For each query, query available platforms:
Parse responses to extract:
Write results to JSON data file + Markdown summary report
Output: answer-intent-map-[category]-[date].json + .md summary
Run the script:
node scripts/answer-intent-map.js \
--category "magnesium supplements" \
--brand "MyBrand" \
--queries 20
# Or with a config file:
node scripts/answer-intent-map.js --config ./aeo-config.json
Trigger: "Run weekly AEO maintenance" or scheduled cron
Steps:
brand-facts.json for stale lastUpdated timestampOutput: aeo-weekly-report-[date].md
Use the checklist: templates/weekly-maintenance-checklist.md
Trigger: "Analyze AEO citations for [category]"
Steps:
Output: Citation analysis report with target sites ranked by citation frequency
Trigger: "Build AEO infrastructure for [brand]" or "Set up brand-facts.json"
Steps:
aeo-config.json)brand-facts.json → templates/brand-facts.json (fill placeholders)templates/answer-hub-template.mdCreate aeo-config.json in your working directory:
{
"brandName": "Your Brand Name",
"brandUrl": "https://yourbrand.com",
"category": "Magnesium Supplements",
"priorityQueries": [
"best magnesium supplement for sleep",
"best magnesium glycinate supplement",
"magnesium supplement for anxiety"
],
"competitors": [
"Competitor Brand A",
"Competitor Brand B",
"Competitor Brand C"
],
"answerHubUrl": "https://yourbrand.com/guides/best-magnesium-supplements-2026",
"brandFactsJsonUrl": "https://yourbrand.com/.well-known/brand-facts.json"
}
| File | Description |
|---|---|
aeo-audit-[brand]-[date].md | Infrastructure audit report |
answer-intent-map-[category]-[date].json | Raw AI query results |
answer-intent-map-[category]-[date].md | Human-readable competitive summary |
aeo-weekly-report-[date].md | Weekly maintenance report |
citation-analysis-[category]-[date].md | Citation network analysis |
# Full infrastructure audit
"Run an AEO audit for mybrand.com"
# Build competitive intelligence
"Build an Answer Intent Map for the magnesium supplement category"
# Quick position check
"Check if mybrand.com is being recommended by Perplexity for 'best magnesium for sleep'"
# Weekly maintenance
"Run the weekly AEO maintenance protocol for my brand"
# Citation analysis
"Which sources does Perplexity cite most for collagen supplement recommendations?"
# Generate brand-facts.json
"Generate the brand-facts.json template for [brand details]"
# Scoring review
"Score my AEO infrastructure for mybrand.com on all 7 layers"
| Platform | Access | Notes |
|---|---|---|
| Perplexity | API (structured, reliable) | Returns citations directly |
| ChatGPT | API via OpenAI | Text parsing required for brand extraction |
| Claude | Browser required | Generate queries + blank log; agent uses browser |
| Gemini | Browser required | Generate queries + blank log; agent uses browser |
For Claude/Gemini: the skill generates the query list and a blank log template; use the browser tool to collect results.
Rate limits: Perplexity free tier ≈ 20 requests/minute. For 50+ queries, add --delay 3000 to the script.
aeo-system/
├── SKILL.md ← This file
├── README.md ← Human-readable overview
├── scripts/
│ └── answer-intent-map.js ← Core query automation script
└── templates/
├── answer-hub-template.md ← Answer Hub page template
├── brand-facts.json ← Machine-readable brand data template
└── weekly-maintenance-checklist.md ← 90-minute weekly protocol
AEO System v1.0 — February 2026 A product by Carson Jarvis (@CarsonJarvisAI)