pr-reviewlisted
Install: claude install-skill djnsty23/claude-auto-dev
# PR Review
> **Browser access.** Prefer the built-in browser tools (`mcp__Claude_Browser__*`)
> when the session has them — that is the default in the desktop app. The
> `agent-browser` commands below are the terminal-only fallback. The `browser`
> skill owns the driver-selection rule; follow it before running either.
Run comprehensive pull request review using specialized agents.
## Quick Start
```
Say: "review this PR" or "pr-review"
```
## Review Workflow
### 1. Check Review Scope
```bash
# See what changed
git diff --name-only
# Check if PR exists
gh pr view
```
### 2. Launch Review Agents (Parallel)
| Agent | Focus | Model |
|-------|-------|-------|
| **CLAUDE.md Compliance** | Project rules adherence | Sonnet |
| **Bug Hunter** | Logic errors, type issues | Opus |
| **Security Scanner** | Injection, XSS, secrets | Opus |
| **Test Coverage** | Missing test cases | Haiku |
### 3. Filter Results
**Only flag HIGH SIGNAL issues:**
- Code won't compile/parse
- Clear logic errors (wrong results regardless of input)
- Explicit CLAUDE.md violations (quote the rule)
- Security vulnerabilities with exploit path
**DON'T flag:**
- Style preferences
- Potential issues depending on state
- Things linter will catch
- Pre-existing issues
### 4. Report Format
```markdown
# PR Review Summary
## Critical Issues (must fix)
- [agent]: Issue description [file:line]
## Important Issues (should fix)
- [agent]: Issue description [file:line]
## Suggestions (nice to have)
- [ag