Phase 3: Board Templates
Goal: One-command board creation with the standard 5-list layout.
Steps
- [x] Add
--template standardflag to kanban.mjs — create board with Backlog/Todo/In Progress/Done:done/Punt:punt in one command - [x] Update -kanban skills' Board Resolution protocol — use
--template standardwhen creating new boards (12 SKILL.md files)
Plan: Update Board Resolution protocol
What: In all 12 -kanban SKILL.md files, replace the verbose --lists "Backlog,Todo,In Progress,Done:done,Punt:punt" with --template standard in the Board Resolution section (step 5, board creation fallback).
Find-and-replace in each file:
OLD: create-board --name "$(basename $(pwd))" --lists "Backlog,Todo,In Progress,Done:done,Punt:punt"
NEW: create-board --name "$(basename $(pwd))" --template standard
Files (12):
claude/brainstorm-kanban/SKILL.mdclaude/spec-interview-kanban/SKILL.md(originallyplan-interview-kanban)claude/roadmap-kanban/SKILL.mdclaude/run-kanban/SKILL.mdclaude/ship-kanban/SKILL.mdclaude/ship-end-kanban/SKILL.mdcodex/brainstorm-kanban/SKILL.mdcodex/spec-interview-kanban/SKILL.md(originallyplan-interview-kanban)codex/roadmap-kanban/SKILL.mdcodex/run-kanban/SKILL.mdcodex/ship-kanban/SKILL.mdcodex/ship-end-kanban/SKILL.md
Also update tasks/roadmap.md Phase 3 step 2 description if it references the old --lists syntax.
Acceptance criteria:
grep --listsacross all SKILL.md files returns zero matches for the old 5-list string- All 12 files use
--template standardin their Board Resolution section - Milestone can be checked off:
create-board --template standardcreates a board with all 5 required lists
Milestone
- [x]
create-board --template standardcreates a board with all 5 required lists in correct types