Review a pull request using specialized reviewer agents
Scanned 9/6/2026
Install to Claude Code
npx -y skills add Jartan-LLC/grimoire --skill review-pr --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Review Pr?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jartan-llc-review-pr)More formats (shields.io, HTML) on the badges page.
---
name: review-pr
description: Review a pull request using specialized reviewer agents
argument-hint: PR number (may include additional context)
---
# Review PR
Review a pull request with category-based reviewer agents.
## Process
### 1. Get PR Context
Determine the PR number from the user's request, which may carry context beyond the number. Fetch the PR details and diff:
```bash
gh pr view <pr-number>
gh pr diff <pr-number>
```
### 2. Categorize and Review
Launch relevant reviewer agents based on changed files:
- Backend changes -> `backend-reviewer`
- Frontend changes -> `frontend-reviewer`
- Documentation changes, or code that changes public behavior -> `doc-reviewer`
- CI/test changes -> `test-reviewer`
- Non-trivial code changes -> `structure-reviewer`
- All changes -> `general-reviewer`
### 3. Verify Documentation
If code changed public behavior, `doc-reviewer` must run -- it owns doc-code mismatch.
### 4. Post Review
Reviewers flag findings they could not confirm as `suspected` (they have no web access, and some issues resist static reading). Before posting, resolve each: verify post-cutoff versions against a live source, confirm others by re-reading the code; post anything still unresolved under **Suspected** as a question -- never silently dropped. Then post the review as a PR comment following `review-format.md` in the `gitwise:github-conventions` skill, ending with the reply hint `-- reply with /praxis:address-review <pr-number> to work through findings`:
```bash
gh pr comment <pr-number> --body "<review comment>"
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!