From hive
Executes written implementation plans in batched sessions: loads plans, identifies runnable tasks via hive_status, delegates to workers, reports for review, and runs hygienic code reviews between batches. Use for separate execution sessions with checkpoints.
npx claudepluginhub tctinh/agent-hive --plugin hiveThis skill uses the workspace's default tool permissions.
Load plan, review critically, execute tasks in batches, report for review between batches.
Executes written implementation plans: loads and reviews critically, processes task batches with verifications, reports for feedback, iterates, completes via sub-skill.
Executes written implementation plans by critically reviewing, batching tasks (default 3), verifying outputs, and pausing for feedback at checkpoints before continuing.
Executes complete implementation plans in controlled batches: loads and critically reviews plan, semantically selects/dispatches agents per task, handles blockages, requests code reviews between batches.
Share bugs, ideas, or general feedback.
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."
todo or your working notes only when the batch has enough moving parts to justify active tracking, then proceedUse 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:
vscode/askQuestions for a structured choice: "Multiple tasks are runnable: [list]. Run in parallel, sequential, or a specific subset?"vscode/askQuestions is unavailable or a lightweight follow-up is enoughWhen 1 task is runnable: Proceed directly.
Use vscode/memory only for durable execution decisions or blocker history that future turns need.
For each task in the batch:
hive_task_updateWhen batch complete:
After the batch report, prefer vscode/askQuestions to ask whether the user wants a Hygienic code review for the batch.
Fall back to asking directly in chat only when vscode/askQuestions is unavailable or a lightweight follow-up is enough.
If yes, invoke the @hygienic agent via the agent tool to review implementation changes from the latest batch, then apply feedback before starting the next batch.
Based on feedback:
After 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.