Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Review GitHub pull requests for code quality, security, and best practices. Use when the user asks to review a PR, check a pull request, evaluate code changes, or provide feedback on GitHub code. Requires `gh` CLI authenticated with appropriate permissions. Do NOT use when the user wants to create a PR, merge a PR, or perform other PR operations.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 15% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -14% | 0% |
| case-16 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-13 | ✓→✓ | = Same ✓ | 57% | 0% |
Review pull requests thoroughly before providing feedback.
gh CLI (if not present):bash # macOS brew install gh
# Verify gh --version
bash gh auth status # If not authenticated: gh auth login
repo scope for private repos, public_repo for public reposgh pr view --json url,title,body,headRefName,baseRefName,changedFilesgh pr diff <number> or fetch via curl if URL was providedgh pr diff <number> --stat first to triagesrc/ changes first, then tests, then config/docs[blocker], [warning], or [suggestion]## Summary
1-2 sentence overview of the PR
## Findings
- [blocker] file:line — description + rationale
- [warning] file:line — description + rationale
- [suggestion] file:line — description + rationale
## Positives
- What was done well
## Questions
- Clarifying questions about unclear decisions
## Recommendations
- Priority-ordered next stepsFor PRs with many files (>20 changed files):
src/ changes first (business logic)bash gh pr diff <number> --stat Focus review on files with most changes.
Based on findings, take appropriate action:
bashgh pr review <pr-number> --approve --body "LGTM! [summary of positives]"
bashgh pr review <pr-number> --comment --body "## Review [Detailed feedback with suggestions]
bashgh pr review <pr-number> --request-changes --body "## Changes Requested [Blockers and required fixes]
markdown## Summary Adds user authentication flow with JWT tokens. Includes login endpoint, token refresh, and middleware for protected routes. ## Findings - [blocker] src/auth.ts:42 — Hardcoded JWT secret `const SECRET = "mysecret123"`. Move to environment variable to prevent secret exposure in source control. - [warning] src/middleware.ts:18 — Token expiry set to 30 days, which is unusually long. Consider 24 hours with refresh token rotation. - [suggestion] src/routes/login.ts:7 — Consider rate limiting on login endpoint to prevent brute force attacks. ## Positives - Clean separation of auth concerns into dedicated module - Good error handling with specific error messages - Tests cover both success and failure paths ## Questions - Is the 30-day token expiry intentional for a specific use case? ## Recommendations 1. Move JWT secret to environment variable (blocking) 2. Add rate limiting middleware for auth routes 3. Consider shorter token expiry with refresh rotation 4. Add integration test for full login → protected route flow
Other measured skills in the registry, with their headline benchmark lift.