From coding-agent-orchestration-harness
Standard execution plan format for decomposing non-trivial work into Task_X tasks with owns/depends_on, explicit validation ownership, and explicit Task Waves (parallel dispatch sets). Use when asked to make a plan, break down tasks, outline implementation steps, execute multi-step work, or when non-trivial work requires a plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coding-agent-orchestration-harness:plan-formatThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill defines the standard **execution plan** structure used for non-trivial work.
This skill defines the standard execution plan structure used for non-trivial work.
Design assumptions:
docs/coding-agent/plans/active/<kebab>-plan.mddocs/coding-agent/plans/completed/Task_1, Task_2, ... (Task_X format)type: design | impl | test | docs | slides | research | review | choreowns: paths/globs the Worker is allowed to modify (keep narrow)depends_on: list of Task_X IDs (or [])acceptance: 2–6 concrete bulletsvalidation: explicit validation items (required/owner/kind/detail)owns are disjoint and dependencies are satisfied.owns scope.owns, split/re-scope tasks before execution.validation item must explicitly state required and owner.required: true, do not mark that task done without evidence for that item.playwright-cli, artifacts typically live under .playwright-cli/If you are writing or updating a plan:
references/plan-template.mdIf you are unsure how to express validation items:
references/validation-items.mdIf you are unsure how to define waves:
references/task-waves.mdIf you need lifecycle guidance (active → completed, logs, replans):
references/execution-plan-lifecycle.mdIf you want examples across task types:
references/examples.mdIf the user asked for language/tech-specific planning depth:
npx claudepluginhub ebigunso/agent-harness --plugin coding-agent-orchestration-harnessGenerates executable Markdown implementation plans for multi-step tasks from context briefs, resolving ambiguities, ordering dependencies, and enabling parallel worker execution.
Creates structured implementation plans for multi-step tasks from specs or requirements. Generates plan.json and task markdown files with explicit code and testing steps.
Generates implementation plans with subsystem-grouped tasks for agentic execution, enabling parallel work across subsystems and context sharing within groups.