一键导入
executing-plans
Use when executing approved plans. Wave-based execution with fresh subagent per task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when executing approved plans. Wave-based execution with fresh subagent per task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when reviewing architecture decisions. C4 model, dependency inversion, hexagonal boundaries.
Use during discuss-slice and plan-slice to stress-test a spec or plan against domain vocabulary before approval.
Use during research-slice to build disposable experiments that answer technical uncertainty.
Use during project:init to scaffold repo-level agent configuration (CLAUDE.md, AGENTS.md, tracker labels).
Use when debugging. 4-phase investigation, root cause, minimal fix.
Use when implementing features/fixes. Iron law: ¬∃ production code without failing test.
| name | executing-plans |
| description | Use when executing approved plans. Wave-based execution with fresh subagent per task. |
| version | 1.0.0 |
| tags | ["process","execution"] |
∀ execute workflow, after plan approved.
Fresh subagent per task. Controller curates exactly what context is needed. ¬reuse agent across tasks (context pollution).
∀ wave ∈ waves (sequential):
claim task in tracker
b. Spawn fresh subagent with:
close task in trackersync state| Condition | Action |
|---|---|
| Wave has >1 task | Spawn parallel agents |
| Task requires specialized skill | Spawn with skill loaded |
| Task touches multiple domains | Spawn single agent with multiple skills |
| Implementation + verification separate | Spawn sequential agents |
| Condition | Action |
|---|---|
| Single simple task | Execute directly |
| Sequential dependency chain | Single agent, no parallelism |
| Context already loaded | Continue in same agent |
| Task is documentation only | Execute directly |
| Include | Reason |
|---|---|
| Task description + ACs | Scope definition |
| Exact file paths | No exploration needed |
| Relevant skills (TDD, architecture, commit-conventions) | Methodology injection |
| Code snippets from plan | Implementation hints |
| Exclude | Reason |
|---|---|
| Prior task context | Context pollution |
| Full SPEC.md (unless needed) | Token overhead |
| Full session history | Noise |
| Unrelated domain knowledge | Distraction |
Read task file paths from PLAN.md to decide which domain skills to load:
src/domain/, src/application/, src/infrastructure/) -> LOAD architecture skillssrc/cli/, src/presentation/) -> ¬ extra domain skill.github/, Dockerfile, etc.) -> LOAD commit-conventions onlyWhen subagents complete, aggregate results:
| Result Type | Aggregation Method |
|---|---|
| File changes | Git diff per task, merge to wave summary |
| Test results | Collect pass/fail counts, report failures |
| Task status | Mark closed/failed in tracker |
| Artifacts | Collect paths, report to controller |
Aggregation Rules: