Review pull requests, diffs, and implementation changes for correctness, security, performance, maintainability, testing, and release readiness. Use when the user asks for review of a PR, patch, diff, commit, or code change.
80
100%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
Perform focused, high-signal code reviews. Prefer a few strong findings over many weak nits.
main.If the review target, base branch, or expected behavior is unclear, ask before reviewing deeply.
Look for:
# Pull request review
gh pr view <PR-NUMBER> --json title,body,files,commits,baseRefName,headRefName
gh pr diff <PR-NUMBER> --name-only
gh pr diff <PR-NUMBER> --patch
# Current branch against explicit target ref
git merge-base HEAD <TARGET-REF>
git diff $(git merge-base HEAD <TARGET-REF>)..HEAD
git diff --name-only $(git merge-base HEAD <TARGET-REF>)..HEAD
# Staged changes
git diff --cached
# Unstaged changes
git diff
# Last commit
git show --stat --patch HEAD
# Specific commit
git show --stat --patch <COMMIT>Only include a finding when there is a plausible failure mode, missing control, or concrete maintenance risk.
For each finding, be able to answer:
If confidence is incomplete, state what you observed and phrase the rest as a question.
# Code Review: [title]
## Summary
- **Assessment:** [Approve / Request Changes / Comment]
- **Scope:** [files reviewed or diff summary]
- **Review mode:** [Read-only diff / local branch / temp worktree]
- **Main risks:** [short list or "None identified"]
## Findings
### [Critical|Important|Minor|Suggestion] Short title
- **Location:** `path/to/file.ext:line`
- **Why it matters:** [impact]
- **Recommendation:** [specific fix or question]
## Positives
- [optional]
## Questions
- [optional]
## Verdict
- [concise closing recommendation]Load only when relevant:
2384118
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.