一键导入
executing-plans
Use when you have a written implementation plan to execute in a separate session with review checkpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when you have a written implementation plan to execute in a separate session with review checkpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when working with Docker containers — debugging container failures, writing Dockerfiles, docker-compose for integration tests, image optimization, or deploying containerized applications
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Use when you need parallel, read-only exploration with the agent tool (Scout fan-out)
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
| name | executing-plans |
| description | Use when you have a written implementation plan to execute in a separate session with review checkpoints |
Load plan, review critically, execute tasks in batches, report for review between batches.
Core principle: Batch execution with checkpoints for architect review.
Announce at start: "I'm using the executing-plans skill to implement this plan."
Use hive_status() to get the runnable list — tasks with all dependencies satisfied.
Only done satisfies dependencies (not blocked, failed, partial, cancelled).
When 2+ tasks are runnable:
question(): "Multiple tasks are runnable: [list]. Run in parallel, sequential, or a specific subset?"hive_context_write({ name: "execution-decisions", content: "..." }) for future referenceWhen 1 task is runnable: Proceed directly.
For each task in the batch:
hive_worktree_start()When batch complete:
After the batch report, ask the operator if they want a Hygienic code review for the batch.
If yes, run task({ subagent_type: "hygienic", prompt: "Review implementation changes from the latest batch." }).
Route review feedback through this decision tree before continuing:
| Feedback type | Action |
|---|---|
| Minor / local to the completed batch | Inline fix — apply directly, no new task |
| New isolated work that does not affect downstream sequencing | Manual task — hive_task_create() for non-blocking ad-hoc work |
| Changes downstream sequencing, dependencies, or scope | Plan amendment — update plan.md, then hive_tasks_sync({ refreshPending: true }) to rewrite pending tasks from the amended plan |
When amending the plan: append new task numbers at the end (do not renumber), update Depends on: entries to express the new DAG order, then sync.
After applying review feedback (or if none):
hive_status() for the updated runnable set — tasks whose dependencies are all satisfiedAfter all tasks complete and verified:
STOP executing immediately when:
Ask for clarification rather than guessing.
Return to Review (Step 1) when:
Don't force through blockers - stop and ask.