review-apply

Fetch and classify GitHub PR review comments into questions, change requests, and acknowledgments.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Fetch and manage PR review feedback by automatically retrieving review comments, surfacing questions and change requests, and preparing changes for the current branch PR.

Core Features & Use Cases

  • Fetch and parse review comments for the PR associated with the current branch or a provided PR reference.
  • Classify comments into Question, Change request, or Acknowledgment, and reply on-thread for questions.
  • Implement requested changes on a worktree, run relevant linters/tests, and push commits back to the PR branch.
  • Provide a concise summary of actions taken and remaining items for the PR reviewer.

Quick Start

Run the /review-apply command to begin reviewing the PR on the current branch.

Frequently Asked Questions about review-apply

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

FAQPage Schema
How do I automate GitHub PR review feedback and apply code changes?

Automate GitHub PR review feedback by fetching and categorizing inline comments into questions, change requests, or acknowledgments. The tool replies to questions on-thread and implements requested changes on a worktree, running linters and tests before pushing commits back to the PR branch.

Can I fetch and reply to pull request review comments for my current branch?

Yes, you can fetch and reply to pull request review comments for your current branch. The automation identifies the PR using the current branch context or a provided PR number and URL, then uses the gh API to retrieve review data and reply directly on-thread to categorized questions.

What's the best way to implement change requests from PR reviews on a worktree?

The best way to implement change requests from PR reviews is by applying changes on an isolated worktree. This allows you to run relevant linters and tests defined in CLAUDE.md before pushing commits back to the PR branch, ensuring code quality and preventing broken builds.

Does this PR review automation work with GitHub URLs and branch contexts?

Yes, this PR review automation works with GitHub URLs, PR numbers, and current branch contexts. It uses the gh API to fetch PR data and parse review comments, classifying them into questions, change requests, or acknowledgments to streamline the review process.

How are PR review comments categorized and handled during automation?

PR review comments are categorized into Question, Change request, or Acknowledgment during automation. Questions receive on-thread replies, change requests are implemented on a worktree with lint and test steps, and a concise summary of actions taken and remaining items is provided for the reviewer.

Why do I need a worktree to apply changes from pull request reviews?

You need a worktree to apply changes from pull request reviews to isolate modifications from your main working directory. This ensures that linting and testing steps specified in CLAUDE.md run cleanly against the updated code before commits are pushed back to the PR branch.