What problem does it solve? Merging many open pull requests one by one is slow and error-prone: reviews go stale, merge order causes conflicts, linked issues stay open, and a regression can slip into staging. This Skill orchestrates the whole batch so each PR is verified, merged in a safe order, and its linked issue or backlog item is closed. ## Core Features & Use Cases - Parallel pre-merge verification: Runs a read-only review workflow per PR producing clean / needs-changes / superseded / blocked verdicts, with an optional deep mode that checks out each PR and proves net-new tests with a red-green run. - Serial ordered merging: Merges PRs one at a time in ascending order to the staging branch (never main), re-checking mergeability at each step and recovering from conflicts without stranding the batch. - Per-merge closeout and fleet mode: Closes linked GitHub issues and backlog items after each merge, and supports cohorts of autogenerated error-fix PRs via an integration-branch flow with park rules and a Linear sweep. - Use Case: You have 12 reviewed PRs waiting on the homolog staging branch. Invoke the skill to verify all 12 in parallel, fix or park the flagged ones, merge the rest serially, close their issues, and hand the full test suite to the operator. ## Quick Start Ask the agent to run /batch-merge-prs to verify and merge all open pull requests into the staging branch.