review-pr

Reviews GitHub pull requests and resolves outstanding review comments using the GitHub CLI.

1|Updated Mar 8, 2026
One-click install
npx skills add https://github.com/kubrickcode/cine-mirror --skill review-pr-kubrickcode
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: review-pr
Source: https://github.com/kubrickcode/cine-mirror/tree/main/.agents/skills/review-pr
Command: npx skills add https://github.com/kubrickcode/cine-mirror --skill review-pr-kubrickcode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Addressing pull request feedback requires manually fetching review threads, checking which comments are still unresolved, verifying whether each issue still exists in the code, and applying fixes one by one. This Skill automates that entire loop so you can respond to PR feedback quickly and consistently. ## Core Features & Use Cases - Unresolved Thread Detection: Uses the GitHub GraphQL API to fetch review threads and filters out resolved ones via the isResolved field. - Issue Verification: Reads the referenced source files to confirm whether each commented issue still exists before acting on it. - Automatic Fixes: Applies straightforward fixes directly with Edit/Write tools, and asks the user only when changes involve design decisions or breaking changes. - Use Case: A reviewer left eight comments on your PR overnight. Run this Skill with the PR URL to get a structured report of which issues remain, have the simple ones fixed automatically, and receive a summary of items needing discussion. ## Quick Start Ask the assistant to review the pull request at a given GitHub URL and address all unresolved review comments.

Frequently Asked Questions about review-pr

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

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

Provide the pull request URL and the Skill fetches review threads via the GitHub GraphQL API, filtering by the isResolved field. It then reads each referenced file, verifies whether the issue still exists, and reports or fixes remaining problems.

How to automatically fix PR review comments with GitHub CLI?▼

The Skill uses the gh CLI to fetch PR metadata and review threads, then applies straightforward fixes directly using file editing tools. Fixes involving architectural decisions, multiple valid approaches, or breaking changes are escalated to the user instead.

Does this work with private GitHub repositories?▼

Yes, it works with private repositories as long as the gh CLI is authenticated with an account that has access. All PR data is fetched through the authenticated gh CLI and GitHub API.

Can it skip review threads that are already resolved?▼

Yes, resolved threads are intentionally skipped using the isResolved field from the GraphQL query. It also double-checks unresolved threads against the current code and skips comments whose issues were already fixed.

What are the limitations of automated PR comment resolution?▼

Automatic fixes are only applied to straightforward issues. Concerns requiring design decisions, ambiguous requirements, or potentially breaking changes are flagged for user discussion rather than changed automatically.