review-skill
Installation
SKILL.md
Review Skill
Run specialized reviewers against a skill document to find correctness, clarity, and conformance issues.
Core Philosophy
Every issue demands a document change: real issue → fix it; false positive → add clarifying text.
Reviewers
Correctness — will this do the wrong thing?
| Reviewer | Question | Finds |
|---|---|---|
| execution | "Would this cause wrong behavior?" | Logic errors, missing steps, broken flows (all treated equally; no severity levels) |
| contradictions | "Does A contradict B?" | Conflicting instructions |
| coverage | "Is every option/branch handled?" | Unhandled branches, missing handlers |