fix-pr-comments

Fetch and resolve GitHub PR review comments with batched file edits.

223|68|Updated Aug 18, 2025
One-click install
npx skills add https://github.com/Melvynx/aiblueprint --skill fix-pr-comments-melvynx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix-pr-comments
Source: https://github.com/Melvynx/aiblueprint/tree/main/claude-code-config/skills/git-fix-pr-comments
Command: npx skills add https://github.com/Melvynx/aiblueprint --skill fix-pr-comments-melvynx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates addressing PR reviews by applying reviewer-requested changes across a codebase, reducing manual follow-up and PR churn.

Core Features & Use Cases

  • Fetch PR comments and reviews from GitHub and inline discussion
  • Analyze and map each comment to exact file:line changes
  • Batch edits per file using MultiEdit to minimize churn
  • Commit and push fixes with conventional commits
  • Guardrails: avoid unrelated changes and preserve original context
  • Use Case: When a PR has multiple review requests across files, run this Skill to apply all requested changes and push a cohesive patch.

Quick Start

Execute the command to apply PR fixes: npx aiblueprint-cli@latest claude-code fix-pr-comments

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 fix unresolved GitHub PR review comments?

To automatically fix unresolved GitHub PR review comments, use this Skill to fetch PR data, analyze inline code comments and review notes, then batch and push changes. It maps each comment to exact file lines and applies fixes using MultiEdit workflows.

Do I need the gh CLI and git tooling to automate PR review fixes?

Yes, you need the gh CLI and git tooling to automate PR review fixes. This Skill requires both tools to fetch pull request data from GitHub repositories and to commit and push the requested code changes back to the remote branch.

How does batching code review fixes per file work with MultiEdit?

Batching code review fixes per file with MultiEdit works by analyzing all requested PR changes, grouping them by target file, and applying multiple edits in a single operation. This minimizes file churn and generates a cohesive patch for commit and push.

Can I apply GitHub pull request review changes across multiple files automatically?

Yes, you can apply GitHub pull request review changes across multiple files automatically. The Skill analyzes all inline discussion and review notes, batches the requested edits per file, and pushes a single cohesive patch using conventional commits.

What is the best way to avoid unrelated changes when automating PR fixes?

The best way to avoid unrelated changes when automating PR fixes is to use guardrails that preserve original context. This Skill strictly applies only reviewer-requested modifications and commits them using conventional commit messages.

What are the limitations of automating GitHub code review fixes?

Limitations of automating GitHub code review fixes include dependency on the gh and git tooling, and the requirement for a valid GitHub repository with open pull requests. It handles inline code comments and review notes but avoids unrelated changes to preserve context.