Help us improve
Share bugs, ideas, or general feedback.
Batch resolves issues across all open PRs in the current repo: spawns parallel agents to fix CI failures and review comments, auto-commits and pushes fixes. Caps at 5 PRs by default.
npx claudepluginhub uniswap/ai-toolkit --plugin development-pr-workflowHow this skill is triggered — by the user, by Claude, or both
Slash command
/development-pr-workflow:resolve-all-prsopusThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Batch resolve issues across all your open pull requests in the current repository. Spawns parallel agents to address review comments and CI failures on each PR, automatically committing and pushing fixes.
Iterates through multiple open PRs authored by the current user, addressing feedback and CI issues across the set.
Resolves GitHub PR issues including review comments, CI failures via triage-dispatch workflow with code edits, replies, and verification.
Resolves all unresolved GitHub PR review comments in parallel by spawning agents per thread, implementing fixes, committing changes, marking threads resolved via GraphQL, and verifying completion.
Share bugs, ideas, or general feedback.
Batch resolve issues across all your open pull requests in the current repository. Spawns parallel agents to address review comments and CI failures on each PR, automatically committing and pushing fixes.
| Argument | Type | Default | Description |
|---|---|---|---|
max | number | 5 | Maximum number of PRs to process |
gh api usermax PRs (default: 5)1. Get GitHub username
↓
2. List open PRs (author:me, newest first)
↓
3. Cap at max PRs
↓
4. For each PR (in parallel):
└─→ Spawn Task agent with review-executor-agent
└─→ Fix CI issues
└─→ Address review comments
└─→ Auto-commit and push each fix
↓
5. Collect results from all agents
↓
6. Output summary report
# Get current GitHub user
gh api user --jq '.login'
# Get current repo info
gh repo view --json owner,name --jq '"\(.owner.login)/\(.name)"'
Use the GitHub MCP or gh CLI to list PRs:
# List open PRs authored by current user, newest first
gh pr list --author @me --state open --json number,title,url,createdAt --limit {max}
For each PR, spawn a Task agent with the review-executor-agent subagent type:
Task(
subagent_type: "development-pr-workflow:review-executor-agent",
prompt: "Resolve all issues on PR #{pr_number} in {owner}/{repo}.
IMPORTANT: This is an AUTOMATED batch run. You MUST:
1. Fix all CI failures first
2. Address all review comments
3. AUTO-COMMIT each fix with a descriptive message
4. AUTO-PUSH after each commit
5. Do NOT ask for confirmation - commit and push immediately
PR URL: {pr_url}
PR Title: {pr_title}
After completing all fixes, report:
- Number of commits made
- Summary of changes
- Any issues that could not be resolved",
run_in_background: true
)
After spawning all agents, wait for them to complete by reading their output files. Track:
Provide a structured summary:
## Batch PR Resolution Summary
### Processed PRs: {count}/{total}
| PR | Status | Commits | Notes |
| ---- | ---------- | ------- | ------------------- |
| #123 | ✅ Success | 3 | All issues resolved |
| #456 | ✅ Success | 1 | CI fixed |
| #789 | ❌ Failed | 0 | Error: {reason} |
### Failed PRs (require manual attention)
- **PR #789**: {error_details}
### Total Changes
- **Commits made**: {total_commits}
- **PRs resolved**: {success_count}
- **PRs failed**: {fail_count}
This skill AUTO-COMMITS and AUTO-PUSHES changes. Unlike the single-PR resolver, this batch mode operates autonomously to maximize throughput. Each fix is committed granularly with a descriptive message.
# Resolve issues on up to 5 PRs (default)
/resolve-all-prs
# Resolve issues on up to 10 PRs
/resolve-all-prs max=10
# Resolve issues on up to 3 PRs
/resolve-all-prs max=3