Maintain scrum.ts dashboard following Agentic Scrum principles. Use when editing scrum.ts, updating sprint status, or managing Product Backlog.
SKILL.md
Maintain the scrum.ts dashboard as the single source of truth for all Scrum artifacts.
Single Source of Truth: All Scrum artifacts live in `scrum.ts`Git is History: No timestamps neededOrder is Priority: Higher in `product_backlog` array = higher prioritySchema is Fixed: Only edit the data section; request human review for type changes
```bash
deno check scrum.ts # Type check after edits
deno run scrum.ts | jq '.' # Query data as JSON
wc -l scrum.ts # Line count (target: ≤300, hard limit: 600)
```
After retrospective, prune if >300 lines:
- `completed`: Keep latest 2-3 sprints only
- `retrospectives`: Remove `completed`/`abandoned` improvements
- `product_backlog`: Remove `done` PBIs
`/scrum:init` - Use as starting point for new dashboardsDeep facilitation for sprint events