From amplify
Executes finalized plans by loading task files, building dependency graphs, parallelizing topological task execution via subagents for complex work or inline for simple actions.
npx claudepluginhub wezzard/skills --plugin amplifyThis skill uses the workspace's default tool permissions.
Load plan, execute tasks, raise human verification gate if necessary.
Executes written implementation plans: loads and critically reviews them, runs tasks in dependency order with parallel dispatch, separate worker-validator subagents, and verifies completion.
Executes written implementation plans by delegating all code tasks to subagents with dependency-aware dispatch, context preservation, review checkpoints, and lower-cost models.
Orchestrates multi-phase implementation from plan documents using sub-agents with auto-detected parallel/sequential strategies based on dependencies.
Share bugs, ideas, or general feedback.
Load plan, execute tasks, raise human verification gate if necessary.
Core principle: Execute with human verification gate.
Announce at start: "I'm using the execute-plan skill to implement this plan."
The user may pause execution after approving the plan file or when the plan file is loaded at the start of a session. You CAN continue the plan execution ONLY after you receive an explicit “continue” signal in the conversation and confirm there are no newer conflicting instructions.
Read plan file
Before executing any task, analyze the plan's task list and build a dependency graph:
You MUST execute in topological order — start from Level 0 and proceed upward:
You MUST NOT blindly spawn a subagent for every task. Apply the following decision rule:
Spawn a subagent when the task involves ANY of:
Execute inline (in the current agent context) when the task is ALL of:
When multiple small independent tasks at the same level each qualify for inline execution, batch them together and execute them sequentially inline rather than spawning multiple subagents.
When spawning subagents:
Some tasks may require human verification. Stop execution and raise a gate with the AskUserQuestion tool for human verification.
Based on feedback:
STOP executing immediately when:
Ask for clarification rather than guessing.