ワンクリックで
merge-queue
Process open PRs — merge when CI passes, handle rebases, file issues for failures. Run in a dedicated window.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Process open PRs — merge when CI passes, handle rebases, file issues for failures. Run in a dedicated window.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Single entry point for all implementation work. Triages tasks, manages beads issues, decides direct vs. branch execution, delegates to implementer skill, runs reviewers, creates PRs.
Pure development workflow with test-first development and coverage review. Used by coordinator directly or as a subagent. Never manages beads issues or commits.
Review PR diff for bugs, error handling gaps, security issues, and API contract mismatches. Spawned by coordinator before PR creation.
Review filed implementation plans for architectural issues, duplication risks, and completeness. Spawned by planner as a subagent.
Review PR test quality — meaningful coverage, edge cases, integration tests, and test accuracy. Spawned by coordinator before PR creation.
Collaboratively plan epics by exploring the codebase, discussing tradeoffs, filing issues, and running plan review. Invoked via /plan.
| name | merge-queue |
| description | Process open PRs — merge when CI passes, handle rebases, file issues for failures. Run in a dedicated window. |
Process all open PRs. Merge what's ready, rebase what's behind, file issues for failures.
Run this in a dedicated terminal window. Invoke periodically with /merge while other windows do /work.
# Check CI status on main — failing main blocks the entire queue
gh run list --branch main --limit 1 --json status,conclusion
# List open PRs
gh pr list --json number,title,headRefName,statusCheckRollup,mergeable,body,reviewRequests,reviews
If main CI is failing: file a P0 beads issue (if one doesn't already exist), report prominently, and stop. Nothing can merge until main is green.
bd create "CI failing on main: <summary>" -t bug -p 0 --json
For each PR, determine its state:
| State | Action |
|---|---|
| CI passing, mergeable, no pending review | Merge |
| CI passing, mergeable, review requested but not approved | Skip, report |
| CI passing, mergeable, review approved | Merge |
| CI pending | Skip, report status |
| CI failing | File issue, report |
| Not mergeable (behind main) | Attempt rebase |
When multiple PRs are ready, use judgment to balance:
Before merging each PR, inspect its commits to decide how to merge:
gh pr view <number> --json commits --jq '.commits[] | "\(.oid[:8]) \(.messageHeadline)"'
Pick one of three strategies:
| Strategy | When to use | Command |
|---|---|---|
| Squash | All commits serve a single logical change, OR commits are messy/WIP (fixups, "wip", "try again", etc.) | gh pr merge <number> --squash |
| Merge | Commits represent distinct, well-structured concerns (e.g. "add handler" + "add tests" + "update docs") that are valuable to preserve individually | gh pr merge <number> --merge |
| Rebase cleanup | Commits mix good structure with noise — some are worth preserving but others should be squashed together. Use sparingly — only when clearly beneficial. | Rebase in worktree, force-push, wait for CI, then gh pr merge <number> --merge |
Decision guide:
When in doubt, squash. A clean single commit is always better than a messy multi-commit history.
For each mergeable PR (in priority order), using the chosen strategy:
gh pr merge <number> --squash|--merge # per Step 4
After each merge:
Beads: id1, id2 line)bd close <id> --reason "Merged in PR #<number>" --json
git worktree remove ../<project>-<branch-name> 2>/dev/null
git branch -d feature/<branch-name> 2>/dev/null
git pull origin main
Important: after each merge, re-check remaining PRs — merging one PR may make others unmergeable (need rebase) or may resolve conflicts.
When a PR is not mergeable (behind main):
git fetch origin main
# Use existing worktree if present, otherwise create one
cd <existing-worktree> # or: git worktree add ../<project>-rebase-<number> <branch>
git rebase origin/main
git push --force-with-lease
git add the files, git rebase --continue, and force-push. Always include a conflict summary in the report:
Resolved 2 conflicts during rebase of PR #18:
- go-backend/internal/server/server.go: adjacent route additions (kept both)
- frontend/package-lock.json: regenerated
After rebase, clean up any temporary worktree created for the rebase.
After a clean rebase, poll CI and merge when it passes. Don't just report "rebased, CI re-running" and stop — unmerged PRs accumulate conflicts. Poll every 60 seconds until CI completes:
# Poll until all checks finish
gh pr checks <number> --watch
# Then merge (using strategy from Step 4)
gh pr merge <number> --squash|--merge
If CI fails after the rebase, follow Step 7 (file an issue). But if it passes, merge immediately — don't wait for the user to re-run /merge.
Test failures are real. Never rerun. Never ignore.
When CI fails on a PR:
gh pr checks <number>
gh run view <run-id> --log-failed
bd create "CI failure on PR #<number>: <summary>" -t bug -p 1 --json
After processing all PRs, output a summary:
Merge Queue Summary:
- PR #12: Merged (closed bd-abc, bd-def)
- PR #15: CI passing, awaiting your review
- PR #18: Rebased, CI re-running
- PR #20: CI failing — filed bd-xyz
- PR #22: CI pending (2/3 checks done)
Action needed:
- bd-xyz: Test failure on PR #20, needs /work bd-xyz
- PR #15: Awaiting your review on GitHub
Always include beads issue IDs so the user can dispatch /work for fixes.
If there are no open PRs, report "No open PRs."
/work instead)