review-pr-findings

Review and address GitHub pull request review comments on the current branch.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Handling pull request review feedback is time-consuming: you must fetch inline comments, judge which findings are valid, implement fixes, validate them, write professional replies, and resolve threads. This Skill orchestrates that entire loop with the GitHub CLI so no finding is missed and no change is applied without approval. ## Core Features & Use Cases - PR Discovery and Comment Fetching: Locates the pull request for the current branch and retrieves inline comments, review context, and thread replies via gh API calls. - Finding Triage: Analyzes each finding against full file context and repository conventions, classifying it as APPLY, PARTIALLY APPLY, DISCUSS, or DECLINE with a proposed fix and reply. - Validated Fixes and Thread Resolution: Applies only approved changes, runs the repository's checks (e.g., pnpm typecheck, pnpm check), posts replies, and resolves review threads through GraphQL mutations. - Use Case: A reviewer leaves eight inline comments on your feature branch. Run this Skill to get a per-finding analysis with recommendations, approve the valid fixes, and have replies posted and threads resolved automatically. ## Quick Start Review the pull request feedback on my current branch, analyze each finding, and help me apply the approved fixes and reply to reviewers.

Frequently Asked Questions about review-pr-findings

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

FAQPage Schema
How do I address GitHub pull request review comments automatically?▼

Use the GitHub CLI to fetch inline comments with gh api, analyze each finding against full file context, then apply approved fixes and post replies. This Skill classifies findings as APPLY, PARTIALLY APPLY, DISCUSS, or DECLINE before any code changes.

How to resolve GitHub review threads with the gh CLI?▼

Fetch unresolved thread IDs with a GraphQL query on reviewThreads, then call the resolveReviewThread mutation with each thread ID. Only resolve threads that were addressed or explicitly declined with a documented reason.

Does this work with repositories that have no pull request open?▼

No, the workflow requires an existing pull request for the current branch. If none exists, it notifies you and asks whether to create one; if multiple exist, it asks which number to use.

Can it apply reviewer suggestions without my approval?▼

No, every finding is presented with analysis, a recommendation, and a proposed change first. Code edits, replies, commits, and pushes each require explicit user approval before execution.

What validation runs after applying review fixes?▼

It uses the repository's existing validation scripts, preferring pnpm typecheck and pnpm check when available. Narrower or project-specific checks are run when those match the repository's conventions.