fest-planninglisted
Install: claude install-skill Obedience-Corp/festival
# Festival Planning
## Start Here
```bash
fest understand methodology
fest understand structure
fest understand tasks
fest understand rules
fest types festival
```
## Naming Rules (Automation-Critical)
- Phase dir: `NNN_UPPER_CASE/` (e.g., `001_IMPLEMENT/`)
- Sequence dir: `NN_lower_snake_case/` (e.g., `01_auth_module/`)
- Task file: `NN_lower_snake_case.md` (e.g., `01_create_handler.md`)
Every sequence should include `SEQUENCE_GOAL.md`.
## Festival Types (Choose Before Scaffolding)
Use `fest types festival` / `fest types festival show <type>` as source of truth.
- `standard`: Full planning + implementation (recommended for most work)
- `implementation`: Execution-only (use when requirements already exist)
- `research`: Investigation and exploration
- `ritual`: Recurring processes
```bash
fest create festival --name "<name>" --type standard
fest create festival --name "<name>" --type implementation
fest create festival --name "<name>" --type research
fest create festival --name "<name>" --type ritual --dest ritual
```
## Phase Types
- `planning`: Workflow phase for architecture/decisions (`WORKFLOW.md`, no numbered sequences)
- `research`: Investigation and findings
- `ingest`: Normalizing incoming context/specs
- `implementation`: Sequence-driven coding (numbered sequences/tasks, quality gates)
- `review`: Freeform acceptance/signoff
- `non_coding_action`: Operational actions
```bash
fest create phase --name "001_IMPLEMENT" --type implementation
```
## Create /