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.

EdgeSpark supports all AI agents. That support currently shows up through six public setup paths:
  • Claude Code
  • OpenAI Codex
  • Gemini CLI
  • Cursor
  • GitHub Copilot
  • all other AI agents
The first five are first-class plugin or extension paths. Every other AI agent is still supported through the generic EdgeSpark skills + docs MCP + AGENTS.md path. edgespark init now requires --agent <name> in every documented example.

Start EdgeSpark tasks

After setup, use the matching task-entry command for your agent:
AgentCommand
Claude Code/edgespark:building-edgespark-apps
OpenAI Codex$edgespark:building-edgespark-apps
Gemini CLI/edgespark:building-edgespark-apps
Cursor/building-edgespark-apps
GitHub Copilot/edgespark:building-edgespark-apps

Support matrix

AgentStatusInstructions fileSetup path
Claude CodeSupportedCLAUDE.mdclaude plugin marketplace add edgesparkhq/claude-plugins then claude plugin install edgespark@edgespark-claude-plugins
Gemini CLISupportedGEMINI.mdgemini extensions install https://github.com/edgesparkhq/gemini-extensions
OpenAI CodexSupportedAGENTS.mdOpen codex and install the EdgeSpark Codex plugin from the latest release zip
CursorSupportedAGENTS.mdRun /add-plugin edgespark@https://github.com/edgesparkhq/cursor-plugins in Cursor Agent chat
GitHub CopilotSupportedAGENTS.mdcopilot plugin marketplace add edgesparkhq/copilot-plugins then copilot plugin install edgespark@edgespark-copilot-plugins
OpenCodeSupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
AmpSupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
DevinSupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
AiderSupportedAGENTS.md (--read)npx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
WindsurfSupportedAGENTS.md / .windsurfrulesnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
ClineSupportedAGENTS.md / .clinerulesnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
ContinueSupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
AntigravitySupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
KiroSupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs
All other AI agentsSupportedAGENTS.mdnpx skills add edgesparkhq/agent-skills and npx add-mcp https://mcp.edgespark.dev/docs

Claude Code

Claude Code uses the dedicated EdgeSpark plugin with CLAUDE.md as its project instructions file.
claude plugin marketplace add edgesparkhq/claude-plugins
claude plugin install edgespark@edgespark-claude-plugins
edgespark init my-app --agent claude
Start EdgeSpark tasks in Claude Code with /edgespark:building-edgespark-apps. Claude Code setup →

Gemini CLI

Gemini CLI uses the dedicated EdgeSpark extension with GEMINI.md as its project instructions file.
gemini extensions install https://github.com/edgesparkhq/gemini-extensions
edgespark init my-app --agent gemini
Start EdgeSpark tasks in Gemini CLI with /edgespark:building-edgespark-apps. Gemini CLI setup →

OpenAI Codex

OpenAI Codex uses the dedicated EdgeSpark Codex plugin with AGENTS.md as its project instructions file.
codex
# Then paste the EdgeSpark Codex plugin install prompt from the Codex setup page
edgespark init my-app --agent codex
Start EdgeSpark tasks in OpenAI Codex with $edgespark:building-edgespark-apps. OpenAI Codex setup →

Cursor

Cursor uses the dedicated EdgeSpark Cursor plugin with AGENTS.md as its project instructions file.
/add-plugin edgespark@https://github.com/edgesparkhq/cursor-plugins
edgespark init my-app --agent cursor
Cursor onboarding currently requires Cursor 2.5 or later. After installing the plugin, you can start EdgeSpark tasks in Cursor Agent chat with /building-edgespark-apps. Cursor setup →

GitHub Copilot

GitHub Copilot uses the dedicated EdgeSpark Copilot plugin with AGENTS.md as its project instructions file.
copilot plugin marketplace add edgesparkhq/copilot-plugins
copilot plugin install edgespark@edgespark-copilot-plugins
edgespark init my-app --agent copilot
Start EdgeSpark tasks in GitHub Copilot with /edgespark:building-edgespark-apps. GitHub Copilot setup →

All other AI agents

EdgeSpark still supports all remaining AI agents even when they do not have a dedicated plugin or extension yet. OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and all other AI agents use the generic EdgeSpark skills and docs MCP path together with AGENTS.md.
npx skills add edgesparkhq/agent-skills
npx add-mcp https://mcp.edgespark.dev/docs
edgespark init my-app --agent your-agent-name
Use the real agent name in --agent, such as opencode, amp, devin, aider, windsurf, cline, continue, antigravity, kiro, or your own custom agent name. Agents with their own rules format can adapt AGENTS.md into that format after initialization, such as .windsurfrules for Windsurf and .clinerules for Cline. Generic agent setup →

How the instructions file works

Regardless of which agent you use, the instructions file does the same thing:
  1. Tells the agent which files to read before writing any code
  2. Explains the project structure and what must not be edited
  3. Provides the rules for this platform, including batching, storage patterns, and type safety
  4. Gives working code examples for database, storage, and auth
  5. Documents CLI usage for deploy and schema pull
Use this file as the starting instructions source for each agent task or session. Project owners can append their own rules below the generated content. See AGENTS.md reference for the full format.

See also

AGENTS.md reference

The project instructions file format and how to extend it with project-specific rules.

Claude Code

Install the EdgeSpark Claude Code plugin and work from CLAUDE.md.

Gemini CLI

Install the EdgeSpark Gemini CLI extension and work from GEMINI.md.

OpenAI Codex

Install the EdgeSpark Codex plugin and work from AGENTS.md.

Cursor

Install the EdgeSpark Cursor plugin and work from AGENTS.md.

GitHub Copilot

Install the EdgeSpark Copilot plugin and work from AGENTS.md.

Other AI agents

OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and all other agents using the generic skills and docs MCP path.
Last modified on May 6, 2026