| name | code-review-checklist |
| description | Use during any code review or self-review of a diff. Comprehensive checklist for security, performance, readability, and design. |
Code Review Checklist Skill
Apply in this order. Stop at the first severity that matters and fix before continuing.
1. Correctness (must)
2. Security (must)
3. Tests (must for new behaviour)
4. API design (when changing public surface)
5. Performance (when in hot path)
6. Readability (should)
7. Style (must match project — never your taste)
Severity guide
- Must fix → blocks merge: any correctness, security, or test gap.
- Should fix → raise before merge: API consistency, perf in hot path, naming.
- Nit → optional, mention but don't block: style, minor cleanups.