From code-flow
Use when you have a written implementation plan to execute. Orchestrates parallel agent teams, subagents, or serial execution based on the plan's execution strategy.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-flow:executing-plansThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Take an implementation plan and orchestrate its execution. Read the plan, understand the dependency graph, and dispatch work — preferring parallel execution whenever tasks are independent.
Take an implementation plan and orchestrate its execution. Read the plan, understand the dependency graph, and dispatch work — preferring parallel execution whenever tasks are independent.
Input: A plan from writing-plans (docs/plans/) or a plan provided by the user.
Before starting any task (or dispatching it to an agent), pause and ask: do I have all the information needed to do this well? Specifically:
Don't start implementing with incomplete understanding. A few minutes of investigation up front prevents wasted work.
Use TeamCreate to set up a team, then:
TaskCreate, setting up dependency chains with addBlockedByTaskList and teammate messagescode-simplifier agent on the modified files to refine code for clarity and consistency before moving to the next waveTeam sizing: Match the number of teammates to the number of parallel tracks, not the number of tasks. 2-4 teammates is typical. Don't spawn more agents than you have independent work for.
Teammate prompts should include:
Use the Task tool to dispatch subagents for tasks that are fully independent and don't need coordination:
code-simplifier agent on the modified files to refine code for clarity and consistencyExecute tasks one at a time:
code-simplifier agent on the modified files to refine code for clarity and consistencyRegardless of execution strategy, pause for user review at natural boundaries:
At each checkpoint:
Stop and ask the user immediately when:
Don't guess through ambiguity. Ask.
Next: Use the verification-before-completion skill before claiming the work is done.
npx claudepluginhub aeriondyseti/aeriondyseti-plugins --plugin code-flowExecutes 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.
Executes finalized plans by loading task files, building dependency graphs, parallelizing topological task execution via subagents for complex work or inline for simple actions.