with one click
planning
// Create and execute phased implementation plans stored in .agents/plans using numbered markdown files with YAML front matter and checklist steps.
// Create and execute phased implementation plans stored in .agents/plans using numbered markdown files with YAML front matter and checklist steps.
| name | planning |
| description | Create and execute phased implementation plans stored in .agents/plans using numbered markdown files with YAML front matter and checklist steps. |
Use this skill whenever work should be organized into explicit phases and tracked as a plan file.
.agents/plans/.000-first-plan.md001-another-plan.md002-plan-more.mdEvery plan must be a Markdown file with YAML front matter containing:
namedescriptionstepssteps must be a YAML array that represents phases. Each phase should contain a phase name and a checklist of steps.
Recommended structure:
---
name: 000-first-plan
description: Build the pruning extension skeleton.
steps:
- phase: discovery
steps:
- "- [ ] step 1: inspect the repo structure"
- "- [ ] step 2: identify the extension entry points"
- phase: implementation
steps:
- "- [ ] step 1: implement the pruning logic"
- "- [ ] step 2: wire the pruning into context preparation"
- phase: validation
steps:
- "- [ ] step 1: add or update tests"
- "- [ ] step 2: verify the final behavior"
---
The Markdown body should mirror the phased structure for readability. Keep the body and front matter aligned so the plan stays easy to execute.
# 000-first-plan
## Phase 1 — Discovery
- [ ] step 1: inspect the repo structure
- [ ] step 2: identify the extension entry points
## Phase 2 — Implementation
- [ ] step 1: implement the pruning logic
- [ ] step 2: wire the pruning into context preparation
## Phase 3 — Validation
- [ ] step 1: add or update tests
- [ ] step 2: verify the final behavior
.agents/plans/.- [x] in both the body and the front matter if the plan is being kept in sync there.- [ ] step 1: ... when open, - [x] step 1: ... when complete.