From ai-agents
按 plan.md 逐任务执行实现。通过 Todo checkbox 追踪进度,每批改动后运行编译检查。触发短语:"执行计划"、"按计划实现"、"开始实现"。
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-agents:executing-plansThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
按照 plan.md 中的 Todo List 逐任务执行,确保每个改动可验证、可追踪。
按照 plan.md 中的 Todo List 逐任务执行,确保每个改动可验证、可追踪。
docs/sdlc/ 下查找)按 Todo List 顺序执行每个任务:
[x]执行守卫:
每完成一批相关改动后运行编译检查:
# 根据项目类型选择
tsc --noEmit # TypeScript
./gradlew compileJava # Java/Gradle
cargo check # Rust
go build ./... # Go
python -m py_compile file.py # Python
编译失败时立即修复,不继续下一个任务。
所有任务完成后:
本技能适用于:
大型改动建议使用 /subagent-driven-development,每个任务派遣独立子代理并行执行。
npx claudepluginhub stringke/ai-agents --plugin ai-agentsExecutes written implementation plans step-by-step with critical review, per-task commits, validation, and error recovery. Handles plan loading, review, task execution, and completion workflow.
Implements tasks from verified plan.md sequentially: writes code, verifies with TDD where applicable, updates plan progress, commits at checkpoints. For structured project execution.
Executes a written implementation plan step-by-step with review checkpoints. Use when you have a plan file ready and need isolated execution with verification.