What problem does it solve?
Plans solve the problem of disorganized work items by providing a simple, portable ticket-like system that moves through a lifecycle from backlog to done.
Core Features & Use Cases
- Lightweight plan files stored in plans/ with a defined lifecycle (backlog, next, active, testing, done).
- Clear progression rules and naming conventions to track work items, priorities, and status.
- Use cases include creating new work items, promoting them as work progresses, and archiving completed plans for reference.
Quick Start
Create a new plan by adding a Markdown file in plans/backlog/ named using kebab-case-description.md, with YAML frontmatter including name and description. Move plans between stages using simple filesystem commands, for example: mv plans/backlog/my-feature.md plans/next/; mv plans/next/my-feature.md plans/active/; mv plans/active/my-feature.md plans/testing/; mv plans/testing/my-feature.md plans/done/.