← 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 skill ID skill/make-review Version 1.0.0 Lifecycle stable Author convergent-systems-key
/make review
codereview code-qualitystubsadversarial
Outputs
NameTypeDescription
findings array List of severity-tagged findings with file:line citations.
verdict string PASS | 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.