address-pr-review

Fix GitHub pull request issues by addressing review comments and CI failures.

15|2|Updated Mar 11, 2026
One-click install
npx skills add https://github.com/mnapoli/skill-address-pr-review --skill address-pr-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: address-pr-review
Source: https://github.com/mnapoli/skill-address-pr-review/tree/main
Command: npx skills add https://github.com/mnapoli/skill-address-pr-review --skill address-pr-review

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires gh, jq, awk, sed, grep, jq.

What problem does it solve?

This Skill reduces the time and effort required to resolve GitHub pull request review comments and CI failures by automatically fetching the issues, making code changes, and replying to reviewers.

Core Features & Use Cases

  • Fetches unresolved review threads and ignores resolved ones: Retrieves only the open inline review threads that still need attention.
  • Detects failing CI checks and extracts failure details: Runs CI inspection for the current PR and surfaces failed job logs for faster debugging.
  • Closes the loop by replying (and optionally resolving): Posts a threaded reply per issue, and resolves the thread when the change matches the suggestion.

Quick Start

Run the command address-pr-review from a branch with an open pull request to automatically address unresolved review threads and failing GitHub Actions checks.

Frequently Asked Questions about address-pr-review

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

FAQPage Schema
How do I automatically fix unresolved GitHub pull request review comments?

To automatically fix unresolved GitHub pull request review comments, you can use an automation tool that fetches open review threads via GitHub GraphQL, applies code changes based on the feedback, and posts replies to resolve them.

Can I automatically debug and fix GitHub Actions CI failures for my pull request?

Yes, you can automatically debug GitHub Actions CI failures by running a helper script that extracts failed job logs for the current PR, allowing an agent to analyze the errors and push code fixes.

What's the best way to reply to and resolve inline code review threads on GitHub?

The best way to reply to and resolve inline code review threads is using a script that posts a threaded reply per issue and optionally resolves the thread via GitHub GraphQL when the suggested code change is applied.

Does this automated PR review tool require any specific command line dependencies?

Yes, this automated PR review tool requires command line dependencies including gh, jq, awk, sed, and grep to fetch review thread JSON, parse CI failure output, and interact with the GitHub API.

How do I fetch unresolved review threads while ignoring resolved ones on a GitHub PR?

To fetch unresolved review threads while ignoring resolved ones, run a helper script that retrieves only the open inline review threads requiring attention, outputting the data as JSON for further processing.