From cursor-subagents
Use Cursor Agent as a delegated subagent from any AI coding harness. Use for coding, review, exploration, follow-up work, live ACP sessions, yolo write-capable runs, direct Cursor model choice, or Cursor-specific model/tool behavior.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cursor-subagents:cursor-subagentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when delegating work to Cursor Agent from the current harness.
Use this skill when delegating work to Cursor Agent from the current harness.
Requires Cursor Agent CLI (cursor-agent) or the cursor-subagents runtime package. Works best in harnesses with MCP or Agent Skills support.
composer-2.5 as the default Cursor model unless the user or task asks for another model.cursor-subagents MCP tools when the harness exposes them.cursor-subagents CLI when available.cursor-agent only when neither native tools nor the CLI package are installed.When available, prefer these tools:
cursor_spawn_task: start a live ACP subagent and send the first prompt.cursor_start_agent plus cursor_prompt_agent: create a persistent live ACP session for multi-turn delegation.cursor_run_once: reliable one-shot task using Cursor print mode.cursor_list_models: inspect Cursor model ids before choosing a non-default model.cursor_list_agents and cursor_stop_agent: inspect and clean up live sessions.For read-only review, pass mode: "ask" or mode: "plan" and yolo: false.
When MCP tools are unavailable, use:
cursor-subagents run --workspace "$PWD" --model composer-2.5 --yolo --prompt "<task>"
Useful commands:
cursor-subagents doctor --json
cursor-subagents models --json
cursor-subagents run --workspace "$PWD" --model composer-2.5 --yolo --prompt "<task>"
cursor-subagents mcp
For read-only review:
cursor-subagents run --workspace "$PWD" --model composer-2.5 --mode ask --no-yolo --prompt "<review task>"
If only cursor-agent exists:
cursor-agent -p \
--output-format stream-json \
--stream-partial-output \
--workspace "$PWD" \
--model composer-2.5 \
--trust \
--yolo \
"<task>"
For read-only review, replace --yolo with --mode ask or --mode plan.
You are a Cursor subagent working for <parent harness>.
Workspace: <absolute path>
Task: <bounded task>
Scope: <files, folders, or behavior you own>
Constraints:
- Do not revert unrelated user or parent-agent changes.
- Work in the current workspace; do not create a worktree unless explicitly asked.
- Keep edits narrowly scoped.
- Run the relevant checks you can run quickly.
Return:
- Summary
- Files changed
- Commands/checks run
- Open questions or blockers
Use ACP sessions for persistent, iterative Cursor subagents. They remain live while the MCP server process stays alive. Do not treat MCP process restarts as durable session persistence.
Use model or --model to choose a Cursor model directly. Default to composer-2.5. Use composer-2.5-fast only when the user asks for fast mode or latency matters more than quality. Call cursor_list_models or cursor-subagents models --json before choosing unfamiliar model ids.
npx claudepluginhub realsid08/cursor-subagents --plugin cursor-subagentsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.