Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.edgespark.dev/llms.txt

Use this file to discover all available pages before exploring further.

This page covers OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and every other AI agent that uses the generic EdgeSpark skills and docs MCP path. If you are using Claude Code, Gemini CLI, OpenAI Codex, Cursor, or GitHub Copilot, use their dedicated setup pages instead. All of these agents share the same documented initialization path:
  • Install the generic EdgeSpark skills package
  • Add the EdgeSpark docs MCP server when your agent supports remote MCP
  • Run edgespark init my-app --agent your-agent-name to generate AGENTS.md

Agent overview

AgentInstructions fileStatus
OpenCodeAGENTS.mdSupported
AmpAGENTS.mdSupported
DevinAGENTS.mdSupported
AiderAGENTS.md (--read)Supported
Windsurf.windsurfrules / AGENTS.mdSupported
Cline.clinerules / AGENTS.mdSupported
ContinueAGENTS.mdSupported
AntigravityAGENTS.mdSupported
KiroAGENTS.mdSupported
Any other AI agentAGENTS.mdSupported

Install generic EdgeSpark skills and docs MCP

Install the generic EdgeSpark skills package:
npx skills add edgesparkhq/agent-skills
If your agent supports remote MCP servers, add the EdgeSpark docs MCP server:
npx add-mcp https://mcp.edgespark.dev/docs
This is the shared setup path for OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and any other AI agent that does not have a dedicated EdgeSpark plugin or extension. That means EdgeSpark still supports all of those agents today.

Generate AGENTS.md

edgespark init my-app --agent your-agent-name
# Examples: opencode, amp, devin, aider,
# windsurf, cline, continue, antigravity, kiro,
# or your own custom agent name
# These all write AGENTS.md today.
All agents in this group use AGENTS.md as the starting point. See AGENTS.md reference for what the file contains and how to extend it.

Agent-specific notes

OpenCode, Amp, Devin, Antigravity, and Kiro

These agents can work directly from AGENTS.md after you install the generic EdgeSpark skills and initialize the project with their real agent name, such as opencode, amp, devin, antigravity, or kiro.

Aider

Load AGENTS.md explicitly at startup:
aider --read AGENTS.md src/index.ts

Windsurf

Copy AGENTS.md into .windsurfrules:
cp AGENTS.md .windsurfrules

Cline

Copy AGENTS.md into .clinerules:
cp AGENTS.md .clinerules

Continue

Reference AGENTS.md in config.yaml:
context:
  - provider: file
    params:
      filepath: ./AGENTS.md

Extending AGENTS.md

Add project-specific rules below the generated content so every AGENTS.md-based agent follows them:
<!-- Generated content above — do not edit -->

## Project-specific rules

- The `posts` table is soft-deleted — always filter `WHERE deleted_at IS NULL`
- Route `/api/admin/*` requires `user.role === 'admin'` checked after platform auth
See AGENTS.md reference for the full format.

See also

AGENTS.md reference

Full reference for the agent instructions file and how to extend it.

Supported agents

Overview of Claude Code, Gemini CLI, OpenAI Codex, Cursor, GitHub Copilot, OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and all other agents.

Declarative workflow

How any agent pulls schema and writes code against generated types.

Deploy and test loop

The full autonomous deploy and test workflow for any agent.
Last modified on May 6, 2026