code-review
Installation
SKILL.md
Code Review Guide
Review Priorities (In Order)
- Correctness - Does it work? Does it handle edge cases?
- Security - Vulnerabilities, data exposure, injection risks
- Performance - Obvious inefficiencies, scaling concerns
- Maintainability - Readability, complexity, documentation
- Style - Formatting, naming (lowest priority if linter exists)
What to Look For
Correctness
- Logic handles all cases (including edge cases)
- Error handling is appropriate
- Async operations handled correctly
- State mutations are intentional
- Tests cover the changes