원클릭으로
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 직업 분류 기준
| name | executing-plans |
| description | Use when executing approved plans. Wave-based execution with fresh subagent per task. |
∀ 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:
Use when making git commits. Conventional commit format and rules.
Use when running security review on a diff/PR/file. Research-vs-Reporting discipline, three-tier confidence gate, attacker-controllable taxonomy.
Use when invoking plannotator for approval review of generated .tff-cc milestone artifacts (plan, verification, spec).
Use when starting design or discovery work. MUST use before any creative work.
Use when the user wants to report a bug, file an issue, or send feedback about tff-cc. Triggers on phrases like 'report issue', 'file a bug', 'tff-cc broke', 'something is wrong with tff-cc', 'open an issue', '/report-issue'.
Use when creating, refining, or composing skills. Evidence-driven pattern analysis.