This automates the tedious parts of code review by running git diff against your base branch and systematically checking for common issues across security, performance, code quality, and testing. It looks for hardcoded secrets, SQL injection risks, N+1 queries, missing error handling, and test coverage gaps, then gives you a structured markdown summary with critical issues, warnings, and suggestions. The checklist approach is solid because it catches things you might miss at 4pm on a Friday. Works best when you want a second pair of eyes before merging or need to review a large PR where manual inspection would take forever.
npx -y skills add onewave-ai/claude-skills --skill git-pr-reviewer --agent claude-codeInstalls into .claude/skills of the current project.
When reviewing a pull request:
git diff main...HEAD or git diff <base-branch>...HEAD## PR Review Summary
### Overview
[Brief summary of changes]
### Issues Found
#### Critical
- [Issue description + file:line]
#### Warnings
- [Issue description + file:line]
#### Suggestions
- [Improvement ideas]
### Approval Status
[APPROVE / REQUEST CHANGES / NEEDS DISCUSSION]
# Review current branch against main
git diff main...HEAD --stat
git diff main...HEAD
cursor/plugins
github/awesome-copilot
alirezarezvani/claude-skills
microsoft/win-dev-skills