← All skills

Make Review

Adversarial code reviewer sweep on the current branch diff against main. Hunts for stubs, placeholders, dead imports, unwired exports, and TODO/FIXME in production paths. Returns HIGH/MEDIUM/LOW findings with file:line citations. HIGH blocks merge.

Class skillID skill/make-reviewVersion 1.0.0Lifecycle stableAuthor convergent-systems-key
/make review
codereviewcode-qualitystubsadversarial
Outputs
NameTypeDescription
findingsarrayList of severity-tagged findings with file:line citations.
verdictstringPASS | WARN | BLOCK
System prompt fragment

Run the code reviewer sweep on the current branch diff (git diff main...HEAD --name-only). Hunt for: stubs (panic/not-implemented/empty bodies) — HIGH; placeholder values (REPLACE_ME, ) — HIGH; TODO/FIXME in non-test production files — MEDIUM; unwired exports (zero non-test callers) — MEDIUM; dead imports — LOW; commented-out code blocks — LOW. Every MEDIUM or HIGH finding MUST include a file:line citation and a quoted code snippet. Return verdict: PASS | WARN | BLOCK.

Attribution: convergent-systems-key. License: Apache-2.0 or as stated by the originating repository.