review-response

Responds to unresolved GitHub PR review comments with fixes, commits, and threaded replies.

218|11|Updated Jan 4, 2026
One-click install
npx skills add https://github.com/baseballyama/rsvelte --skill review-response-baseballyama
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: review-response
Source: https://github.com/baseballyama/rsvelte/tree/main/.claude/skills/review-response
Command: npx skills add https://github.com/baseballyama/rsvelte --skill review-response-baseballyama

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Handling GitHub pull request review feedback is tedious: you must find unresolved threads, decide which comments need code changes, fix them one by one, and reply to each reviewer. This Skill automates that entire loop while keeping you in control of the response plan. ## Core Features & Use Cases - Unresolved Thread Extraction: Uses the GitHub GraphQL API to fetch only unresolved review threads, with pagination support for PRs with over 100 threads. - Approval-Gated Workflow: Presents a table of each comment with a verdict (fix needed or not applicable) and waits for your approval before touching any code. - One-by-One Fix and Reply: For each comment, it fixes the code, runs fmt/clippy/tests, commits with Conventional Commits, pushes, and replies in the thread with the commit hash, matching the reviewer's language. - Knowledge Feedback Loop: When AI review bots (CodeRabbit, Devin, Copilot, Claude) raise valid points, it records the lesson into relevant skills or docs after your confirmation. - Use Case: You open a PR on an open-source Rust project and receive 12 review comments overnight. Run this Skill to triage all unresolved threads, approve a response plan, and have each item fixed, committed, and answered individually. ## Quick Start Ask the assistant to handle review comments on a pull request, for example by saying: respond to the review comments on PR 42.

Frequently Asked Questions about review-response

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

FAQPage Schema
How do I respond to GitHub PR review comments automatically?▼

Use this Skill with a PR number to fetch unresolved review threads via the GitHub GraphQL API. It proposes a fix-or-skip plan for each comment, then after your approval fixes code, commits, pushes, and replies to each thread individually.

How to fetch only unresolved review threads from a GitHub PR?▼

Use the GitHub GraphQL API reviewThreads query with the isResolved field, since the REST API does not expose resolution status. The Skill handles pagination with pageInfo when a PR has more than 100 threads.

Does it reply to reviewers in their own language?▼

Yes, replies match the reviewer's language, typically English for open-source projects or Japanese for Japanese comments. Templates include the fix summary and the commit hash, or a reasoned explanation when no change is made.

Can it handle AI bot review comments like CodeRabbit or Copilot?▼

Yes, comments from bots such as coderabbitai, devin-ai-integration, chatgpt-codex-connector, and claude are detected. After addressing them, the Skill proposes recording the lesson into relevant skill files or docs, with your confirmation.

What happens before any code is changed?▼

The Skill verifies each comment against the current code and presents a table with a verdict and planned action per item. No fixes, commits, or replies occur until you explicitly approve the plan.