用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tctinh/agent-hive --skill executing-plans命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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.