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…
Emits a dev-tool-agnostic handoff manifest from ready-for-dev stories so an external dev plugin or runner can pick up and execute the work. Use when the user says "generate a handoff", "create handoff manifest", "export stories for dev", "hand off to dev tool", "produce handoff
$ npx -y skills add aj-geddes/claude-code-bmad-skills --skill bmad-handoff --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/bmad-handoffContext preview
The summary Claude sees to decide when to auto-load this skill.
Emits a dev-tool-agnostic handoff manifest from ready-for-dev stories so an external dev plugin or runner can pick up and execute the work. Use when the user says "generate a handoff", "create handoff manifest", "export stories for dev", "hand off to dev tool", "produce handoff
name: bmad-handoff description: | Emits a dev-tool-agnostic handoff manifest from ready-for-dev stories so an external dev plugin or runner can pick up and execute the work. Use when the user says "generate a handoff", "create handoff manifest", "export stories for dev", "hand off to dev tool", "produce handoff manifest", "ready to hand off", "prepare handoff for external tool", "export ready-for-dev stories", or "create the handoff package". Also trigger when the user asks "what stories are ready for dev?" and wants an exportable artifact rather than a status report. Produces: handoff-manifest.json listing all ready-for-dev stories with id, story file path, status, owned file/module scope, wave/parallel_set, dependencies, acceptance-criteria summary, locked-sections note, and a schemaVersion field. See REFERENCE.md (bundled) for the full manifest schema and adapter notes for git-worktree parallel development and autonomous dependency-graph orchestrators. allowed-tools: Read, Write, Edit, Glob, Grep, TodoWrite
**Purpose:** Scan the planning output folder for all stories at status `ready-for-dev`, compile them into a single `handoff-manifest.json`, and leave it where any downstream dev tool can read it — without coupling to any specific runner.
This is the last artifact the planning plugin produces. What happens next is owned by the external dev tool, not by this skill.
Run this skill after the story-writing phase is complete and you (or the user) have confirmed that at least one story carries status `ready-for-dev`. The manifest is a point-in-time snapshot; re-run the skill to refresh it.
Use TodoWrite to track progress through these steps.
Look for `bmad-output/project-context.md` (the default output folder) or ask the user for the output folder. Default: `bmad-output/`.
Glob for `**/{epic}.{story}.*.story.md` under the output folder. Accept alternative flat layouts (`stories/*.story.md`) if the glob turns up nothing.
Read the `**Status:**` header field of each story file (in the story header block, not a `## Status` heading). Include only stories whose status value is exactly `ready-for-dev`.
If none are found, report which statuses were seen and stop — do not produce an empty manifest.
For each qualifying story file, extract:
| Field | Source in story file | |---|---| | `id` | Filename stem or `## Story` heading ID | | `storyFilePath` | Relative path from project root | | `status` | `**Status:**` header field value | | `epic` | First segment of filename, e.g. `"2"` in `2.1.stripe.story.md` | | `storyNumber` | Second segment, e.g. `"1"` | | `title` | First H1 or `## Story` heading text | | `ownedScope` | `## Owned File/Module Scope` — list every path verbatim | | `wave` | `## Dependency Maps` → wave/parallel_set annotation (integer or null) | | `parallelSet` | Same section — parallel set label if present (string or null) | | `dependencies` | `## Dependency Maps` → blocked-by story IDs (array, may be empty) | | `acceptanceCriteriaSummary` | First 3 AC items from `## Acceptance Criteria`, each ≤120 chars | | `lockedSectionsNote` | Static string — see schema | | `devAgentRecord` | Static null — placeholder for the dev tool to populate |
If stories do not already carry explicit wave annotations:
Write to `{outputFolder}/handoff-manifest.json`.
Use the schema from `${CLAUDE_PLUGIN_ROOT}/skills/bmad-handoff/templates/handoff-manifest.schema.json` as the structural contract. Populate `schemaVersion: "1.0"`.
Sort stories by `wave` ascending, then by `id` ascending within each wave.
Print a compact summary:
Handoff manifest written → bmad-output/handoff-manifest.json schemaVersion : 1.0 stories : <N> ready-for-dev waves : <W> (wave 1 has <X> stories, can start immediately) output path : bmad-output/handoff-manifest.json
If any story was missing required sections (e.g. no `## Owned File/Module Scope`), list those as warnings — do not silently omit or fabricate data.
See REFERENCE.md for the full schema narrative and adapter notes.
| Field | Type | Required | Notes | |---|---|---|---| | `schemaVersion` | string | yes | Semver string; current = `"1.0"` | | `generatedAt` | string | yes | ISO-8601 UTC timestamp | | `projectName` | string | yes | From project-context.md or user input | | `outputFolder` | string | yes | Relative path used to find stories | | `stories` | array | yes | One object per ready-for-dev story | | `stories[].id` | string | yes | Unique story identifier | | `stories[].storyFilePath` | string | yes | Relative path to the .story.md file | | `stories[].status` | string | yes | Always `"ready-for-dev"` in this manifest | | `stories[].epic` | string | yes | Epic identifier | | `stories[].storyNumber` | string | yes | Story number within epic | | `stories[].title` | string | yes | Human-readable story title | | `stories[].ownedScope` | array | yes | File/module paths this story may modify | | `stories[].wave` | integer | yes | Execution wave (1 = no dependencies) | | `stories[].parallelSet` | string\|null | no | Label if explicitly grouped | | `stories[].dependencies` | array | yes | Story IDs that must complete first | | `stories[].acceptanceCriteriaSummary` | array | yes | First 3 AC items, ≤120 chars each | | `stories[].lockedSectionsNote` | string | yes | Instruction to dev tools | | `stories[].devAgentRecord` | null | yes | Dev tool populates; always null at emit time |
`lockedSectionsNote` is always
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…