execution-plan-managerlisted
Install: claude install-skill ytvee-dev/webdev-agent-kit
# Execution Plan Manager
## Purpose
Create, resume, analyze, and converge execution plans for standard or deep frontend work after the goal is defined.
This skill prevents large tasks from becoming unbounded development sessions. It splits work into small verified slices, selects the minimum useful context budget, records stop/resume state when needed, and decides whether a slice needs a one-pass check, bounded retry loop, goal-based loop, independent review, or durable memory handoff.
## When To Use
Use this skill only after `AGENTS.md` and `common/prompt-intent-routing-rules.md` classify the task as `Standard Workflow` or `Deep Workflow`.
Use this skill when:
- a goal contract exists or the user goal is already explicit;
- the task needs more than one implementation slice;
- the task may need stop/resume state;
- the task has dependencies, blockers, or ordered phases;
- the task should be split before coding;
- the user asks to continue an existing large task;
- the agent needs to compare completed work with the plan;
- the task may require measurable iteration and should be handed to `loop-workflow-planner`.
## When Not To Use
Do not use this skill for `Lightweight Workflow` prompts, including one small bug, one obvious typo, one obvious type error, one small styling adjustment, one isolated component change, one direct file-scope edit, or one local refactor with clear boundaries.
Do not use this skill to implement code, install tools, scaffold projects, rewrite