> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clemta.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Use a clmt_test_ key while developing. It never touches live data. Send a UUID Idempotency-Key on every POST, PUT and DELETE, generated once per operation and reused on retries. Pin Clemta-Version: 2026-08-13 on every request. Branch on the error code field, never on detail. Retry only timeouts, 5xx and 429, and honor Retry-After. Test companies never advance on their own. Drive them with POST /sandbox/companies/{id}/simulate. OpenAPI: https://api.clemta.com/v1/openapi.json. Skills: npx skills add https://docs.clemta.com. Docs search MCP: https://docs.clemta.com/mcp. Guide: https://docs.clemta.com/partner/ai-agents.md.

# Docs for agents

> A docs search server, Markdown pages, and llms.txt for Claude Code, Cursor, or any coding agent.

Every page on this site is also served in a form an agent can read. None of it
needs a key. Product-specific skills are listed by product, starting with the
[Partner API](/ai/partner-api).

## Docs search (MCP)

A search server for these pages runs at `https://docs.clemta.com/mcp`. It
searches the docs and does not call the API. To use Clemta itself from an
agent, see the [Clemta MCP server](/ai/clemta-mcp).

<CodeGroup>
  ```bash Claude Code theme={null}
  claude mcp add --transport http clemta-docs https://docs.clemta.com/mcp
  ```

  ```json Cursor (.cursor/mcp.json) theme={null}
  {
    "mcpServers": {
      "clemta-docs": { "url": "https://docs.clemta.com/mcp" }
    }
  }
  ```

  ```json VS Code (.vscode/mcp.json) theme={null}
  {
    "servers": {
      "clemta-docs": { "type": "http", "url": "https://docs.clemta.com/mcp" }
    }
  }
  ```
</CodeGroup>

The **Connect** entries in the menu at the top of every page do the same in
one click.

## Markdown and llms.txt

* Add `.md` to any page URL for its Markdown:
  `https://docs.clemta.com/partner/webhooks.md`.
* [`/llms.txt`](https://docs.clemta.com/llms.txt) lists every page.
  [`/llms-full.txt`](https://docs.clemta.com/llms-full.txt) is the whole site
  in one file.

Any of these can go in a `CLAUDE.md`, `AGENTS.md`, or `.cursorrules` file.

## Page menu

The menu at the top of every page copies the page as Markdown, opens it in
Claude or ChatGPT, connects the docs search server to Cursor or VS Code, and
downloads the OpenAPI description.

## Agent instructions

Every Markdown export, and both `llms` files, end with a short block of
instructions: use a `clmt_test_` key while developing, send an
`Idempotency-Key` on every write, pin `Clemta-Version`, and branch on error
`code`.

## Skills

A skill is a Markdown file an agent loads when the task matches its
description. Skills are named `clemta-<product>-<topic>`, and the `clemta`
skill is an index of all of them. One command installs the set:

```bash theme={null}
npx skills add https://docs.clemta.com
```

The index is at [`/.well-known/agent-skills/index.json`](https://docs.clemta.com/.well-known/agent-skills/index.json)
and each file at `/.well-known/agent-skills/<name>/SKILL.md`, for tools that
read the agent-skills format directly. See [Partner API](/ai/partner-api) for
what each skill covers.
