一键导入
executor
Use when monitoring controller execution progress, verifying coordination_log completeness, or managing phase transitions in the pipeline.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when monitoring controller execution progress, verifying coordination_log completeness, or managing phase transitions in the pipeline.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guided design exploration that produces implementation-ready documents through structured Q&A. Use before building to clarify requirements. TRIGGER: design, plan this, think through, architecture. NOT for: implementation (/run) or review (/run review).
Explains cAgents commands and recommends the right one for your task. Use when choosing between skills or learning how they work. TRIGGER: help, which command, how do I, what can cAgents do. NOT for: executing tasks directly.
Execute any task through coordinated agents. Use for building, fixing, writing, or any single-domain work. TRIGGER: run, implement, fix, build, create. NOT for: parallel work or cross-domain strategy (use /team).
Parallel multi-agent execution with wave-based quality gates. Use for complex tasks with 3+ parallelizable items, including cross-domain strategic work (via Strategic Mode). TRIGGER: team, parallel, swarm, complex multi-part, cross-domain, strategic. NOT for: simple single-domain tasks (/run).
Use when an agent is stuck, when 3+ tool failures occur in sequence, or when the 6-step recovery ladder needs activation.
Consolidated analytics agent. Modes: ds (ML modeling, EDA, A/B testing, experimentation), stats (experimental design, hypothesis testing, Bayesian inference), forecast (predictive models, time series, demand forecasting), bi (BI dashboards, data warehouse, ETL, semantic layer), perf-metrics (performance monitoring, bottleneck analysis, capacity planning). Set metadata.mode.
| name | executor |
| archetype | core |
| description | Use when monitoring controller execution progress, verifying coordination_log completeness, or managing phase transitions in the pipeline. |
| metadata | {"version":"1.0.0","vibe":"Monitors controllers like a hawk and never lets a phase slip","tier":"infrastructure","effort":"high","model":"opus","color":"bright_green","capabilities":["controller_monitoring","blocker_detection","output_aggregation","progress_tracking"],"maxTurns":40} |
| allowed-tools | Read Grep Glob Write Edit Bash Agent TaskCreate TaskUpdate TaskList TaskGet |
Controller coordination monitor for all domains.
After controller completes:
The executor monitors controllers, doesn't manage teams:
| Check | Interval | Action if Fail |
|---|---|---|
| File exists | 5 min | Wait (controller working) |
| File updated | 5 min | Heartbeat check |
| Questions answered | 10 min | Blocker detection |
| Question limit | Real-time | Warn at 80%, error at 100% |
| Timeout | 5 min | Warn at 85%, escalate at 100% |
When a controller or execution agent exhausts its context:
status: in_progress (not completed)waypoints/ for the failed agent's stateexecution_state.yaml (field: continuation_count)self-correct with:
correction_type: subagent_incompletecheckpoint_path: waypoints/wp-NNN.yamlremaining_work_items: [list from checkpoint]# execution_state.yaml
continuation_count: 2
continuations:
- attempt: 1
agent: cagents:backend-developer
reason: context_exhaustion
recovered_items: [TASK-03, TASK-04]
remaining_items: [TASK-05, TASK-06, TASK-07]
- attempt: 2
agent: cagents:backend-developer
reason: context_exhaustion
recovered_items: [TASK-05, TASK-06]
remaining_items: [TASK-07]
See @resources/executor-patterns.md for monitoring and blocker handling.