bmad-architecture
Solutioning skill (Winston, the Architect). Produces architecture.md with ADRs and systematic NFR coverage, mapping every FR/NFR from the PRD to a concrete…
Orchestration handoff bridge: emits and maintains sprint-status.yaml as the project's sequencing system-of-record. Orders stories by epic then dependency, assigns parallel-set (wave) membership, and drives the status lifecycle (backlog → ready-for-dev → in-progress → review →
$ npx -y skills add aj-geddes/claude-code-bmad-skills --skill bmad-sprint-planning --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/bmad-sprint-planningContext preview
The summary Claude sees to decide when to auto-load this skill.
Orchestration handoff bridge: emits and maintains sprint-status.yaml as the project's sequencing system-of-record. Orders stories by epic then dependency, assigns parallel-set (wave) membership, and drives the status lifecycle (backlog → ready-for-dev → in-progress → review →
name: bmad-sprint-planning description: | Orchestration handoff bridge: emits and maintains sprint-status.yaml as the project's sequencing system-of-record. Orders stories by epic then dependency, assigns parallel-set (wave) membership, and drives the status lifecycle (backlog → ready-for-dev → in-progress → review → done) as a view — never as a metric. Use when the user says "sequence the stories", "build the sprint status", "plan the waves", "create sprint-status.yaml", "assign parallel sets", "order stories by dependency", "what can run in parallel", "set up story sequencing", "initialize sprint tracking", "ready the backlog", or "prepare for dev handoff". Also triggers on "sprint planning" when the project already has epics defined. SCOPE: SEQUENCING AND ORCHESTRATION ONLY. No velocity, no burndown, no committed points, no coverage metrics. Capacity is expressed as wave width (concurrent story count), not points. The final artifact is a ready-for-dev handoff manifest; implementation is delegated to external dev tools. allowed-tools: Read, Write, Edit, Bash, Glob, Grep, TodoWrite
**Role:** Sequencing & Handoff Bridge — Phase 4 orchestration **System-of-record:** `bmad-output/sprint-status.yaml`
---
1. Reads planning artifacts (PRD, architecture, epics, stories) from `bmad-output/`. 2. Derives a dependency graph across all stories. 3. Assigns each story a `parallel_set` (wave) — stories in the same wave have no mutual dependencies and can run concurrently. 4. Emits `bmad-output/sprint-status.yaml` using the canonical template. 5. Marks the first wave of stories `ready-for-dev`; all others remain `backlog`. 6. Optionally re-sequences on demand as stories are completed or new ones are added.
This skill does **not** write application code, run tests, lint, build, or review diffs.
---
| Intent | Trigger phrase | Action | |--------|---------------|--------| | **Create** | "initialize sprint status", "first time" | Scaffold fresh `sprint-status.yaml` from template | | **Update** | "re-sequence", "story X is done", "add story", "update wave" | Mutate existing `sprint-status.yaml` in-place | | **Validate** | "check sequencing", "are dependencies correct", "show wave plan" | Read and report without writing |
---
1. **Load planning artifacts**
Glob: bmad-output/**/*.md, bmad-output/**/*.yaml
Priority order: `epics.md` → `prd.md` → `architecture.md` → individual story files.
2. **Extract epics and stories**
3. **Build dependency graph**
4. **Initialize sprint-status.yaml**
bash ${CLAUDE_PLUGIN_ROOT}/skills/bmad-sprint-planning/scripts/init-sprint-status.shThen populate with sequenced data (see template).
5. **Sequence stories**
bash ${CLAUDE_PLUGIN_ROOT}/skills/bmad-sprint-planning/scripts/sequence-stories.sh6. **Set initial statuses**
7. **Emit handoff summary** — list wave 1 stories by `owned_scope` for conflict-free parallel dispatch
---
When a story moves to `done`: 1. Remove it from any `dependencies[]` lists where it appears 2. Identify newly unblocked stories (dependencies now fully satisfied) 3. Promote them to `ready-for-dev` 4. Re-evaluate parent epic status 5. Write updated `sprint-status.yaml`
---
Wave width (how many stories can run at once) is not a fixed number — it is the size of the dependency-free frontier at each topological level. There is no points budget or velocity ceiling.
Wave 1: all stories with no dependencies Wave 2: all stories whose only dependencies are in wave 1 Wave N: all stories whose dependencies are fully in waves 1…(N-1)
Stories within a wave MUST have non-overlapping `owned_scope` to be safe for parallel dispatch. If two stories in the same wave share a file, split them into separate waves or document the conflict.
---
backlog → ready-for-dev → in-progress → review → done
---
| Track | Story count | Sprint-status behavior | |-------|-------------|----------------------| | Quick Flow | 1–15 | Single wave pass; minimal epic structure | | BMAD Method | 10–50+ | Full wave assignment; epic grouping | | Enterprise | 30+ | Multi-phase wave planning; dependency map documented in REFERENCE |
Track is confirmed with the user before generating the status file.
---
**Pattern:** Parallel dependency analysis **Use when:** 15+ stories across 3+ epics
| Agent | Task | Output | |-------|------|--------| | Agent 1 | Parse all story files, extract dependency declarations | `bmad-output/context/dependency-raw.yaml` | | Agent 2 | Parse epic ordering from PRD/epics.md | `bmad-output/context/epic-order.yaml` | | Agent 3 | Identify `owned_scope` conflicts within candidate waves | `bmad-output/context/scope-conflicts.md` |
Main context: merge outputs, run topological sort, write `sprint-status.yaml`.
Task: Extract dependencies from all story files Context: Read all *.story.md files under bmad
This repository is a Claude Code plugin marketplace. It ships one plugin — BMAD Planning & Orchestrator — that harnesses the BMAD Method to plan, document, and orchestrate software work as conflict-free parallel workstreams, then hands implementation off to
Repo: aj-geddes/claude-code-bmad-skills
Solutioning skill (Winston, the Architect). Produces architecture.md with ADRs and systematic NFR coverage, mapping every FR/NFR from the PRD to a concrete…
Facilitates structured ideation sessions using proven brainstorming techniques (SCAMPER, SWOT, 5 Whys, Mind Mapping, Six Thinking Hats, Reverse Brainstorming,…
Meta-skill for scaffolding and validating custom PLANNING/ORCHESTRATION skills within the BMAD Planning & Orchestrator plugin. Produces the full skill…
CROSS-PHASE mid-stream scope correction. Re-enters planning when requirements, features, architecture, or constraints change after planning has started.…
BROWNFIELD planning input. Scans an existing codebase READ-ONLY and writes project-documentation.md — ground truth for stack, structure, key flows,…
Solutioning flagship — shards a PRD + architecture into epics.md and individual {epic}.{story}.{slug}.story.md context objects, the LAST planning artifact…