# Cursor Worker Review

> Independent read-only review via cursor-agent CLI (Grok 4.6 Low, ask mode). Use for skeptical validation of diffs, plans, or claimed completion before Fable declares done. Requires cursor-agent on PATH.

- Skill: `fixmyberlin/cursor-worker-review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add fixmyberlin/cursor-worker-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/fixmyberlin/cursor-worker-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: fixmyberlin (https://skillmd.com/u/fixmyberlin)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/fixmyberlin/cursor-worker-review

---


# Cursor worker — review

Skeptical **read-only** pass via `cursor-agent`. Parent must not trust claims without evidence.

## Prerequisite

```bash
which cursor-agent
```

## Workflow

1. Identify review target (uncommitted diff, branch, specific files, or plan doc).
2. Write a self-contained prompt: what to inspect, what “pass” means, output format.
3. Run from repo root:

```bash
REPO="$(git rev-parse --show-toplevel)"
cursor-agent -p --trust --mode ask --output-format json \
  --workspace "$REPO" \
  --model 'cursor-grok-4.6-low[fast=false]' \
  "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."
```

4. **Verify important claims** yourself (spot-check files, re-run checks) before presenting to the user.
5. 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

