resolve-pr-feedback

Evaluate GitHub PR review comments, apply fixes, post replies, and resolve threads.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/xbpk3t/ce-codex --skill resolve-pr-feedback-xbpk3t
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: resolve-pr-feedback
Source: https://github.com/xbpk3t/ce-codex/tree/main/skills/resolve-pr-feedback
Command: npx skills add https://github.com/xbpk3t/ce-codex --skill resolve-pr-feedback-xbpk3t

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires gh, jq, and includes scripts (resource) components.

What problem does it solve?

This Skill automates the evaluation and remediation of GitHub pull request review feedback, converting reviewer comments and threads into targeted fixes, replies, and resolved threads to reduce manual review overhead.

Core Features & Use Cases

  • Automated triage of unresolved inline review threads, top-level PR comments, and review submission bodies with actionability and already-replied checks.
  • Cluster analysis to detect systemic issues, dispatch of resolver agents per-thread or per-cluster with batching and file-conflict avoidance, and a verify-and-iterate loop with human escalation.
  • Built-in commit, push, reply, and thread-resolve steps using repository-local helper scripts; suitable for nightly runs or on-demand fixes for busy PRs.
  • Use case: run on a feature branch to fix several reviewer nitpicks, address logic issues, and close resolved threads in one coordinated run.

Quick Start

Run the skill for the current branch's PR to fetch unresolved review threads, apply fixes or replies, and resolve addressed threads.

Frequently Asked Questions about resolve-pr-feedback

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

FAQPage Schema
How do I automatically resolve GitHub pull request review comments?▼

You can automatically resolve GitHub pull request review feedback by evaluating comments, making code changes, posting replies, and resolving review threads using repository-local helper scripts that fetch threads and map comments for batch processing.

Can I batch resolve unresolved inline PR review threads in one run?▼

Yes, you can batch resolve unresolved inline PR review threads by dispatching resolver agents per-thread or per-cluster while avoiding parallel file conflicts, enabling coordinated fixes for multiple reviewer nitpicks and logic issues in a single run.

What's the best way to triage top-level PR comments and review submission bodies?▼

Automated triage of top-level PR comments and review submission bodies performs actionability and already-replied checks, then detects systemic issues through cluster analysis before dispatching targeted resolver agents with a verify-and-iterate loop.

Do I need gh and jq installed to automate PR thread resolution?▼

Yes, you need both gh and jq installed as dependencies, because the Skill operates using repository-local helper scripts that rely on gh to fetch threads, map comments, post replies, and resolve threads via the GitHub API.

Does automated PR review resolution work with nightly runs on busy feature branches?▼

Automated PR review resolution is suitable for nightly runs or on-demand fixes for busy feature branches, applying built-in commit, push, reply, and thread-resolve steps with human escalation when verification fails.

Why does resolving multiple PR review threads sometimes cause file conflicts?▼

Parallel resolution of multiple PR review threads can cause file conflicts when separate resolver agents attempt simultaneous changes to the same files, so the Skill applies batching and file-conflict avoidance to coordinate work.