$npx -y skills add tody-agent/codymaster --skill cm-sprint-busUse to run the full sprint pipeline: brainstorm → plan → design → tdd → build → review → qa → security → ship → monitor → retro.
| 1 | # cm-sprint-bus — opinionated pipeline + artifacts |
| 2 | |
| 3 | ## TL;DR |
| 4 | - **Use to** drive the full sprint: brainstorm → ship → retro |
| 5 | - **Phases**: brainstorm, plan, design, tdd, build, review, qa, security, ship, monitor, retro |
| 6 | - **Each phase**: writes Markdown artifact + handoff JSON |
| 7 | - **CLI**: cm sprint init|status|complete|skip|dry-run |
| 8 | |
| 9 | ## Pipeline |
| 10 | |
| 11 | `brainstorm → plan → design → tdd → build → review → qa → security → ship → monitor → retro` |
| 12 | |
| 13 | ## CLI |
| 14 | |
| 15 | ```bash |
| 16 | cm sprint init --project . |
| 17 | cm sprint init --from plan --project . # jump in mid-pipeline |
| 18 | cm sprint status --project . |
| 19 | cm sprint complete plan -m "$(cat plan-notes.md)" --project . |
| 20 | cm sprint dry-run --project . |
| 21 | ``` |
| 22 | |
| 23 | ## Artifacts |
| 24 | |
| 25 | - `.cm/sprint/state.json` |
| 26 | - `.cm/sprint/artifacts/<step>.md` |
| 27 | - `.cm/sprint/events.jsonl` |
| 28 | |
| 29 | ## Skill mapping (hints) |
| 30 | |
| 31 | Each step maps to existing CodyMaster skills (see `skillMappingForStep` in `src/sprint-pipeline.ts`). Use `cm sprint status` for the **next** recommended skill. |
| 32 | |
| 33 | ## Context bus |
| 34 | |
| 35 | This complements `.cm/context-bus.json` (skill-chain). Prefer **sprint files** for linear release trains; use **context bus** for ad-hoc chains. |