| name | pr-review |
| description | Pull request review workflow — orchestrates multi-agent review with confidence scoring, parallel analysis, and PR comment formatting. |
| user-invocable | false |
PR Review Workflow
Overview
Multi-perspective PR review using parallel specialized agents with confidence-based filtering.
Review Pipeline
- Gather context — PR diff, CLAUDE.md guidelines, related files
- Launch parallel reviews:
- Convention compliance (vs CLAUDE.md and coding standards)
- Bug detection (focused on changes only, not pre-existing issues)
- Historical context (git blame, related changes)
- Test coverage assessment (are changes tested?)
- Score findings — Each finding gets a confidence score 0-100
- Filter — Only findings ≥80 confidence are reported (configurable)
- Format — Output as terminal summary or PR comment
Finding Format
### {severity}: {title}
**Confidence:** {score}/100
**File:** {path}#L{start}-L{end}
**Category:** Bug | Convention | Security | Coverage | Performance
{description}
**Suggestion:**
{specific fix or recommendation}
Severity Levels
- BLOCKER (confidence ≥90): Breaks functionality, security vulnerability
- MAJOR (confidence ≥80): Significant quality issue, missing coverage