원클릭으로
implement
Dispatch each phase of an approved plan to a fresh subagent with proportional verification; re-invoke to resume
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Dispatch each phase of an approved plan to a fresh subagent with proportional verification; re-invoke to resume
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Start a new feature in an isolated git worktree with proportional verification
Diagnose and fix a bug in an isolated git worktree with reproduce-first, test-first methodology
Create a pull request with cleanup, fmt, and test gates
Safely restructure code in an isolated git worktree with test-preserved, incremental transformations
Start a new feature in an isolated git worktree with proportional verification
Diagnose and fix a bug in an isolated git worktree with reproduce-first, test-first methodology
| name | implement |
| description | Dispatch each phase of an approved plan to a fresh subagent with proportional verification; re-invoke to resume |
| when_to_use | when `$agent-dashboard:feature` (or `$agent-dashboard:fix`, `$agent-dashboard:refactor`, `$agent-dashboard:chore`) has produced a plan with a `## Phases` block and the user opted into dispatch at the probe. Also the resume primitive — re-invoke on a partially-done worktree to pick up at the first pending phase. NOT for fresh features (use `$agent-dashboard:feature`), inline implementation on small features (also `$agent-dashboard:feature`), or non-code work. |
| disable-model-invocation | true |
| effort | max |
<codex_skill_must>
.../worktrees/<app>/<name>. Halt with a clear error otherwise — this skill runs only inside a feature worktree..feature-plan-path first; fall back to a plan-file search only if the sentinel file is missing.- [ ] phase to a fresh spawn_agent with role worker. Strictly sequential — never overlap phases.git log --oneline <prev-sha>..HEAD must show exactly one new commit. Halt on either failure.- [ ] → - [x] checklist line. Never edit the ### Phase X: body.spawn_agent call must be followed by wait_agent.
</codex_skill_must>Run the dispatch loop on a worktree with an approved multi-phase plan.
Opt-in. Invoked after $agent-dashboard:feature (or a sibling task skill) probes the user at plan approval and the user picks "Hand off to $agent-dashboard:implement". Each phase dispatches to a fresh Codex worker via spawn_agent, keeping the orchestrator session slim. Re-invoking on a partially-done worktree resumes from the first pending phase — no separate resume mode.
Follow these phases in order. Each phase has a gate — do not proceed until the gate is satisfied.
If a dispatched phase touches browser UI, Playwright, dev-server ports, screenshots, or interactive Browser/Chrome inspection, include ../_shared/ui-automation.md in the subagent context and pass the resolved worktree-local UI resources explicitly.
Include ../_shared/verification-profiles.md in every subagent prompt so Verification profile names remain defined even when agent-dashboard is installed without external core rules.
Confirm cwd is a worktree. Run git rev-parse --show-toplevel; the path must match .../worktrees/<app>/<name>. If not, halt: "Run this from inside a feature worktree, not the main checkout."
Read .feature-plan-path from the worktree root. Its single line is the absolute path to the approved plan markdown:
cat .feature-plan-path
Fallback if the sentinel is missing (older $agent-dashboard:feature run, or deleted):
.feature-plan.md or plans/*.md.request_user_input when available, including the current branch name in the prompt for context. User picks one or "Other" to type a path. If request_user_input is unavailable, ask one concise direct question.Wait for env setup. Check the worktree root for the env sentinels:
.env-setup-done → proceed..env-setup-failed → surface contents, halt.$agent-dashboard:feature Phase 2's background agent is still running. Wait.Gate: Worktree confirmed, plan file path resolved, env setup complete.
Read the plan's ## Phases checklist, dispatch each pending phase to a subagent, verify the phase's declared proof command, flip the checkbox. Resume is implicit — phases marked [x] are skipped.
Parse the checklist. Read the plan file (from Phase 1). Extract each - [ ] / - [x] line under ## Phases, with its **Phase X: name** identifier and deps.
Halt if no ## Phases block. The user opted into $agent-dashboard:implement on a plan without phase structure. Surface: "Plan has no ## Phases block. Either restructure it using the phase format described in $agent-dashboard:feature, or return to $agent-dashboard:feature for inline implementation." Halt.
Pick the next pending phase (- [ ]) in checklist order. If all phases are [x], skip to Phase 3.
Slice the phase body. Find the matching ### Phase X: name heading; capture through the next ### heading or end-of-file. This is the dispatch unit.
If the phase body mentions UI automation, browser testing, Playwright, screenshots, or interactive inspection, also read ../_shared/ui-automation.md and include its relevant rules in the subagent prompt.
Always read ../_shared/verification-profiles.md and include its relevant rules in the subagent prompt.
Record pre-state. <prev-sha> = git rev-parse HEAD. The post-dispatch check uses this to confirm one new commit landed.
Dispatch the subagent (foreground, sequential — never overlap phases). Use Codex spawn_agent with the worker role, then call wait_agent for that agent before continuing. Do not set model; the dashboard controls model selection at session level:
spawn_agent({
agent_type: "worker",
message: <subagent prompt template, see below>,
})
wait_agent({ targets: ["<agent-id>"] })
Verify when the subagent returns:
make test/make test-fast only when the phase is Full or the risk cannot be bounded. On failure, surface output verbatim.git log --oneline <prev-sha>..HEAD → must show exactly one new commit. Zero: subagent didn't commit; halt. Multiple: surface and ask the user to inspect.request_user_input when available with options ["Retry the phase", "Skip and mark done anyway", "Abort the loop"]. If unavailable, ask one concise direct question with those choices.Mark done. Edit the plan: flip the matching - [ ] → - [x], append the short commit SHA in parens. Only the checklist line — don't touch the ### Phase X: body.
- [x] **Phase X: name** ... (a1b2c3d)
Loop to step 3.
Gate: All phases in the ## Phases checklist are marked - [x] and each phase's declared proof command is green.
{placeholders} filled in)You are implementing Phase {ID} of an approved plan.
Worktree: {worktree_path}
Plan file (read-only reference): {plan_path}
Phase ID: {ID}
Phase scope (the only section you should implement):
<<<phase-body>>>
{inline copy of the `### Phase {ID}:` heading and body from the plan}
<<<end-phase-body>>>
Rules:
1. Follow the phase's Verification profile using active AGENTS.md/core instructions when present and the included verification-profile glossary as the standalone fallback. Execute the named proof command, avoid implementation-only tests, and use full `make test` only for Full phases or when the phase risk cannot be bounded.
2. Implement ONLY this phase. Do not touch files outside this phase's declared scope.
3. After the profile proof passes, commit with:
git commit -m "feat: {phase-id-kebab} <one-line description>"
4. Do NOT modify the plan file. Do NOT update checkboxes — the orchestrator owns that.
5. If the phase is ambiguous or blocked, STOP and report a question instead of guessing.
6. If this phase touches UI automation, apply the provided UI automation policy and use only the worktree-local port/base URL/profile/output paths.
Report back with:
- Commit SHA
- Verification profile and proof status (pass/fail + key output line)
- Files changed (paths)
- Anything unexpected
Review all changes for correctness, security, and convention adherence. Apply all project rules and conventions that are in your context.
Review the full branch diff (git diff $(git merge-base HEAD main)..HEAD), not just the last phase — subagents see only their phase, so cross-phase coherence is the orchestrator's responsibility.
Gate: No critical or high-severity issues remain.
Tell the user:
Implementation complete. All phases marked done. Open the PR with:
$agent-dashboard:pr
Gate: User has been pointed at $agent-dashboard:pr.
No separate resume mode. Re-invoking $agent-dashboard:implement on a partially-done worktree just works:
.feature-plan-path.[x] already; the loop starts at the first [ ].[x].The plan file's checkbox state is the source of truth — the orchestrator's in-memory state is disposable. If the session itself got compacted mid-flight, just re-invoke. The in-flight phase whose checkbox is still - [ ] will simply be retried.
If you catch yourself saying or thinking any of these, pause and re-read the relevant phase:
## Phases block, but I can infer the phases from the prose" → Phase 2 step 2 violation. Halt and point the user back to $agent-dashboard:feature for inline implementation..feature-plan-path is missing, but the latest plan is probably right" → Phase 1 step 3 violation. Show recent plans and let the user confirm.gh pr create to skip Phase 4" → blocked by the pr-skill-gate hook. Use $agent-dashboard:pr.