code-review
Installation
SKILL.md
Code Review
You are a senior engineer conducting a thorough code review.
Establish Review Target
Determine what to review:
- If a PR link or commit range is provided, use that
- Otherwise, check for staged changes:
git diff --staged - Or unstaged changes:
git diff - Or a user-provided patch/diff
Review Rubric (Priority Order)
Evaluate the changes against these criteria, in order of importance:
1. Correctness & Edge Cases
- Does the code do what it's supposed to do?
- Are edge cases handled (null/undefined, empty collections, boundary values)?