> ## 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.

# All other AI agents and EdgeSpark

> Set up all other AI agents with EdgeSpark using the generic skills, docs MCP path, and AGENTS.md instructions file.

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

| Agent                        | Instructions file              | Status    |
| ---------------------------- | ------------------------------ | --------- |
| [OpenCode](/agents/opencode) | `AGENTS.md`                    | Supported |
| [Amp](/agents/amp)           | `AGENTS.md`                    | Supported |
| [Devin](/agents/devin)       | `AGENTS.md`                    | Supported |
| [Aider](/agents/aider)       | `AGENTS.md` (`--read`)         | Supported |
| [Windsurf](/agents/windsurf) | `.windsurfrules` / `AGENTS.md` | Supported |
| [Cline](/agents/cline)       | `.clinerules` / `AGENTS.md`    | Supported |
| [Continue](/agents/continue) | `AGENTS.md`                    | Supported |
| Antigravity                  | `AGENTS.md`                    | Supported |
| Kiro                         | `AGENTS.md`                    | Supported |
| Any other AI agent           | `AGENTS.md`                    | Supported |

## Install generic EdgeSpark skills and docs MCP

Install the generic EdgeSpark skills package:

```bash theme={null}
npx skills add edgesparkhq/agent-skills
```

If your agent supports remote MCP servers, add the EdgeSpark docs MCP server:

```bash theme={null}
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

```bash theme={null}
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](/agents/agents-md) 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:

```bash theme={null}
aider --read AGENTS.md src/index.ts
```

### Windsurf

Copy `AGENTS.md` into `.windsurfrules`:

```bash theme={null}
cp AGENTS.md .windsurfrules
```

### Cline

Copy `AGENTS.md` into `.clinerules`:

```bash theme={null}
cp AGENTS.md .clinerules
```

### Continue

Reference `AGENTS.md` in `config.yaml`:

```yaml theme={null}
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:

```markdown theme={null}
<!-- 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](/agents/agents-md) for the full format.

## See also

<Columns cols={2}>
  <Card title="AGENTS.md reference" icon="file-lines" href="/agents/agents-md">
    Full reference for the agent instructions file and how to extend it.
  </Card>

  <Card title="Supported agents" icon="robot" href="/agents/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.
  </Card>

  <Card title="Declarative workflow" icon="database" href="/agents/declarative-workflow">
    How any agent pulls schema and writes code against generated types.
  </Card>

  <Card title="Deploy and test loop" icon="rotate" href="/agents/deploy-and-test">
    The full autonomous deploy and test workflow for any agent.
  </Card>
</Columns>
