| name | planning |
| description | Minimal workflow for creating, editing, and executing plans |
Planning Skill (Minimal)
Scope
Use this skill to:
- create plans
- update plans
- execute plans step by step
Plan location
- Store all plans in:
.agents/plans/
Plan format
- Use concise, LLM-native language
- Write phased, step-by-step plans
- Each step must be small, concrete, and executable by the model
Use this frontmatter in every plan:
---
title: <short title>
status: planned
progress:
- step: "<step 1>"
status: planned
- step: "<step 2>"
status: planned
---
Allowed step status values:
planned
in_progress
completed
Creating a plan
- Create a new markdown file in
.agents/plans/.
- Add frontmatter with
progress steps.
- Add short phase sections under the frontmatter.
Editing a plan
- Keep steps small and concrete.
- Update
progress statuses as work changes.
- If scope changes, add/remove steps explicitly in
progress.
Executing a plan
- Pick exactly one
planned step.
- Mark it
in_progress.
- Complete only that step.
- Mark it
completed.
- Commit immediately after finishing that step.
- Repeat for the next step.
Commit rule: one completed step per commit.