一键导入
execute
Execute an approved dispatch plan task by task. Use after /assign to implement the planned work. Triggers: execute, run plan, implement, go.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute an approved dispatch plan task by task. Use after /assign to implement the planned work. Triggers: execute, run plan, implement, go.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Assign agents and skills to plan tasks. Use after /plan to create a dispatch schedule. Triggers: assign, dispatch, route, map tasks.
Audit and update documentation coverage for NanoVec components. Use to check which modules have docs, update component docs, or generate coverage reports. Triggers: docs coverage, document, audit docs, update docs.
Decompose a feature into tasks with domain agent assignments. Use when starting a new feature, phase, or multi-step implementation. Triggers: plan, decompose, break down, feature planning.
Reconfigure the development approach for NanoVec. Use to switch between TDD-First, YAGNI/KISS, Iterative+Timeboxing, Shape Up, or Trunk-Based development. Triggers: change approach, switch methodology, setup approach.
基于 SOC 职业分类
| name | execute |
| description | Execute an approved dispatch plan task by task. Use after /assign to implement the planned work. Triggers: execute, run plan, implement, go. |
Load dispatch schedule. Read the dispatch file from docs/plans/<feature-slug>-dispatch.md.
Verify prerequisites. Before starting:
cargo test --all-features 2>&1 | tail -5
cargo clippy --all-targets --all-features -- -D warnings 2>&1 | tail -5
If either fails, fix before proceeding.
Execute tasks in order. For each task in the dispatch schedule:
a. Announce the current task: agent, files, acceptance criteria.
b. Switch context to the assigned agent's domain rules and constraints.
c. TDD cycle (if implementation task):
cargo test --all-features to confirm redcargo test --all-features to confirm greend. Run quality gate:
cargo fmt --check
cargo clippy --all-targets --all-features -- -D warnings
cargo test --all-features
e. Update status in the dispatch file: pending -> done
Handle failures. If a task fails:
Generate report. After all tasks complete, write docs/plans/<feature-slug>-report.md:
# Report: <Feature Name>
## Summary
- Tasks completed: N/N
- Tests added: <count>
- Files changed: <count>
## Changes
<list of files created or modified>
## Test Results
<output of cargo test>
## Next Steps
<any follow-up work identified>
Final verification.
cargo fmt --check && cargo clippy --all-targets --all-features -- -D warnings && cargo test --all-features