Code Review Skill
SkillsOn-demand skill that reviews code for bugs, security issues, and performance problems.
1703/26/2026
markdown1 file
CLAUDE.md719 B
name: code-review description: Review code for bugs, security, and performance. Use when reviewing PRs or checking code quality.
Code Review Skill
When reviewing code, check for:
-
Bugs & Edge Cases
- Null/undefined handling
- Off-by-one errors
- Race conditions
- Resource leaks
-
Security
- SQL injection
- XSS vulnerabilities
- Auth/authz gaps
- Secrets in code
-
Performance
- N+1 queries
- Unnecessary re-renders
- Missing indexes
- Large payload sizes
-
Readability
- Clear naming
- Single responsibility
- Appropriate comments
- Consistent patterns
Be concise. Use severity labels: 🔴 Critical, 🟡 Warning, 🔵 Suggestion.