resolve-pr-parallel

Resolve all unresolved pull request comments in parallel via GitHub API.

Updated Mar 23, 2026
One-click install
npx skills add https://github.com/apollostreetcompany/codex-compound --skill resolve-pr-parallel-apollostreetcompany
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: resolve-pr-parallel
Source: https://github.com/apollostreetcompany/codex-compound/tree/main/plugins/compound-engineering/skills/resolve-pr-parallel
Command: npx skills add https://github.com/apollostreetcompany/codex-compound --skill resolve-pr-parallel-apollostreetcompany

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill addresses the time-consuming task of resolving all PR comments in a single pull request, allowing for parallel processing and streamlined code reviews.

Core Features & Use Cases

  • Parallel Comment Resolution: Handles all unresolved PR comments in parallel, reducing review time.
  • Git Context Detection: Automatically detects the current git context to work with any PR.
  • Task Grouping: Groups unresolved items by type for efficient processing.
  • Automated Committing & Resolving: Automatically commits changes and resolves threads using GraphQL mutations.
  • Verification: Confirms all threads are resolved and changes are committed.

Quick Start

To resolve all PR comments in parallel for PR number 123, use the following command:

/skill resolve-pr-parallel --pr 123

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 all PR comments in parallel on GitHub?

You can resolve all unresolved PR comments in parallel by running a script that fetches GitHub pull request threads, groups them by type, and processes them concurrently. This method automatically commits changes and resolves threads using GraphQL mutations.

Does parallel PR comment resolution work with any GitHub pull request?

Yes, this parallel PR comment resolution approach works with any GitHub pull request by automatically detecting the current git context. You provide the specific PR number, and the automated script fetches and processes all unresolved comments for that thread.

What is the best way to automate resolving GitHub PR review threads?

The best way to automate resolving GitHub PR review threads is using a parallel processing script that leverages GraphQL mutations. It fetches unresolved comments, plans tasks, resolves them concurrently, commits changes, and verifies the results automatically.

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

Yes, you need both gh and jq installed to automate GitHub PR comment resolution. The gh tool provides GitHub API access for fetching pull request data, while jq processes JSON responses to group and manage unresolved comment threads efficiently.

How does parallel processing improve GitHub code review efficiency?

Parallel processing improves GitHub code review efficiency by handling multiple unresolved PR comments concurrently rather than sequentially. The script groups unresolved items by type and resolves them in parallel, significantly reducing the overall time needed to complete code reviews.