1---2name: plan-sprint-management3description: Plan, run, and close sprints with healthy velocity and burndown.4---56# Sprint Management Skill78## What it does9- Plans sprint scope, capacity, and goals.10- Monitors execution via burndown, burnup, and velocity trends.11- Facilitates mid-sprint adjustments and end-of-sprint review/retro.1213## When to use14- When setting or recalibrating team capacity and commitments.15- When burndown deviates or blockers threaten the goal.1617## Key operations18- Identify active project; read `PROJECT.md`, backlog, `current-sprint.json`, `sprint-history.md`.19- Capacity planning: team availability, carry-over analysis, velocity guidance.20- Scope selection: pull stories by priority and capacity; set sprint goal.21- Tracking: daily burndown/burnup, WIP limits, blocker log; update `current-sprint.json`.22- Closeout: demo checklist, retro inputs, carry-over handling; update `sprint-history.md` and reports.23- Log decisions and changes in `memory/YYYY-MM-DD.md`.2425## Output files26- `projects/<ACTIVE>/sprints/current-sprint.json` — active sprint scope, goal, capacity, burndown.27- `projects/<ACTIVE>/sprints/sprint-[N].json` — snapshots per sprint.28- `projects/<ACTIVE>/sprints/sprint-history.md` — retrospectives, velocity notes.29- `projects/<ACTIVE>/reports/burndown-chart.json` — burndown/burnup data (if generated).30- `projects/<ACTIVE>/reports/velocity-chart.json` — velocity trends.31- `projects/<ACTIVE>/sprints/plan.md` (optional) — capacity, goals, committed stories, dependencies.32- `projects/<ACTIVE>/sprints/blockers.md` — blockers, owners, ETAs, mitigation.33- `memory/YYYY-MM-DD.md` — sprint decisions, risks, adjustments.3435## Example workflow361) Capture capacity and carry-over; set sprint goal; update `current-sprint.json`.372) Select stories by priority; confirm acceptance criteria and estimates; commit scope.383) Track daily burndown; log blockers; adjust scope/WIP if needed; update `burndown-chart.json`.394) Close sprint: demo/review, retro notes, velocity update, carry-over to next sprint; update `sprint-[N].json`, `sprint-history.md`, reports.4041## Best practices42- Keep WIP limited; favor finishing over starting new.43- Maintain a clean blocker log with owners and due dates.44- Re-estimate only when scope changes materially.45- Use velocity as a guide, not a target; avoid over-commitment.46- Maintain buffer (10–20%) and keep planned points ≤ velocity × 1.1.47- Record deviations and decisions in memory and sprint-history for transparency.4849## Related resources50- `AGENTS.md` (sprint workflow, reporting expectations)51- `SKILLS.md`, `MEMORY.md`, `memory/YYYY-MM-DD.md`52- `projects/<ACTIVE>/sprints/current-sprint.json`, `sprint-[N].json`, `sprint-history.md`53- `projects/<ACTIVE>/reports/burndown-chart.json`, `velocity-chart.json`54- `sprint/retro` or `sprint-template` docs if present