| name | exec-plan |
| description | Manage the lifecycle of ExecPlans โ self-contained, living specifications for multi-step work.
Creates plans in the correct format, enforces living section updates, and handles the
active โ completed transition. Use for any work expected to take more than one session or
touching more than 3 files.
Triggers: "create a plan", "write a plan", "start plan", "continue plan", "resume plan",
"finish plan", "complete plan", multi-step features, refactors, or tasks spanning sessions.
|
| allowed-tools | Read, Glob, Grep, Write, Edit, Bash |
ExecPlan โ Lifecycle Management
Announce at start: "Using the exec-plan skill."
What is an ExecPlan
A self-contained, living document that a fresh agent session can follow to deliver observable, working behavior. Lives in docs/exec-plans/. The format follows the specification in docs/PLANS.md.
An ExecPlan is NOT a todo list. It is a narrative that tells the story of a change: why it matters, what the codebase looks like now, what it should look like after, and how to prove it worked.
When to use this skill
- Required for multi-step or multi-file work, new features, refactors, or tasks expected to take more than about an hour.
- Optional for trivial fixes, but if you skip it for a substantial task, state the reason.
- Always when resuming work from a previous session.
The Three Modes
Mode 1: CREATE a new plan
When starting new multi-step work:
- Read
docs/PLANS.md for the template and requirements.
- Create the plan at
docs/exec-plans/active/{descriptive-kebab-name}.md.
- Fill ALL sections from the template. Non-negotiable sections:
- Purpose / Big Picture โ what the user can see/do after the change
- Progress โ empty checkboxes for each milestone
- Surprises & Discoveries โ start with
(none yet)
- Decision Log โ start with
(none yet)
- Outcomes & Retrospective โ start with
(fill when complete)
- Context and Orientation โ full file paths, term definitions, current state
- Plan of Work โ narrative milestones with goal โ work โ result โ proof
- Concrete Steps โ exact commands with expected outputs
- Validation and Acceptance โ observable proof of success
- Idempotence and Recovery โ how to retry or roll back
- Every file path must be absolute from repo root.
- Every term must be defined inline โ assume the reader knows nothing.
- Commit the plan before starting implementation.
Mode 2: CONTINUE an existing plan
When resuming work or executing the next milestone:
- Read the plan file in
docs/exec-plans/active/.
- Find the first unchecked item in Progress.
- Before starting work, check: are there any Surprises from previous sessions that affect this task?
- Execute the milestone following the Plan of Work.
- After each completed milestone, IMMEDIATELY update the plan:
- Check the Progress item with a timestamp:
- [x] (YYYY-MM-DD HH:MMZ) Description
- Add any Surprises & Discoveries encountered
- Add any Decision Log entries for choices made
- Commit the plan update alongside the code changes.
- Run the Validation commands to confirm success.
CRITICAL: Never claim a milestone is done without updating the plan file. The plan IS the persistence mechanism. If you don't update it, the next session will redo the work.
Mode 3: COMPLETE a plan
When all milestones are done:
- Fill the Outcomes & Retrospective section:
- What was achieved vs what was planned
- Any remaining gaps
- Lessons learned
- Unexpected benefits or costs
- Move the file:
git mv docs/exec-plans/active/{name}.md docs/exec-plans/completed/{name}.md
- Commit with message:
docs: complete exec-plan {name}
Quality Checks
Before committing any plan (new or updated), verify:
Anti-patterns
- Checklist without narrative: "- [ ] Edit file X" tells the next session nothing. WHY edit it? WHAT changes? HOW to verify?
- External references for critical context: "See ARCHITECTURE.md for details" โ the plan must be self-contained. Copy the relevant context in.
- Forgetting to update Progress: The most common failure. If you finish a milestone and don't check the box with a timestamp, the next session will redo it.
- Leaving completed plans in active/: After all milestones are done, MOVE to completed/. Active plans should only be unfinished work.
- Skipping Validation: "Tests pass" is not acceptance. "The
isValid computed property no longer exists in the file, verified by grep -n isValid file.swift returning no results" IS acceptance.
Integration with other skills
- Before implementing plan milestones that involve TCA code: invoke
/pfw-composable-architecture
- Before implementing plan milestones that involve debugging: invoke the
debug skill
- Before implementing plan milestones that involve refactoring: invoke the
refactor skill
- Before implementing plan milestones that involve API design: invoke the
rest-api-design skill
- After completing all plan milestones: invoke
refactor skill for a final cleanup pass