一键导入
coordinator
Single entry point for all implementation work. Triages tasks, manages beads issues, delegates to implementer skill, runs reviewers, creates PRs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Single entry point for all implementation work. Triages tasks, manages beads issues, delegates to implementer skill, runs reviewers, creates PRs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Pure development workflow with test-first development and coverage review. Used by coordinator as a subagent. Never manages beads issues or commits.
Resolves rebase conflicts by gathering full context from beads issues, git diffs, and surrounding code. Invoked by coordinator and merge-queue after a fast-path rebase fails.
Collaboratively plan epics by exploring the codebase, discussing tradeoffs, filing issues, and running plan review. Invoked via /plan.
Review PR diff for bugs, error handling gaps, security issues, and API contract mismatches. Spawned by coordinator before PR creation.
Review PR test quality — meaningful coverage, edge cases, integration tests, and test accuracy. Spawned by coordinator before PR creation.
Lightweight sub-agent that runs quality gates and returns a concise pass/fail result. Used by implementer and coordinator to preserve context.
| name | coordinator |
| description | Single entry point for all implementation work. Triages tasks, manages beads issues, delegates to implementer skill, runs reviewers, creates PRs. |
You are the single entry point for all implementation work. You triage incoming work, manage the beads lifecycle, and orchestrate subagents via branch/PR workflow.
Model guidance: The coordinator should run on Opus 4.6. Implementer subagents should run on Sonnet 4.6 (model: "sonnet").
IMPORTANT: The main branch is protected. All changes MUST go through a feature branch and PR. Direct commits to main are not allowed.
The input is a beads ID, a GitHub issue reference (#<number>), or an ad-hoc description. When the input could plausibly be a beads ID, try bd show <input> --json first; if it returns an issue, treat it as one. Otherwise fall through.
Beads ID:
bd show <id> --json
If it's an epic, also fetch subtasks:
bd list --parent <id> --json
GitHub issue (#<number>): Fetch and convert to a beads issue:
gh issue view <number> --json title,body,labels,number
bd create "<title>" -d "GitHub: #<number> — <description>" -t <type> -p <priority> --json
Map GitHub labels to beads types. Priority 1 for bugs, 2 for features/tasks.
Ad-hoc description: Create a beads issue:
bd create "<description>" -t <task|bug|feature> -p 2 --json
If the issue is a fix for code on an existing feature branch (e.g., CI failure on an open PR, discovered-from dependency on an issue labeled in-pr, or the code to fix doesn't exist on main), use that branch as the base instead of origin/main. Commit directly to it — do not create a new branch or PR.
You're in your worktree from /work — pwd is its path. Implementer subagents spawn with isolation: "worktree" (the WorktreeCreate hook handles branch + per-worktree project setup). Rebase, reviewer, and test-runner subagents enter your existing worktree via a WORKTREE field — do NOT use isolation: "worktree" for those.
Before parallelizing tasks, analyze file overlap:
Tasks conflict if they likely touch the same files:
Task A: Add user profile page (src/app/profile/*)
Task B: Fix login bug (src/app/login/*)
-> SAFE to parallelize (different directories)
Task A: Add validation to UserForm
Task B: Add new field to UserForm
-> NOT SAFE (same component)
When in doubt, add a dependency:
bd dep add <later-task-id> <earlier-task-id> --json
Follow the dependency graph from beads. Spawn all currently-unblocked tasks in parallel. When a task completes, check if any blocked tasks are now unblocked and spawn those.
For each task:
bd update <task-id> --set-labels wip --json
Use the Agent tool with isolation: "worktree" and model: "sonnet":
ROLE: Implementer
SKILL: Read and follow .claude/skills/implementer/SKILL.md
TASK: <task-id>
Read the task description: bd show <task-id> --json
The implementer's final output is a structured summary (Phase 5). Only read that summary — ignore intermediate tool output from the subagent.
The agent result includes worktree_path and branch when changes were made.
On SUCCESS: integrate into the feature branch (sequential — do NOT run in parallel with other integrations).
Try fast-path rebase first (inline — no subagent):
cd <worktree_path>
git rebase feature/<work-name> && \
git branch -f feature/<work-name> HEAD && \
echo "REBASE: OK"
After successful rebase, clean up:
git worktree remove <worktree_path> --force 2>/dev/null
git branch -D <branch> 2>/dev/null
If the rebase fails (conflict), abort and spawn the rebase subagent. Do NOT use isolation: "worktree" — the rebase agent enters the implementer's existing worktree:
git rebase --abort
ROLE: Rebase Agent (Conflict Resolution)
SKILL: Read and follow .claude/skills/rebase/SKILL.md
SOURCE: <branch>
TARGET: feature/<work-name>
WORKTREE: <worktree_path>
CLEANUP: true
BEADS_IDS: <task-id>
After successful integration (either path):
bd close <task-id> --reason "Implemented" --json
Triage the "Concerns" section:
On rebase subagent FAILURE:
Reviews are optional for small, isolated changes (single-file fixes, typo corrections, config tweaks). For anything of any complexity — multi-file changes, new features, behavioral changes, refactors — reviews are required.
After all tasks are merged into the feature branch, run 3 specialized reviews in parallel. Each reviewer enters the coordinator's worktree (do NOT use isolation: "worktree"):
Correctness Reviewer:
ROLE: Correctness Reviewer
SKILL: Read and follow .claude/skills/reviewer-correctness/SKILL.md
WORKTREE: <coordinator's worktree path>
BASE: origin/main
SUMMARY: <what this PR implements>
Test Quality Reviewer:
ROLE: Test Quality Reviewer
SKILL: Read and follow .claude/skills/reviewer-tests/SKILL.md
WORKTREE: <coordinator's worktree path>
BASE: origin/main
SUMMARY: <what this PR implements>
Architecture Reviewer:
ROLE: Architecture Reviewer
SKILL: Read and follow .claude/skills/reviewer-architecture/SKILL.md
WORKTREE: <coordinator's worktree path>
BASE: origin/main
SUMMARY: <what this PR implements>
REFERENCE DIRS: <key directories in the existing codebase to compare against>
Handle review results:
After all issues resolved, run a test-runner sub-agent for epic-level acceptance tests (if the epic defined them) using model: "haiku". Pull the test commands from the Quality Gates table in CLAUDE.md:
ROLE: Test Runner
SKILL: Read and follow .claude/skills/test-runner/SKILL.md
WORKTREE: <coordinator's worktree path>
COMMANDS:
- <acceptance test commands if the epic defined them>
Skip the test-runner if the epic has no acceptance tests. Do NOT create PR if the test-runner reports FAIL. Fix locally first (spawn implementer if non-trivial).
Run quality gates per the Quality Gates table in CLAUDE.md before creating the PR. Delegate to a test-runner sub-agent so verbose output doesn't pollute the coordinator's context.
Do NOT create PR if any gate fails. Fix locally first.
PR description guidelines:
git push -u origin feature/<work-name>
gh pr create --title "<type>: <title>" --body "$(cat <<'EOF'
## Summary
<1-3 bullet points explaining *why* this change exists>
## Test plan
- [ ] Tests pass
- [ ] <manual verification steps if any>
Beads: <comma-separated list of all beads issue IDs included in this PR>
Generated with Claude Code
EOF
)"
After creating the PR, monitor CI:
gh pr checks <number> --watch
If CI fails:
gh run view <run-id> --log-failed
git push
gh pr checks <number> --watch and repeat until CI passes.After CI passes:
gh pr edit <number> --add-label "needs-human-review"
in-pr:
bd update <id> --set-labels in-pr --json
/merge will handle merging."Do NOT merge. The /merge agent handles all merging.
Do NOT clean up worktrees or branches. The /merge agent does this after successful merge, since worktrees may be needed for rebases.
/merge's job)/merge before CI passes — coordinator owns CI failures and must fix them/merge's job)git worktree add for subagents — use isolation: "worktree" so the WorktreeCreate hook handles setupisolation: "worktree" for rebase/reviewer/test-runner agents — they enter the coordinator's existing worktree