pr-review

Reviews GitHub PRs and local commits with parallel multi-agent analysis and automated fix loops.

Updated Apr 28, 2026
One-click install
npx skills add https://github.com/visdomtech/skills --skill pr-review-visdomtech
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: pr-review
Source: https://github.com/visdomtech/skills/tree/main/pr-review
Command: npx skills add https://github.com/visdomtech/skills --skill pr-review-visdomtech

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often stop at listing problems, leaving fixes unaddressed, and shallow diff-only reviews miss bugs hidden in removed code, lifecycle transitions, and broken callers. This Skill performs deep multi-perspective review of PRs or local changes and drives every finding to resolution. ## Core Features & Use Cases - Parallel 3-Agent Review: Dispatches completeness, correctness, and impact agents concurrently, with dependency tracing, usage-site grepping, and lifecycle/state-transition analysis. - Two Modes: PR Mode reviews a GitHub PR via gh and posts the verdict to GitHub; Local Mode reviews commits or uncommitted WIP read-only without touching HEAD. - Closed-Loop Fixes: When any finding exists, it hands a structured fix brief to the dev-cycle skill, commits and pushes fixes in PR mode, then re-reviews to verify resolution. - Use Case: After finishing a feature branch, ask for a review of your unpushed commits; the Skill infers the range, runs the 3-agent analysis, presents severity-tagged findings, and commits fixes locally. ## Quick Start Ask the AI to review PR #42, or say "review my changes" to have it infer the target and deliver a severity-tagged verdict with fixes.

Frequently Asked Questions about pr-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review a GitHub PR with AI agents?▼

Invoke the review with a PR number or URL, and the Skill fetches the PR via the GitHub CLI, resets HEAD to the PR head, and dispatches three parallel agents covering completeness, correctness, and impact. The severity-tagged verdict is posted back to GitHub with gh pr review.

How to review local commits before pushing?▼

Pass a commit range or let the Skill infer unpushed commits or uncommitted changes from git status. Local Mode is read-only through the verdict: it never runs git reset, checkout, or any gh command, and only commits fixes locally after the review.

Does the review post results back to GitHub?▼

Yes, in PR Mode the structured verdict is posted via gh pr review with --approve or --request-changes, followed by a clickable PR link. Local Mode instead presents the review in chat and optionally saves it to a file.

What happens when a code review finds issues?▼

Any finding of any severity triggers a fix phase that hands a structured brief to the dev-cycle skill, which plans, implements, and commits fixes. PR Mode then pushes to the PR branch and re-reviews; Local Mode commits locally and stops.

When should I use multi-agent-review instead of pr-review?▼

Use multi-agent-review for high-stakes or security-sensitive changes requiring a mandatory pre-flight, six specialized agents, and a readiness score. pr-review is the default entry point for standard PR, commit, and WIP reviews.