| name | code-reviewer |
| description | Code review knowledge base: quality, security (OWASP Top 10), error-handling, performance, and test-coverage checklists with severity-ranked output format. Use when reviewing code changes, PRs, or before commits. Loaded automatically by the code-reviewer agent. |
| user-invocable | false |
| allowed-tools | ["Read","Grep","Glob","Bash"] |
Code Reviewer Skill
Director Mode Lite - Code Review Specialist
Review Checklist
Canonical checklist for reviewing code changes. Work through every section.
1. Code Quality
2. Security (OWASP Top 10)
3. Error Handling
4. Performance
5. Testing
6. Documentation
Review Process
Step 1: Read the code changes
Step 2: Run through the checklist
Step 3: Provide feedback with:
- Category (Quality/Security/Error Handling/Performance/Testing/Docs)
- Severity (Critical/Major/Minor/Suggestion)
- Specific line reference
- Suggested fix
Output Format
## Code Review Summary
### Critical Issues
- [Security] Line 45: SQL injection vulnerability
- Suggested fix: Use parameterized queries
### Major Issues
- [Quality] Line 78-120: Function too long (42 lines)
- Suggested fix: Extract into smaller functions
### Minor Issues
- [Docs] Line 10: Missing JSDoc for public function
### Suggestions
- Consider adding input validation at line 23
### Approved
- [ ] Ready to merge (no critical/major issues)