code-review-quality

Installation
Summary

Context-driven code reviews prioritizing quality, security, testability, and maintainability.

  • Organizes feedback into four priority levels: blockers (must fix), major issues (should fix), minor improvements, and suggestions, with clear templates and rationale for each
  • Covers five core review areas: logic correctness, security risks, test coverage, performance issues, and error handling; explicitly excludes style nitpicking and formatting
  • Recommends reviewing code in chunks under 400 lines for effectiveness and enforces minimum finding thresholds to ensure substantive feedback
  • Integrates four specialized agents (quality analyzer, security scanner, performance tester, coverage analyzer) for parallel automated checks on logic, security, and test gaps
SKILL.md

Code Review Quality

<default_to_action> When reviewing code or establishing review practices:

  1. PRIORITIZE feedback: 🔴 Blocker (must fix) → 🟡 Major → 🟢 Minor → 💡 Suggestion
  2. FOCUS on: Bugs, security, testability, maintainability (not style preferences)
  3. ASK questions over commands: "Have you considered...?" > "Change this to..."
  4. PROVIDE context: Why this matters, not just what to change
  5. LIMIT scope: Review < 400 lines at a time for effectiveness

Quick Review Checklist:

  • Logic: Does it work correctly? Edge cases handled?
  • Security: Input validation? Auth checks? Injection risks?
  • Testability: Can this be tested? Is it tested?
  • Maintainability: Clear naming? Single responsibility? DRY?
  • Performance: O(n²) loops? N+1 queries? Memory leaks?

Critical Success Factors:

  • Review the code, not the person
Related skills
Installs
1.2K
GitHub Stars
348
First Seen
Jan 24, 2026