← ClaudeAtlas

code-reviewlisted

Use when the user asks to review written work — a diff, PR, branch, or "review this before commit/merge" — checking both what was asked for and how well it is built. Do NOT use while still mid-build, when the user only wants a diff summary, or for security review — that is the bulletproof skill's lane.
KenKaiii/gg-framework · ★ 27 · Code & Development · score 75
Install: claude install-skill KenKaiii/gg-framework
# Code Review Two independent questions, kept separate because each contaminates the other: 1. **Spec axis** — does this change do what was asked, completely, with nothing asked that is missing? 2. **Standards axis** — does it meet how this repo builds: correctness, error handling, tests at real seams, naming, dead code, scope discipline? ## Method 1. **Pre-flight.** Resolve the exact ref and range and confirm the diff is non-empty BEFORE any review work — a bad ref must fail here, not two passes deep. Read the request or task that motivated the change first: spec-conformance cannot be judged without the spec. 2. **Split the passes.** On anything larger than a small diff, run the two axes as separate subagents — the spec brief pastes in the original request, the standards brief pastes in the repo's conventions. Separate contexts keep one axis from anchoring the other. Small diffs: run both passes yourself, in that order, never interleaved. 3. **Findings format.** Per finding: `file:line`, one-line problem, why it matters, the concrete fix. Label each **[spec]** or **[standards]**, and never merge the lists into one ranking — the axes are not comparable, and merging re-ranks by noise. 4. **Report, then fix what is selected.** Report first; fix what the user picks. Never auto-apply fixes mid-review. Security findings belong to the `bulletproof` skill — note them and defer; do not audit them here. ## Standards baseline (when the repo defines none) Missing error handling o