Use this when you want AgentPool to spawn Cursor Agent CLI workers through the
local agent or cursor-agent command. This is separate from using Cursor as
an MCP host; for that, see docs/setup-cursor.md.
agent --version
agent status --format json
agent modelsIf agent is missing, install Cursor CLI from Cursor's installer:
curl https://cursor.com/install -fsS | bashIf status is not authenticated, run:
agent loginagentpool setup cursor-cli
agentpool models --provider cursor-cli
agentpool usage --provider cursor-cli --backend codexbar --jsonCursor's native CLI exposes usage through the interactive /usage command.
AgentPool does not currently treat that as a stable native usage probe. If
CodexBar is installed, AgentPool can use CodexBar's Cursor provider as an
optional usage backend.
agentpool spawn \
--provider cursor-cli \
--repo . \
--model composer-2.5 \
--task "Inspect this repo read-only and summarize the main entry points." \
--isolation read_onlyAgentPool launches Cursor with --workspace <repo> and uses --mode ask for
read-only isolation. Cursor's --trust flag is documented for headless print
mode, so AgentPool does not use it for interactive tmux workers. Cursor exposes
reasoning and 1M context as explicit model ids from agent models; choose those
ids with --model when you want them.