Skip to main content
ClaudeWave
Slash Command292 repo starsupdated 2d ago

workflow-sprint-planning

The workflow-sprint-planning slash command executes a three-step sprint preparation process that transforms backlog items into actionable sprint work. It sequentially generates refinement notes documenting discussions and decisions, creates user stories with acceptance criteria, and identifies edge cases and error states. Teams use this command to move from raw backlog or product requirements documents into fully specified, sprint-ready work items.

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/product-on-purpose/pm-skills/HEAD/commands/workflow-sprint-planning.md -o ~/.claude/commands/workflow-sprint-planning.md
Then start a new Claude Code session; the slash command loads automatically.

workflow-sprint-planning.md

Run the Sprint Planning workflow to prepare sprint-ready stories from a backlog or PRD.

This workflow uses multiple skills in sequence. For each step, read the skill instructions and follow them to create the artifact.

## Workflow Steps

### Step 1: Refinement Notes

Use the `iterate-refinement-notes` skill from `skills/iterate-refinement-notes/SKILL.md`.

Document the backlog refinement session: stories discussed, estimates, questions raised, and decisions made.

### Step 2: User Stories

Use the `deliver-user-stories` skill from `skills/deliver-user-stories/SKILL.md`.

Generate user stories with clear acceptance criteria from the refined backlog items.

### Step 3: Edge Cases

Use the `deliver-edge-cases` skill from `skills/deliver-edge-cases/SKILL.md`.

Document edge cases, error states, and boundary conditions for the stories from Step 2.

## Output

Create all three artifacts in sequence, ensuring each builds on the previous.

Reference the Sprint Planning workflow at `_workflows/sprint-planning.md` for additional guidance.

Context from user: $ARGUMENTS