pr-review

Fetch unresolved comments and pending reviews for a GitHub pull request.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/towry/dots --skill pr-review-towry
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pr-review
Source: https://github.com/towry/dots/tree/main/conf/claude-local-marketplace/skills/pr-review
Command: npx skills add https://github.com/towry/dots --skill pr-review-towry

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This skill retrieves and displays unresolved GitHub PR reviews and comments, and helps manage reviewer feedback, leveraging the GitHub CLI to fetch review information.

Core Features & Use Cases

  • Owner/Repo Discovery: Detect the repository owner and name using a helper script.
  • PR Review Fetching: Retrieve unresolved comments and pending reviews for a given PR.
  • Filtering by Reviewer: Focus reviews by the current user or specified reviewer.

Quick Start

  • Prepare owner/repo using: bash ~/.claude/skills/pr-review/scripts/get-owner-repo.sh
  • Then fetch reviews with gh pr-review: gh pr-review review view -R <owner/repo> --unresolved --pr <pr-number> --not_outdated --reviewer towry

Frequently Asked Questions about pr-review

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

FAQPage Schema
How do I view unresolved comments on a GitHub pull request?

Unresolved comments on a pull request are review feedback that hasn't been addressed. Use the pr-review Skill with the `--unresolved` flag to fetch pending review comments for a specified PR, filtering out outdated or resolved feedback to surface only active issues requiring attention.

Can I use GitHub CLI to retrieve pending reviews for a pull request?

Yes. The pr-review Skill leverages GitHub CLI (gh) to retrieve pending reviews and unresolved comments. It accepts the PR number, repository owner/repo, and reviewer filters to return actionable review status without manual GitHub navigation.

How do I filter PR reviews by a specific reviewer?

The pr-review Skill supports the `--reviewer` flag to focus reviews on a particular person's feedback. Combine it with owner/repo and PR number to isolate pending comments from that reviewer, streamlining review triage.

What information do I need before fetching PR reviews?

Before fetching PR reviews, you need the repository owner and name (detected automatically or set manually), the pull request number, and GitHub CLI installed. The Skill includes a helper script to auto-detect owner/repo from your repository context.

Does pr-review work with both Git and Jujutsu version control?

Yes. The pr-review Skill automatically detects whether your repository uses Git or Jujutsu (jj) for version control and selects the appropriate command to retrieve PR review data, adapting to your VCS without manual configuration.

Why use a dedicated tool to review GitHub pull requests instead of the web interface?

Using pr-review in the CLI surfaces unresolved comments and pending reviews in a concise, actionable format without switching context. It filters out outdated feedback and lets you focus reviews by person, speeding up review triage during active development.