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.

AEOForged agent skills with their phase coverage and key concepts.
SkillPhase coverageKey concepts
AEOForged Content CreationCreate, Analyze, Maintain, Workflows (all 29 tools)Tool chaining, credit costs, error handling, common mistakes
AEOForged Audit & RefreshAnalyze, 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.

Download SKILL.md

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.

Download SKILL.md

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 Config

Claude 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 Config

Installation 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

  1. Download the SKILL.md file
  2. Place it in your project at .cursor/skills/aeoforge/SKILL.md
  3. Download the MCP config and merge into .cursor/mcp.json
  4. Replace aeo_sk_YOUR_KEY_HERE with your API key from Settings → API Keys
  5. Reload Cursor window

Claude Code

  1. Download the SKILL.md file
  2. Place it in ~/.claude/skills/aeoforge/SKILL.md
  3. Download the MCP config and merge into ~/.claude/mcp_servers.json
  4. Replace aeo_sk_YOUR_KEY_HERE with your API key
  5. Restart Claude Code