fix-pr-comments

Resolve PR review comments by extracting file:line references and committing fixes.

3|3|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/twikus/claude-configuration --skill fix-pr-comments-twikus
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix-pr-comments
Source: https://github.com/twikus/claude-configuration/tree/main/claude-code-config/skills/git-fix-pr-comments
Command: npx skills add https://github.com/twikus/claude-configuration --skill fix-pr-comments-twikus

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automatically fetches PR review comments and applies all requested changes to the codebase, ensuring follow-through on reviewer feedback and speeding up merge readiness.

Core Features & Use Cases

  • Automated comment resolution: Fetches both review comments and inline code comments and converts them into concrete edits.
  • Plan, batch, and apply changes: Analyzes references to specific files and lines, groups edits by file, and uses MultiEdit for efficient, per-file changes.
  • Commit and push: Creates a concise fix commit and pushes to the PR branch to update the pull request automatically.

Quick Start

Use this skill to fetch all unresolved PR comments on the current branch, apply the required changes, commit with a fix message, and push the updates to the pull request.

Frequently Asked Questions about fix-pr-comments

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

FAQPage Schema
How do I automatically resolve GitHub PR review comments?

To automatically resolve GitHub PR review comments, you can fetch unresolved comments, extract file and line references, apply the required code edits, and commit the fixes directly to the PR branch using git and gh CLI commands.

Can I batch code changes from pull request comments by file?

Yes, you can batch code changes from pull request comments by grouping extracted file and line references per file, which allows for efficient, grouped edits before committing the fixes to your branch.

What is the best way to automate push fixes for pull request reviews?

The best way to automate push fixes for pull request reviews is to read PR metadata, identify exact code locations, apply batch edits, and push a concise fix commit to the PR branch using gh and git operations.

Do I need the GitHub CLI to automate pull request comment fixes?

Yes, you need the GitHub CLI installed because the automated pull request comment fixing process relies on gh pr status and gh pr review commands to fetch metadata and manage the review workflow.

How does automated PR hygiene handle inline code review comments?

Automated PR hygiene handles inline code review comments by fetching both general review comments and inline code comments, converting them into concrete edits, and committing the changes to update the pull request automatically.