resolve_pr_parallel

Resolve GitHub PR review threads with parallel GraphQL mutations.

Updated Feb 25, 2026
One-click install
npx skills add https://github.com/robwestz/bacowr_b --skill resolve-pr-parallel-robwestz
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: resolve_pr_parallel
Source: https://github.com/robwestz/bacowr_b/tree/main/every-marketplace/plugins/compound-engineering/skills/resolve-pr-parallel
Command: npx skills add https://github.com/robwestz/bacowr_b --skill resolve-pr-parallel-robwestz

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

Resolve outstanding PR review threads by executing parallel resolution tasks.

Core Features & Use Cases

  • Parallel resolution: spawn a dedicated pr-comment-resolver for each unresolved thread to accelerate PR feedback closure.
  • Planning & grouping: aggregate unresolved items by type (code changes, questions, style fixes, tests) to drive concurrent work.
  • Verification: re-fetch the threads to confirm all are resolved before pushing changes.

Quick Start

Use the PR parallel-resolver to automatically address all current unresolved PR threads.

Frequently Asked Questions about resolve_pr_parallel

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

FAQPage Schema
How do I resolve multiple pull request review threads in parallel?

Resolve pull request review threads in parallel by spawning a dedicated resolver for each unresolved thread. This parallel resolution approach accelerates PR feedback closure by executing concurrent tasks instead of handling comments sequentially.

How do I automate closing unresolved GitHub PR review comments?

Automate closing unresolved GitHub PR review comments by grouping them by type, such as code changes, questions, style fixes, and tests. The system aggregates unresolved items to drive concurrent work and invokes GraphQL mutations to mark threads as resolved.

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

Yes, you need both gh and jq installed to automate PR thread resolution. These dependencies are required to fetch unresolved threads via the GitHub CLI and parse JSON responses to map them to per-thread resolvers.

Does resolving PR review threads in parallel verify changes before pushing?

Yes, resolving PR review threads in parallel includes a verification step that re-fetches the threads to confirm all are resolved before pushing changes. This ensures no outstanding comments remain before the final commit is pushed.

What is the best way to handle large numbers of code review comments on a GitHub pull request?

The best way to handle large numbers of code review comments is using parallel resolution tasks. This approach maps each unresolved thread to a dedicated resolver, enabling concurrent handling of suggested fixes, questions, and style changes.