review
Installation
SKILL.md
/review
Workflow
- Run
git diff main...HEAD— get ACTUAL diff, never reconstruct - Produce structured review (severity tiers below)
- Ask ≤5 grill-me questions — one per key design decision; design intent only, not style
- On approval: apply Blocker fixes → run tests → run lint → commit (conventional message)
Scope Discipline
Review only what changed on this branch — never pre-existing, unmodified code. The diff
is the contract;
default to git diff main...HEAD, not memory or full-file reads. Real repos make this a
hard rule:
Focus exclusively on changes introduced in the current branch compared to
main. Do not review pre-existing code that was not modified.