
Code Review Excellence
Run structured pull-request reviews with severity-grouped findings instead of vague nitpicks before merge.
Install
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill code-review-excellenceWhat is this skill?
- Reads requirements and test signals before commenting on diffs
- Scores issues as blocking, important, or minor with rationale
- Covers correctness, security, performance, and maintainability in one pass
- Outputs summary, suggestions, questions, and coverage notes
- Optional implementation-playbook checklists for deeper audit patterns
Adoption & trust: 457 installs on skills.sh; 40.1k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Improve Codebase Architecturemattpocock/skills
Zoom Outmattpocock/skills
Caveman Reviewjuliusbrussee/caveman
Requesting Code Reviewobra/superpowers
Receiving Code Reviewobra/superpowers
Request Refactor Planmattpocock/skills
Journey fit
Primary fit
Code review is canonically the Ship phase gate before release, even though teams also review during active Build iterations. The review subphase is where PR feedback, standards enforcement, and merge-readiness checks live in the solo-builder journey.
Common Questions / FAQ
Is Code Review Excellence safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Code Review Excellence
# Code Review Excellence Transform code reviews from gatekeeping to knowledge sharing through constructive feedback, systematic analysis, and collaborative improvement. ## Use this skill when - Reviewing pull requests and code changes - Establishing code review standards - Mentoring developers through review feedback - Auditing for correctness, security, or performance ## Do not use this skill when - There are no code changes to review - The task is a design-only discussion without code - You need to implement fixes instead of reviewing ## Instructions - Read context, requirements, and test signals first. - Review for correctness, security, performance, and maintainability. - Provide actionable feedback with severity and rationale. - Ask clarifying questions when intent is unclear. - If detailed checklists are required, open `resources/implementation-playbook.md`. ## Output Format - High-level summary of findings - Issues grouped by severity (blocking, important, minor) - Suggestions and questions - Test and coverage notes ## Resources - `resources/implementation-playbook.md` for detailed review patterns and templates. ## Limitations - Use this skill only when the task clearly matches the scope described above. - Do not treat the output as a substitute for environment-specific validation, testing, or expert review. - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing. # Code Review Excellence Implementation Playbook This file contains detailed patterns, checklists, and code samples referenced by the skill. ## When to Use This Skill - Reviewing pull requests and code changes - Establishing code review standards for teams - Mentoring junior developers through reviews - Conducting architecture reviews - Creating review checklists and guidelines - Improving team collaboration - Reducing code review cycle time - Maintaining code quality standards ## Core Principles ### 1. The Review Mindset **Goals of Code Review:** - Catch bugs and edge cases - Ensure code maintainability - Share knowledge across team - Enforce coding standards - Improve design and architecture - Build team culture **Not the Goals:** - Show off knowledge - Nitpick formatting (use linters) - Block progress unnecessarily - Rewrite to your preference ### 2. Effective Feedback **Good Feedback is:** - Specific and actionable - Educational, not judgmental - Focused on the code, not the person - Balanced (praise good work too) - Prioritized (critical vs nice-to-have) ```markdown ❌ Bad: "This is wrong." ✅ Good: "This could cause a race condition when multiple users access simultaneously. Consider using a mutex here." ❌ Bad: "Why didn't you use X pattern?" ✅ Good: "Have you considered the Repository pattern? It would make this easier to test. Here's an example: [link]" ❌ Bad: "Rename this variable." ✅ Good: "[nit] Consider `userCount` instead of `uc` for clarity. Not blocking if you prefer to keep it." ``` ### 3. Review Scope **What to Review:** - Logic correctness and edge cases - Security vulnerabilities - Performance implications - Test coverage and quality - Error handling - Documentation and comments - API design and naming - Architectural fit **What Not to Review Manually:** - Code formatting (use Prettier, Black, etc.) - Import organization - Linting violations - Simple typos ## Review Process ### Phase 1: Context Gathering (2-3 minutes) ```markdown Before diving into code, understand: 1. Read PR description and linked issue 2. Check PR size (>400 lines? Ask to split) 3. Review CI/CD status (tests passing?) 4. Understand the business requirement 5. Note any relevant architectural decisions ``` ###