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

# Continue and EdgeSpark

> Set up Continue (VS Code and JetBrains extension) to work with EdgeSpark — install EdgeSpark skills and docs MCP, then configure AGENTS.md as context.

Continue is an open-source AI coding extension for VS Code and JetBrains. Reference `AGENTS.md` in your Continue configuration to give Continue full EdgeSpark context for every session.

<Steps>
  <Step title="Install the EdgeSpark CLI">
    ```bash theme={null}
    npm install -g @edgespark/cli
    edgespark login
    ```

    This installs the CLI globally and authenticates your account. Your credentials are stored locally and reused for all subsequent commands.
  </Step>

  <Step title="Install EdgeSpark skills and docs MCP">
    Use the generic EdgeSpark skills package for OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and every other AI coding agent that does not have a dedicated EdgeSpark plugin or extension:

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

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

    ```bash theme={null}
    npx add-mcp https://mcp.edgespark.dev/docs
    ```
  </Step>

  <Step title="Initialize your project and configure Continue">
    ```bash theme={null}
    edgespark init my-app --agent continue
    cd my-app
    ```

    Then reference `AGENTS.md` in your Continue `config.yaml`:

    ```yaml theme={null}
    context:
      - provider: file
        params:
          filepath: ./AGENTS.md
    ```

    Continue applies the EdgeSpark rules to all AI-assisted edits in the extension.
  </Step>
</Steps>

## See also

<Columns cols={2}>
  <Card title="Supported agents" icon="robot" href="/agents/supported-agents">
    Claude Code, Gemini CLI, OpenAI Codex, GitHub Copilot, Cursor, OpenCode, Amp, Devin, Aider, Windsurf, Cline, Continue, Antigravity, Kiro, and all other AI agents.
  </Card>

  <Card title="AGENTS.md reference" icon="file-lines" href="/agents/agents-md">
    What the agent instructions file contains and how to extend it with project-specific rules.
  </Card>

  <Card title="Declarative workflow" icon="database" href="/agents/declarative-workflow">
    Pull schema, write code against generated types, and validate deploys safely.
  </Card>

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