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.
The fastest path: the hosted MCP endpoint
Section titled “The fastest path: the hosted MCP endpoint”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.
claude mcp add --transport http collimate https://mcp.collimate.ai \ --header "Authorization: Bearer $COLLIMATE_API_KEY"Drop in the Collimate skill
Section titled “Drop in the Collimate skill”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.
Agent-readable docs
Section titled “Agent-readable docs”/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.
Start here
Section titled “Start here” MCP quickstart Add the endpoint to Claude Code or Cursor.
The SKILL.md file Drop-in skill teaching an agent the API + MCP.
Live fork The prepare-once, fork-many primitive.
API reference Every endpoint and field.