| name | cursor-worker-review |
| description | Independent read-only review via cursor-agent CLI (Composer 2.5, ask mode). Use for skeptical validation of diffs, plans, or claimed completion before Fable declares done. Requires cursor-agent on PATH. |
| user-invocable | true |
| disable-model-invocation | true |
Cursor worker — review
Skeptical read-only pass via cursor-agent. Parent must not trust claims without evidence.
Prerequisite
which cursor-agent
Workflow
- Identify review target (uncommitted diff, branch, specific files, or plan doc).
- Write a self-contained prompt: what to inspect, what “pass” means, output format.
- Run from repo root:
REPO="$(git rev-parse --show-toplevel)"
cursor-agent -p --trust --mode ask --output-format json \
--workspace "$REPO" \
--model composer-2.5 \
"Review target: [describe]. Inspect git diff and relevant files. Output: Verified (with evidence), Issues (must-fix), Gaps (unverified), Verdict (ready/not ready). Do not edit files."
- Verify important claims yourself (spot-check files, re-run checks) before presenting to the user.
- If review finds nothing, say so clearly and state what was inspected.
--mode ask and --mode plan are both read-only (no --force); use --mode plan for investigation. Prompts are self-contained (paths, branch/SHA, scope, output sections) — simpler than Claude system framing.
When parent should use this
- After implementation, before merge or “done”
- Second opinion on plans or large diffs
- Parent orchestrates; does not replace this with inline skimming