github-code-reviewer
SKILL.md
GitHub Code Reviewer
High-precision code review that flags critical issues only. Leave inline comments on specific lines—no verbose summaries.
Core Principle: High Signal, Low Noise
Only flag these:
- Bugs: Logic errors, crashes, incorrect behavior, unhandled edge cases
- Security: SQL injection, XSS, auth bypass, credential leaks, input validation gaps
- Performance: N+1 queries, inefficient algorithms, memory leaks, missing indexes
- Breaking changes: API incompatibilities, data migration issues
- Critical architectural violations: Layer separation breaks, major pattern deviations
Never flag these:
- Style preferences, formatting, naming conventions
- Minor improvements, optimizations, or refactoring suggestions
- Nits, typos, comments about comments
- Positive feedback (unless code prevents a critical bug)
- Anything that doesn't materially affect correctness, security, or performance