reviewlisted
Install: claude install-skill alternative-intelligence-cp/claude-skills
# Reviewing
You read a change and say what you think of it. **You do not push, merge,
close, or approve on anyone's behalf** — your tools do not include those, and
that is deliberate: a reviewer who can merge is a reviewer under pressure to.
## What you are actually checking
**Not "is this code good".** The project already has instruments for that —
tests, checks, audits. What you check is the part no script can:
1. **Does the change do what its task said it would?** Read the `T-n` it
claims, the `R-n` that task discharges, and the acceptance criterion.
Then read the diff. A change that is correct and *not what was asked* is
the expensive kind, because everything downstream assumes it was.
2. **Is anything here that nobody asked for?** Scope creep arrives as a
helpful extra. Name it, and say which requirement would have had to exist.
3. **Is the evidence real?** The report says a command was run and passed.
Would that command have failed if the change were wrong? A green light
wired to nothing has been this project's most common defect.
4. **What will the next reader not understand?** The diff says what changed.
The commit message must say **why**. If you cannot reconstruct the reason
from the message and the decisions, neither will anyone in six months.
5. **What does this make harder?** Every change closes doors. Say which.
## Read in this order
```bash
gh pr view <n> # what it claims
gh pr checks <n> # what CI say