Agent Skills
Downloadable skill files and MCP configurations that teach your AI agent how to use AEOForged effectively — no prompting required.
Last updated
What are skills?
Skills are reference guides that teach AI agents proven techniques and tool usage patterns. When an agent loads a skill, it knows when and how to use AEOForged tools effectively — the correct order to chain them, how to interpret results, and which mistakes to avoid.
Available Skills
AEOForged publishes two downloadable skills: a broad Content Creation skill covering all 25+ tools across the create, analyze, maintain, and workflow phases, and a focused Audit & Refresh skill for evaluating and updating existing pages.
| Skill | Phase coverage | Key concepts |
|---|---|---|
| AEOForged Content Creation | Create, Analyze, Maintain, Workflows (all 29 tools) | Tool chaining, credit costs, error handling, common mistakes |
| AEOForged Audit & Refresh | Analyze, Maintain (audit / compare / refresh) | targetKeyword usage, marginOfVictory, confidenceLevel |
AEOForged Content Creation
Complete 25-tool reference covering the Create, Analyze, Maintain, and Workflows phases. Tool chaining patterns, credit costs, error handling, and common mistakes.
AEOForged Audit & Refresh
Focused skill for content evaluation — audit URLs, compare articles head-to-head, and generate refresh plans. When to use targetKeyword, reading marginOfVictory and confidenceLevel.
MCP Configuration Files
The MCP configuration connects your agent to AEOForged over the Model Context Protocol by pointing it at https://aeoforged.com/api/mcp/mcp with your Bearer API key. Use the Cursor config for .cursor/mcp.json and the Claude Code config for ~/.claude/mcp_servers.json.
Cursor MCP Config
Drop into .cursor/mcp.json to connect your Cursor agent.
{
"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 for Claude Code.
{
"aeoforge": {
"type": "url",
"url": "https://aeoforged.com/api/mcp/mcp",
"headers": {
"Authorization": "Bearer aeo_sk_YOUR_KEY_HERE"
}
}
}Download ConfigInstallation Instructions
Installing a skill takes five steps: download the SKILL.md, place it in your agent's skills directory, merge the MCP config, replace the placeholder with your API key, and reload the editor. The exact paths differ between Cursor and Claude Code below.
Cursor
- Download the SKILL.md file
- Place it in your project at
.cursor/skills/aeoforge/SKILL.md - Download the MCP config and merge into
.cursor/mcp.json - Replace
aeo_sk_YOUR_KEY_HEREwith your API key from Settings → API Keys - Reload Cursor window
Claude Code
- Download the SKILL.md file
- Place it in
~/.claude/skills/aeoforge/SKILL.md - Download the MCP config and merge into
~/.claude/mcp_servers.json - Replace
aeo_sk_YOUR_KEY_HEREwith your API key - Restart Claude Code