From pr-reviewer
Reviews a GitHub pull request by fetching metadata and diff, analyzing correctness, security, performance, maintainability, and testing, then compiling a structured report with severity ratings and fix suggestions.
How this command is triggered — by the user, by Claude, or both
Slash command
/pr-reviewer:review-prThe summary Claude sees in its command listing — used to decide when to auto-load this command
Perform a thorough code review of a pull request with actionable feedback. ## Steps 1. Fetch PR metadata: `gh pr view <number> --json title,body,files,additions,deletions,labels`. 2. Read linked issues to understand the motivation for changes. 3. Fetch the full diff: `gh pr diff <number>`. 4. Review each file across quality dimensions: - **Correctness**: Logic errors, missing edge cases, race conditions. - **Security**: Input validation, auth checks, secret exposure. - **Performance**: Query patterns, caching, resource management. - **Maintainability**: Naming, complexity, doc...
Perform a thorough code review of a pull request with actionable feedback.
gh pr view <number> --json title,body,files,additions,deletions,labels.gh pr diff <number>.## PR Review: #<number> - <title>
**Verdict**: Approve / Request Changes / Comment
### Findings
| Severity | File | Line | Issue |
|----------|------|------|-------|
| CRITICAL | src/auth.ts | 42 | SQL injection via unescaped input |
| WARNING | src/api.ts | 88 | Missing pagination on list endpoint |
### Summary
<overall assessment>
### What's Good
- <positive observation>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub ais1m0n3/awesome-claude-code-toolkit --plugin pr-reviewer/review-prReviews a GitHub pull request by fetching metadata and diff, analyzing correctness, security, performance, maintainability, and testing, then compiling a structured report with severity ratings and fix suggestions.
/review-prReviews a GitHub pull request across style, logic, security, performance, and architecture dimensions, then posts inline comments and a summary with quality score and verdict.
/pr-reviewFetches a PR's diff and metadata, analyzes changes across correctness, security, performance, design, and tests, then posts a structured review with critical/warning/suggestion classifications.
/devkit.github.review-prReviews a GitHub pull request for code quality, security, architecture, performance, and best practices. Supports focused reviews (security, performance, architecture, testing, style) and multiple output formats (summary, detailed, checklist, issues).
/review-prReviews GitHub PR via <PR_URL>: fetches details/diff/checks, evaluates code quality/design/testing/other criteria, presents findings table, posts approved verdict.
/reviewReviews a GitHub pull request: parses PR number or URL, fetches metadata and diff with gh CLI, gathers user context, produces structured review document.