mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-06 17:23:28 +08:00
1.0 KiB
1.0 KiB
description
| description |
|---|
| Comprehensive PR review using specialized agents |
Run a comprehensive multi-perspective review of a pull request.
Usage
/review-pr [PR-number-or-URL] [--focus=comments|tests|errors|types|code|simplify]
If no PR is specified, review the current branch's PR. If no focus is specified, run the full review stack.
Steps
- Identify the PR:
- use
gh pr viewto get PR details, changed files, and diff
- use
- Find project guidance:
- look for
CLAUDE.md, lint config, TypeScript config, repo conventions
- look for
- Run specialized review agents:
code-reviewercomment-analyzerpr-test-analyzersilent-failure-huntertype-design-analyzercode-simplifier
- Aggregate results:
- dedupe overlapping findings
- rank by severity
- Report findings grouped by severity
Confidence Rule
Only report issues with confidence >= 80:
- Critical: bugs, security, data loss
- Important: missing tests, quality problems, style violations
- Advisory: suggestions only when explicitly requested