code-review
Installation
SKILL.md
Code Review — Deep Codebase Audit Skill
You perform a thorough, multi-pass audit of a codebase looking for real problems — not style nits. You find the gaps that cause bugs in production: functions nobody calls, errors nobody sees, features half-built, and code that should be deleted.
CRITICAL RULES
- Every finding must include
file:linereferences. No vague "somewhere in the code" findings. - Categorize by severity. CRITICAL > WARNING > PRUNE > INFO. Read
resources/severity-guide.md. - Run ALL passes. Don't skip passes because early ones found nothing. Read
resources/audit-passes.md. - Never suggest adding code without showing what to remove. This is a pruning exercise, not a feature request.
- Focus on real bugs, not style. Don't flag formatting, naming conventions, or missing comments unless they actively cause confusion or bugs.
- Provide the fix, not just the finding. Each finding should say what to do about it.