Agent Skills
Downloadable skill files and MCP configurations that teach your AI agent how to use AEOForged — from free audit signup through Fix Programme, content loops, and authority work.
Updated 2026-08-08 · Also see Agent Integration, Ask your agent, and /start.
Last updated
What are skills?
Skills are self-contained guides your agent loads so it knows which APIs to call, in what order, and which human gates it must never bypass. Install the skill that matches the job; then connect MCP (or call REST) with an account key (aeo_sk_) or a workspace handoff token (aeo_ho_).
Which skill when?
- No key yet — free audit →
aeoforge-free-audit(or paste the prompt from /for-agents) - Paid Fix Programme →
aeoforge-fix+ handoff token from the room's Connect your agent tab - Ongoing retainer / account key →
aeoforge-selfserve— bootstrap and follownext_task - Repo AI-readiness →
aeoforge-ai-ready - Articles / audits / authority → content-creation, audit-refresh, authority, or agency-workflow
Live catalog and credit costs: GET /api/v1/onboard. Packages: /pricing.
Available Skills
All skills are served from https://aeoforged.com/skills/<slug>/SKILL.md. Self-serve, Fix, and Authority stubs keep proprietary loops in authenticated task packs — the public file is the entry point only.
| Skill | Phase coverage | Key concepts |
|---|---|---|
| Free Audit | Signup → Layer 1 | Funnel signup, platform Layer 1, wait_payment |
| Self-Serve | Ongoing after a package | next_task, active_task, authed task packs, score bar |
| Fix Programme | Paid fix window | Handoff bootstrap, verify-page, craft over score |
| Content Creation | Create · Analyze · Maintain | Verbs, grounding gate, craft over score, tool chaining |
| Audit & Refresh | Analyze · Maintain | diagnose, audit, compare, freshness improve |
| Authority | Authority · machine access | next_task, authority packs, machine_access |
| AI-Ready | Repo · site readiness | crawlability, llms.txt, schema, agent-ready |
| Agency Workflow | Client articles | Profile → research → write → score ≥80 → schema |
Free Audit
Agent-owned signup from URL + email. The platform queues Layer 1. Stop at the locked report. No payment, no fixes.
Self-Serve
Ongoing work with an account key (aeo_sk_) or handoff token. Bootstrap, follow next_task, fetch authenticated task packs. Article loops, authority, visibility, and retainer deliverables.
Fix Programme
Apply Fix Programme work from a room handoff token. Follow next_task / fix_programme_contract; never set status verified yourself — only verify-page may.
Content Creation
Full 30-tool reference: consolidated verbs (create, improve, package, diagnose), research → score loops, credit costs, and common mistakes.
Audit & Refresh
Evaluate and update existing pages — site diagnose, single-URL audit, head-to-head compare (including API fields like marginOfVictory), and freshness plans.
Authority
Entry stub for authority and machine-access work. Bootstrap, follow next_task, fetch authority_baseline / authority_distribution / machine_access packs.
AI-Ready
Make a site AI-readable and agent-operable from the repo: diagnose → fix in code → llms.txt / JSON-LD → re-verify. Optional grounded content and distribution kits.
Agency Workflow
Repeatable article production for agency clients: load client profile, research, draft in the IDE, score to 80+, schema, verify. Craft over score on live pages.
MCP Configuration Files
Point your agent at https://aeoforged.com/api/mcp/mcp with a Bearer account key. Use the Cursor config for .cursor/mcp.json and the Claude Code config for ~/.claude/mcp_servers.json. Handoff tokens work the same way — paste aeo_ho_… instead of aeo_sk_….
Cursor MCP Config
Drop into .cursor/mcp.json.
{
"mcpServers": {
"aeoforge": {
"url": "https://aeoforged.com/api/mcp/mcp",
"headers": {
"Authorization": "Bearer aeo_sk_YOUR_KEY_HERE"
}
}
}
}Download ConfigClaude Code MCP Config
Add to ~/.claude/mcp_servers.json.
{
"mcpServers": {
"aeoforge": {
"type": "http",
"url": "https://aeoforged.com/api/mcp/mcp",
"headers": {
"Authorization": "Bearer aeo_sk_YOUR_KEY_HERE"
}
}
}
}Download ConfigUsing VS Code, Windsurf, Claude Desktop, or another client? Their config shapes differ, and the wrong one can load nothing without showing an error — see every editor's exact config.
Installation Instructions
Download the SKILL.md for the job you need, place it under a folder named after the skill slug, merge the MCP config, replace the placeholder key, and reload. Example slug: aeoforge-free-audit.
Cursor
- Download the SKILL.md for the skill you need
- Place it at
.cursor/skills/<slug>/SKILL.md(e.g..cursor/skills/aeoforge-selfserve/SKILL.md) - Download the MCP config and merge into
.cursor/mcp.json - Replace
aeo_sk_YOUR_KEY_HEREwith your API key (Settings → API Keys) or a handoff token when working a scoped Project - Reload the Cursor window
Claude Code
- Download the SKILL.md for the skill you need
- Place it at
~/.claude/skills/<slug>/SKILL.md - Download the MCP config and merge into
~/.claude/mcp_servers.json - Replace
aeo_sk_YOUR_KEY_HEREwith your API key or handoff token - Restart Claude Code