Skip to content

Skills for coding agents

Collimate is built for agents to drive. If you are wiring up an AI coding agent — Claude Code, Cursor, or your own — start here.

Add the hosted MCP endpoint and your agent gets sandbox_create, sandbox_exec, sandbox_write_file, sandbox_fork, sandbox_suspend, sandbox_resume, sandbox_list, and sandbox_delete as native tools — no SDK, no glue code.

Terminal window
claude mcp add --transport http collimate https://mcp.collimate.ai \
--header "Authorization: Bearer $COLLIMATE_API_KEY"

For agents that use skill files, drop SKILL.md into your agent's skills directory. It teaches the create → exec → fork → suspend workflow, the REST surface, the MCP tools, and the one idea worth internalizing — prepare once, fork many — so the agent reaches for live fork instead of rebuilding state per branch.

  • /llms.txt — a curated map of this site for LLMs, with the skill file first. Point your agent's retrieval at it.
  • /openapi.yaml — the machine-readable API description, for agents that generate clients or tool schemas.
  • Every page here is written to be read by an agent: honest field tables, real request/response shapes, and stable error codes to branch on.