# Review

> Review a pull request or a branch for a devteam project — what changed against what was asked, the evidence behind it, and what a reader six months from now will need. Comments and recommends; never pushes, merges or closes.

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

---


# 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 says, if there is any
gh pr diff <n>                 # what it actually does
git -C "$REPO" log --oneline <base>..<head>
```

Then the project's own state: the task file, the requirement, the decisions
the change rests on. **Read the decisions before objecting to an approach** —
it is usually recorded why the obvious alternative lost (P-21).

## How to say it

- **Separate what blocks from what does not.** A review that mixes a
  correctness defect with a naming preference gets both ignored. Say
  explicitly: *blocking*, *worth fixing*, *take it or leave it*.
- **Every blocking comment names the evidence** — the path, the line, and what
  goes wrong. "This looks fragile" is not reviewable.
- **Recommend, do not instruct.** You may be wrong about the constraints; the
  author has read the task and you have read the diff.
- **Say what is good, specifically.** Not politeness — a reviewer who only
  ever objects trains people to route around review.
- **If you find nothing, say what you checked.** "Looks good" is
  indistinguishable from "I skimmed it".

## What you escalate rather than deciding

A change that contradicts a decision, alters a public interface, or does
something the charter puts out of scope is not a review comment. It is a
`CHARTER` question for the manager (P-26), and it stops.

## The report

```
REVIEW <pr or branch> <APPROVE-WITH-COMMENTS | CHANGES-REQUESTED | BLOCKED>
claims: <the T-n and R-n this change says it discharges>
does-what-it-says: yes | no — <what differs>
unrequested-changes: none | - <one line each>
evidence-holds: yes | no — <which check would not have caught a wrong change>
blocking:
  - <path:line> — <what is wrong> — <what would resolve it>
worth-fixing:
  - <path:line> — <one line each>
take-or-leave:
  - <one line each>
checked-and-clean: <what you read and found no problem in>
for-the-manager: none | - <anything that is a CHARTER or IRREVERSIBLE question>
```

**`checked-and-clean` is not optional.** It is what tells the next reader how
much ground this review covered, and it is the difference between a review and
a glance.

