bmad-method 6.0.0-alpha.17 → 6.0.0-alpha.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +97 -0
- package/package.json +1 -1
- package/src/modules/bmgd/_module-installer/installer.js +160 -0
- package/src/modules/bmgd/_module-installer/platform-specifics/claude-code.js +23 -0
- package/src/modules/bmgd/_module-installer/platform-specifics/windsurf.js +18 -0
- package/src/modules/bmgd/agents/game-architect.agent.yaml +23 -8
- package/src/modules/bmgd/agents/game-designer.agent.yaml +38 -18
- package/src/modules/bmgd/agents/game-dev.agent.yaml +30 -14
- package/src/modules/bmgd/agents/game-qa.agent.yaml +64 -0
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +27 -39
- package/src/modules/bmgd/agents/game-solo-dev.agent.yaml +56 -0
- package/src/modules/bmgd/docs/README.md +180 -0
- package/src/modules/bmgd/docs/agents-guide.md +407 -0
- package/src/modules/bmgd/docs/game-types-guide.md +503 -0
- package/src/modules/bmgd/docs/glossary.md +294 -0
- package/src/modules/bmgd/docs/quick-flow-guide.md +288 -0
- package/src/modules/bmgd/docs/quick-start.md +250 -0
- package/src/modules/bmgd/docs/troubleshooting.md +259 -0
- package/src/modules/bmgd/docs/workflow-overview.jpg +0 -0
- package/src/modules/bmgd/docs/workflows-guide.md +463 -0
- package/src/modules/bmgd/gametest/knowledge/balance-testing.md +220 -0
- package/src/modules/bmgd/gametest/knowledge/certification-testing.md +319 -0
- package/src/modules/bmgd/gametest/knowledge/compatibility-testing.md +228 -0
- package/src/modules/bmgd/gametest/knowledge/godot-testing.md +376 -0
- package/src/modules/bmgd/gametest/knowledge/input-testing.md +315 -0
- package/src/modules/bmgd/gametest/knowledge/localization-testing.md +304 -0
- package/src/modules/bmgd/gametest/knowledge/multiplayer-testing.md +322 -0
- package/src/modules/bmgd/gametest/knowledge/performance-testing.md +204 -0
- package/src/modules/bmgd/gametest/knowledge/playtesting.md +384 -0
- package/src/modules/bmgd/gametest/knowledge/qa-automation.md +190 -0
- package/src/modules/bmgd/gametest/knowledge/regression-testing.md +280 -0
- package/src/modules/bmgd/gametest/knowledge/save-testing.md +280 -0
- package/src/modules/bmgd/gametest/knowledge/smoke-testing.md +404 -0
- package/src/modules/bmgd/gametest/knowledge/test-priorities.md +271 -0
- package/src/modules/bmgd/gametest/knowledge/unity-testing.md +383 -0
- package/src/modules/bmgd/gametest/knowledge/unreal-testing.md +388 -0
- package/src/modules/bmgd/gametest/qa-index.csv +17 -0
- package/src/modules/bmgd/module.yaml +25 -9
- package/src/modules/bmgd/teams/default-party.csv +2 -0
- package/src/modules/bmgd/teams/team-gamedev.yaml +12 -1
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-01-init.md +164 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-02-context.md +210 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-03-ideation.md +289 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-04-complete.md +275 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.md +49 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +29 -8
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-01-init.md +223 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-01b-continue.md +151 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-02-vision.md +218 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-03-market.md +218 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-04-fundamentals.md +231 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-05-scope.md +242 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-06-references.md +224 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-07-content.md +282 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-08-complete.md +296 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.md +62 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +40 -9
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-01-init.md +248 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-01b-continue.md +173 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-02-context.md +332 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-03-platforms.md +245 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-04-vision.md +229 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-05-core-gameplay.md +258 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-06-mechanics.md +249 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-07-game-type.md +266 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-08-progression.md +272 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-09-levels.md +264 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-10-art-audio.md +255 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-11-technical.md +275 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-12-epics.md +284 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-13-metrics.md +250 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-14-complete.md +335 -0
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.md +61 -0
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +27 -7
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-01-init.md +228 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-01b-continue.md +163 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-02-foundation.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-03-story.md +238 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-04-characters.md +297 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-05-world.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-06-dialogue.md +250 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-07-environmental.md +244 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-08-delivery.md +264 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-09-integration.md +254 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-10-production.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-11-complete.md +331 -0
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.md +57 -0
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +53 -8
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-01-init.md +223 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-01b-continue.md +153 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-02-context.md +262 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-03-starter.md +290 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-04-decisions.md +300 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-05-crosscutting.md +319 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-06-structure.md +304 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-07-patterns.md +349 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-08-validation.md +293 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-09-complete.md +302 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.md +55 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +50 -21
- package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +23 -0
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.xml +225 -0
- package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +18 -15
- package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +1 -1
- package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +1 -1
- package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +11 -6
- package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +332 -214
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.xml +298 -0
- package/src/modules/bmgd/workflows/4-production/create-story/template.md +3 -5
- package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +12 -7
- package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +65 -23
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.xml +409 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +13 -3
- package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +4 -4
- package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +12 -7
- package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +32 -41
- package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +13 -13
- package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +6 -1
- package/src/modules/bmgd/workflows/4-production/sprint-status/instructions.md +229 -0
- package/src/modules/bmgd/workflows/4-production/sprint-status/workflow.yaml +35 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/instructions.md +140 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/workflow.yaml +27 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/checklist.md +37 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/instructions.md +220 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/workflow.yaml +45 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/checklist.md +26 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/instructions.md +156 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/workflow.yaml +36 -0
- package/src/modules/bmgd/workflows/gametest/automate/checklist.md +93 -0
- package/src/modules/bmgd/workflows/gametest/automate/instructions.md +317 -0
- package/src/modules/bmgd/workflows/gametest/automate/workflow.yaml +50 -0
- package/src/modules/bmgd/workflows/gametest/performance/checklist.md +96 -0
- package/src/modules/bmgd/workflows/gametest/performance/instructions.md +323 -0
- package/src/modules/bmgd/workflows/gametest/performance/performance-template.md +256 -0
- package/src/modules/bmgd/workflows/gametest/performance/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/checklist.md +93 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/instructions.md +297 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/playtest-template.md +208 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/workflow.yaml +59 -0
- package/src/modules/bmgd/workflows/gametest/test-design/checklist.md +98 -0
- package/src/modules/bmgd/workflows/gametest/test-design/instructions.md +280 -0
- package/src/modules/bmgd/workflows/gametest/test-design/test-design-template.md +205 -0
- package/src/modules/bmgd/workflows/gametest/test-design/workflow.yaml +47 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/checklist.md +103 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/instructions.md +348 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/gametest/test-review/checklist.md +87 -0
- package/src/modules/bmgd/workflows/gametest/test-review/instructions.md +272 -0
- package/src/modules/bmgd/workflows/gametest/test-review/test-review-template.md +203 -0
- package/src/modules/bmgd/workflows/gametest/test-review/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/workflow-status/init/instructions.md +299 -0
- package/src/modules/bmgd/workflows/workflow-status/init/workflow.yaml +29 -0
- package/src/modules/bmgd/workflows/workflow-status/instructions.md +395 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/gamedev-brownfield.yaml +65 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/gamedev-greenfield.yaml +71 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/quickflow-brownfield.yaml +29 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/quickflow-greenfield.yaml +39 -0
- package/src/modules/bmgd/workflows/workflow-status/project-levels.yaml +63 -0
- package/src/modules/bmgd/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/modules/bmgd/workflows/workflow-status/workflow.yaml +30 -0
- package/tools/cli/commands/install.js +9 -0
- package/tools/cli/installers/lib/core/installer.js +109 -109
- package/tools/cli/installers/lib/core/installer.js.bak +3204 -0
- package/tools/cli/installers/lib/modules/manager.js +16 -4
- package/tools/cli/lib/agent/compiler.js +99 -0
- package/tools/cli/lib/ui.js +78 -27
- package/src/modules/bmgd/workflows/2-design/gdd/instructions-gdd.md +0 -502
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +0 -398
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +0 -256
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +0 -267
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +0 -17
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +0 -164
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +0 -76
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +0 -58
- package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +0 -16
- package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +0 -34
- package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +0 -209
- package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +0 -63
- package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +0 -111
- package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +0 -28
- package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +0 -117
- package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +0 -25
- /package/src/modules/bmgd/workflows/1-preproduction/game-brief/{template.md → templates/game-brief-template.md} +0 -0
- /package/src/modules/bmgd/workflows/2-design/gdd/{gdd-template.md → templates/gdd-template.md} +0 -0
- /package/src/modules/bmgd/workflows/2-design/narrative/{narrative-template.md → templates/narrative-template.md} +0 -0
- /package/src/modules/bmgd/workflows/3-technical/game-architecture/{architecture-template.md → templates/architecture-template.md} +0 -0
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
<!-- BMAD BMM Story Context Assembly Instructions (v6) -->
|
|
2
|
-
|
|
3
|
-
```xml
|
|
4
|
-
<critical>The workflow execution engine is governed by: {project-root}/_bmad/core/tasks/workflow.xml</critical>
|
|
5
|
-
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
|
|
6
|
-
<critical>Communicate all responses in {communication_language}</critical>
|
|
7
|
-
<critical>Generate all documents in {document_output_language}</critical>
|
|
8
|
-
<critical>This workflow assembles a Story Context file for a single drafted story by extracting acceptance criteria, tasks, relevant docs/code, interfaces, constraints, and testing guidance.</critical>
|
|
9
|
-
<critical>If {story_path} is provided, use it. Otherwise, find the first story with status "drafted" in sprint-status.yaml. If none found, HALT.</critical>
|
|
10
|
-
<critical>Check if context file already exists. If it does, ask user if they want to replace it, verify it, or cancel.</critical>
|
|
11
|
-
|
|
12
|
-
<critical>DOCUMENT OUTPUT: Technical context file (.context.xml). Concise, structured, project-relative paths only.</critical>
|
|
13
|
-
|
|
14
|
-
<workflow>
|
|
15
|
-
<step n="1" goal="Find drafted story and check for existing context" tag="sprint-status">
|
|
16
|
-
<check if="{{story_path}} is provided">
|
|
17
|
-
<action>Use {{story_path}} directly</action>
|
|
18
|
-
<action>Read COMPLETE story file and parse sections</action>
|
|
19
|
-
<action>Extract story_key from filename or story metadata</action>
|
|
20
|
-
<action>Verify Status is "drafted" - if not, HALT with message: "Story status must be 'drafted' to generate context"</action>
|
|
21
|
-
</check>
|
|
22
|
-
|
|
23
|
-
<check if="{{story_path}} is NOT provided">
|
|
24
|
-
<critical>MUST read COMPLETE sprint-status.yaml file from start to end to preserve order</critical>
|
|
25
|
-
<action>Load the FULL file: {{output_folder}}/sprint-status.yaml</action>
|
|
26
|
-
<action>Read ALL lines from beginning to end - do not skip any content</action>
|
|
27
|
-
<action>Parse the development_status section completely</action>
|
|
28
|
-
|
|
29
|
-
<action>Find FIRST story (reading in order from top to bottom) where:
|
|
30
|
-
- Key matches pattern: number-number-name (e.g., "1-2-user-auth")
|
|
31
|
-
- NOT an epic key (epic-X) or retrospective (epic-X-retrospective)
|
|
32
|
-
- Status value equals "drafted"
|
|
33
|
-
</action>
|
|
34
|
-
|
|
35
|
-
<check if="no story with status 'drafted' found">
|
|
36
|
-
<output>📋 No drafted stories found in sprint-status.yaml
|
|
37
|
-
All stories are either still in backlog or already marked ready/in-progress/done.
|
|
38
|
-
|
|
39
|
-
**Next Steps:**
|
|
40
|
-
1. Run `create-story` to draft more stories
|
|
41
|
-
2. Run `sprint-planning` to refresh story tracking
|
|
42
|
-
</output>
|
|
43
|
-
<action>HALT</action>
|
|
44
|
-
</check>
|
|
45
|
-
|
|
46
|
-
<action>Use the first drafted story found</action>
|
|
47
|
-
<action>Find matching story file in {{story_path}} using story_key pattern</action>
|
|
48
|
-
<action>Read the COMPLETE story file</action>
|
|
49
|
-
</check>
|
|
50
|
-
|
|
51
|
-
<action>Extract {{epic_id}}, {{story_id}}, {{story_title}}, {{story_status}} from filename/content</action>
|
|
52
|
-
<action>Parse sections: Story, Acceptance Criteria, Tasks/Subtasks, Dev Notes</action>
|
|
53
|
-
<action>Extract user story fields (asA, iWant, soThat)</action>
|
|
54
|
-
<template-output file="{default_output_file}">story_tasks</template-output>
|
|
55
|
-
<template-output file="{default_output_file}">acceptance_criteria</template-output>
|
|
56
|
-
|
|
57
|
-
<!-- Check if context file already exists -->
|
|
58
|
-
<action>Check if file exists at {default_output_file}</action>
|
|
59
|
-
|
|
60
|
-
<check if="context file already exists">
|
|
61
|
-
<output>⚠️ Context file already exists: {default_output_file}
|
|
62
|
-
|
|
63
|
-
**What would you like to do?**
|
|
64
|
-
1. **Replace** - Generate new context file (overwrites existing)
|
|
65
|
-
2. **Verify** - Validate existing context file
|
|
66
|
-
3. **Cancel** - Exit without changes
|
|
67
|
-
</output>
|
|
68
|
-
<ask>Choose action (replace/verify/cancel):</ask>
|
|
69
|
-
|
|
70
|
-
<check if="user chooses verify">
|
|
71
|
-
<action>GOTO validation_step</action>
|
|
72
|
-
</check>
|
|
73
|
-
|
|
74
|
-
<check if="user chooses cancel">
|
|
75
|
-
<action>HALT with message: "Context generation cancelled"</action>
|
|
76
|
-
</check>
|
|
77
|
-
|
|
78
|
-
<check if="user chooses replace">
|
|
79
|
-
<action>Continue to generate new context file</action>
|
|
80
|
-
</check>
|
|
81
|
-
</check>
|
|
82
|
-
|
|
83
|
-
<action>Store project root path for relative path conversion: extract from {project-root} variable</action>
|
|
84
|
-
<action>Define path normalization function: convert any absolute path to project-relative by removing project root prefix</action>
|
|
85
|
-
<action>Initialize output by writing template to {default_output_file}</action>
|
|
86
|
-
<template-output file="{default_output_file}">as_a</template-output>
|
|
87
|
-
<template-output file="{default_output_file}">i_want</template-output>
|
|
88
|
-
<template-output file="{default_output_file}">so_that</template-output>
|
|
89
|
-
</step>
|
|
90
|
-
|
|
91
|
-
<step n="1.5" goal="Discover and load project documents">
|
|
92
|
-
<invoke-protocol name="discover_inputs" />
|
|
93
|
-
<note>After discovery, these content variables are available: {prd_content}, {tech_spec_content}, {architecture_content}, {ux_design_content}, {epics_content} (loads only epic for this story if sharded), {document_project_content}</note>
|
|
94
|
-
</step>
|
|
95
|
-
|
|
96
|
-
<step n="2" goal="Collect relevant documentation">
|
|
97
|
-
<action>Review loaded content from Step 1.5 for items relevant to this story's domain (use keywords from story title, ACs, and tasks).</action>
|
|
98
|
-
<action>Extract relevant sections from: {prd_content}, {tech_spec_content}, {architecture_content}, {ux_design_content}, {document_project_content}</action>
|
|
99
|
-
<action>Note: Tech-Spec ({tech_spec_content}) is used for Level 0-1 projects (instead of PRD). It contains comprehensive technical context, brownfield analysis, framework details, existing patterns, and implementation guidance.</action>
|
|
100
|
-
<action>For each discovered document: convert absolute paths to project-relative format by removing {project-root} prefix. Store only relative paths (e.g., "docs/prd.md" not "/Users/.../docs/prd.md").</action>
|
|
101
|
-
<template-output file="{default_output_file}">
|
|
102
|
-
Add artifacts.docs entries with {path, title, section, snippet}:
|
|
103
|
-
- path: PROJECT-RELATIVE path only (strip {project-root} prefix)
|
|
104
|
-
- title: Document title
|
|
105
|
-
- section: Relevant section name
|
|
106
|
-
- snippet: Brief excerpt (2-3 sentences max, NO invention)
|
|
107
|
-
</template-output>
|
|
108
|
-
</step>
|
|
109
|
-
|
|
110
|
-
<step n="3" goal="Analyze existing code, interfaces, and constraints">
|
|
111
|
-
<action>Search source tree for modules, files, and symbols matching story intent and AC keywords (controllers, services, components, tests).</action>
|
|
112
|
-
<action>Identify existing interfaces/APIs the story should reuse rather than recreate.</action>
|
|
113
|
-
<action>Extract development constraints from Dev Notes and architecture (patterns, layers, testing requirements).</action>
|
|
114
|
-
<action>For all discovered code artifacts: convert absolute paths to project-relative format (strip {project-root} prefix).</action>
|
|
115
|
-
<template-output file="{default_output_file}">
|
|
116
|
-
Add artifacts.code entries with {path, kind, symbol, lines, reason}:
|
|
117
|
-
- path: PROJECT-RELATIVE path only (e.g., "src/services/api.js" not full path)
|
|
118
|
-
- kind: file type (controller, service, component, test, etc.)
|
|
119
|
-
- symbol: function/class/interface name
|
|
120
|
-
- lines: line range if specific (e.g., "45-67")
|
|
121
|
-
- reason: brief explanation of relevance to this story
|
|
122
|
-
|
|
123
|
-
Populate interfaces with API/interface signatures:
|
|
124
|
-
- name: Interface or API name
|
|
125
|
-
- kind: REST endpoint, GraphQL, function signature, class interface
|
|
126
|
-
- signature: Full signature or endpoint definition
|
|
127
|
-
- path: PROJECT-RELATIVE path to definition
|
|
128
|
-
|
|
129
|
-
Populate constraints with development rules:
|
|
130
|
-
- Extract from Dev Notes and architecture
|
|
131
|
-
- Include: required patterns, layer restrictions, testing requirements, coding standards
|
|
132
|
-
</template-output>
|
|
133
|
-
</step>
|
|
134
|
-
|
|
135
|
-
<step n="4" goal="Gather dependencies and frameworks">
|
|
136
|
-
<action>Detect dependency manifests and frameworks in the repo:
|
|
137
|
-
- Node: package.json (dependencies/devDependencies)
|
|
138
|
-
- Python: pyproject.toml/requirements.txt
|
|
139
|
-
- Go: go.mod
|
|
140
|
-
- Unity: Packages/manifest.json, Assets/, ProjectSettings/
|
|
141
|
-
- Other: list notable frameworks/configs found</action>
|
|
142
|
-
<template-output file="{default_output_file}">
|
|
143
|
-
Populate artifacts.dependencies with keys for detected ecosystems and their packages with version ranges where present
|
|
144
|
-
</template-output>
|
|
145
|
-
</step>
|
|
146
|
-
|
|
147
|
-
<step n="5" goal="Testing standards and ideas">
|
|
148
|
-
<action>From Dev Notes, architecture docs, testing docs, and existing tests, extract testing standards (frameworks, patterns, locations).</action>
|
|
149
|
-
<template-output file="{default_output_file}">
|
|
150
|
-
Populate tests.standards with a concise paragraph
|
|
151
|
-
Populate tests.locations with directories or glob patterns where tests live
|
|
152
|
-
Populate tests.ideas with initial test ideas mapped to acceptance criteria IDs
|
|
153
|
-
</template-output>
|
|
154
|
-
</step>
|
|
155
|
-
|
|
156
|
-
<step n="6" goal="Validate and save">
|
|
157
|
-
<anchor id="validation_step" />
|
|
158
|
-
<action>Validate output context file structure and content</action>
|
|
159
|
-
<invoke-task>Validate against checklist at {installed_path}/checklist.md using _bmad/core/tasks/validate-workflow.xml</invoke-task>
|
|
160
|
-
</step>
|
|
161
|
-
|
|
162
|
-
<step n="7" goal="Update story file and mark ready for dev" tag="sprint-status">
|
|
163
|
-
<action>Open {{story_path}}</action>
|
|
164
|
-
<action>Find the "Status:" line (usually at the top)</action>
|
|
165
|
-
<action>Update story file: Change Status to "ready-for-dev"</action>
|
|
166
|
-
<action>Under 'Dev Agent Record' → 'Context Reference' (create if missing), add or update a list item for {default_output_file}.</action>
|
|
167
|
-
<action>Save the story file.</action>
|
|
168
|
-
|
|
169
|
-
<!-- Update sprint status to mark ready-for-dev -->
|
|
170
|
-
<action>Load the FULL file: {{output_folder}}/sprint-status.yaml</action>
|
|
171
|
-
<action>Find development_status key matching {{story_key}}</action>
|
|
172
|
-
<action>Verify current status is "drafted" (expected previous state)</action>
|
|
173
|
-
<action>Update development_status[{{story_key}}] = "ready-for-dev"</action>
|
|
174
|
-
<action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
|
|
175
|
-
|
|
176
|
-
<check if="story key not found in file">
|
|
177
|
-
<output>⚠️ Story file updated, but could not update sprint-status: {{story_key}} not found
|
|
178
|
-
|
|
179
|
-
You may need to run sprint-planning to refresh tracking.
|
|
180
|
-
</output>
|
|
181
|
-
</check>
|
|
182
|
-
|
|
183
|
-
<output>✅ Story context generated successfully, {user_name}!
|
|
184
|
-
|
|
185
|
-
**Story Details:**
|
|
186
|
-
|
|
187
|
-
- Story: {{epic_id}}.{{story_id}} - {{story_title}}
|
|
188
|
-
- Story Key: {{story_key}}
|
|
189
|
-
- Context File: {default_output_file}
|
|
190
|
-
- Status: drafted → ready-for-dev
|
|
191
|
-
|
|
192
|
-
**Context Includes:**
|
|
193
|
-
|
|
194
|
-
- Documentation artifacts and references
|
|
195
|
-
- Existing code and interfaces
|
|
196
|
-
- Dependencies and frameworks
|
|
197
|
-
- Testing standards and ideas
|
|
198
|
-
- Development constraints
|
|
199
|
-
|
|
200
|
-
**Next Steps:**
|
|
201
|
-
|
|
202
|
-
1. Review the context file: {default_output_file}
|
|
203
|
-
2. Run `dev-story` to implement the story
|
|
204
|
-
3. Generate context for more drafted stories if needed
|
|
205
|
-
</output>
|
|
206
|
-
</step>
|
|
207
|
-
|
|
208
|
-
</workflow>
|
|
209
|
-
```
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# Story Context Creation Workflow
|
|
2
|
-
name: story-context
|
|
3
|
-
description: "Assemble a dynamic Story Context XML by pulling latest documentation and existing code/library artifacts relevant to a drafted story"
|
|
4
|
-
author: "BMad"
|
|
5
|
-
|
|
6
|
-
# Critical variables
|
|
7
|
-
config_source: "{project-root}/_bmad/bmgd/config.yaml"
|
|
8
|
-
output_folder: "{config_source}:output_folder"
|
|
9
|
-
user_name: "{config_source}:user_name"
|
|
10
|
-
communication_language: "{config_source}:communication_language"
|
|
11
|
-
document_output_language: "{config_source}:document_output_language"
|
|
12
|
-
story_path: "{config_source}:sprint_artifacts"
|
|
13
|
-
date: system-generated
|
|
14
|
-
sprint_artifacts: "{config_source}:sprint_artifacts"
|
|
15
|
-
sprint_status: "{sprint_artifacts}/sprint-status.yaml || {output_folder}/sprint-status.yaml"
|
|
16
|
-
|
|
17
|
-
# Workflow components
|
|
18
|
-
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/story-context"
|
|
19
|
-
template: "{installed_path}/context-template.xml"
|
|
20
|
-
instructions: "{installed_path}/instructions.md"
|
|
21
|
-
validation: "{installed_path}/checklist.md"
|
|
22
|
-
|
|
23
|
-
# Smart input file references - handles both whole docs and sharded docs
|
|
24
|
-
# Priority: Whole document first, then sharded version
|
|
25
|
-
# Strategy: SELECTIVE LOAD - only load the specific epic needed for this story
|
|
26
|
-
input_file_patterns:
|
|
27
|
-
prd:
|
|
28
|
-
description: "Product requirements (optional)"
|
|
29
|
-
whole: "{output_folder}/*prd*.md"
|
|
30
|
-
sharded: "{output_folder}/*prd*/*.md"
|
|
31
|
-
load_strategy: "FULL_LOAD"
|
|
32
|
-
tech_spec:
|
|
33
|
-
description: "Technical specification"
|
|
34
|
-
whole: "{output_folder}/tech-spec.md"
|
|
35
|
-
load_strategy: "FULL_LOAD"
|
|
36
|
-
architecture:
|
|
37
|
-
description: "System architecture and decisions"
|
|
38
|
-
whole: "{output_folder}/*architecture*.md"
|
|
39
|
-
sharded: "{output_folder}/*architecture*/*.md"
|
|
40
|
-
load_strategy: "FULL_LOAD"
|
|
41
|
-
ux_design:
|
|
42
|
-
description: "UX design specification (if UI)"
|
|
43
|
-
whole: "{output_folder}/*ux*.md"
|
|
44
|
-
sharded: "{output_folder}/*ux*/*.md"
|
|
45
|
-
load_strategy: "FULL_LOAD"
|
|
46
|
-
epics:
|
|
47
|
-
description: "All epics with user stories"
|
|
48
|
-
whole: "{output_folder}/*epic*.md"
|
|
49
|
-
sharded_index: "{output_folder}/*epic*/index.md"
|
|
50
|
-
sharded_single: "{output_folder}/*epic*/epic-{{epic_num}}.md"
|
|
51
|
-
load_strategy: "SELECTIVE_LOAD"
|
|
52
|
-
document_project:
|
|
53
|
-
description: "Brownfield project documentation (optional)"
|
|
54
|
-
sharded: "{output_folder}/index.md"
|
|
55
|
-
load_strategy: "INDEX_GUIDED"
|
|
56
|
-
|
|
57
|
-
# Output configuration
|
|
58
|
-
# Uses story_key from sprint-status.yaml (e.g., "1-2-user-authentication")
|
|
59
|
-
default_output_file: "{story_path}/{{story_key}}.context.xml"
|
|
60
|
-
|
|
61
|
-
standalone: true
|
|
62
|
-
|
|
63
|
-
web_bundle: false
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
# Story Approved Workflow Instructions (DEV Agent)
|
|
2
|
-
|
|
3
|
-
<critical>The workflow execution engine is governed by: {project-root}/\_bmad/core/tasks/workflow.xml</critical>
|
|
4
|
-
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
|
|
5
|
-
<critical>Communicate all responses in {communication_language}</critical>
|
|
6
|
-
|
|
7
|
-
<workflow>
|
|
8
|
-
|
|
9
|
-
<critical>This workflow is run by DEV agent AFTER user confirms a story is approved (Definition of Done is complete)</critical>
|
|
10
|
-
<critical>Workflow: Update story file status to Done</critical>
|
|
11
|
-
|
|
12
|
-
<step n="1" goal="Find reviewed story to mark done" tag="sprint-status">
|
|
13
|
-
|
|
14
|
-
<check if="{story_path} is provided">
|
|
15
|
-
<action>Use {story_path} directly</action>
|
|
16
|
-
<action>Read COMPLETE story file and parse sections</action>
|
|
17
|
-
<action>Extract story_key from filename or story metadata</action>
|
|
18
|
-
<action>Verify Status is "review" - if not, HALT with message: "Story status must be 'review' to mark as done"</action>
|
|
19
|
-
</check>
|
|
20
|
-
|
|
21
|
-
<check if="{story_path} is NOT provided">
|
|
22
|
-
<critical>MUST read COMPLETE sprint-status.yaml file from start to end to preserve order</critical>
|
|
23
|
-
<action>Load the FULL file: {output_folder}/sprint-status.yaml</action>
|
|
24
|
-
<action>Read ALL lines from beginning to end - do not skip any content</action>
|
|
25
|
-
<action>Parse the development_status section completely</action>
|
|
26
|
-
|
|
27
|
-
<action>Find FIRST story (reading in order from top to bottom) where: - Key matches pattern: number-number-name (e.g., "1-2-user-auth") - NOT an epic key (epic-X) or retrospective (epic-X-retrospective) - Status value equals "review"
|
|
28
|
-
</action>
|
|
29
|
-
|
|
30
|
-
<check if="no story with status 'review' found">
|
|
31
|
-
<output>📋 No stories with status "review" found
|
|
32
|
-
|
|
33
|
-
All stories are either still in development or already done.
|
|
34
|
-
|
|
35
|
-
**Next Steps:**
|
|
36
|
-
|
|
37
|
-
1. Run `dev-story` to implement stories
|
|
38
|
-
2. Run `code-review` if stories need review first
|
|
39
|
-
3. Check sprint-status.yaml for current story states
|
|
40
|
-
</output>
|
|
41
|
-
<action>HALT</action>
|
|
42
|
-
</check>
|
|
43
|
-
|
|
44
|
-
<action>Use the first reviewed story found</action>
|
|
45
|
-
<action>Find matching story file in {story_dir} using story_key pattern</action>
|
|
46
|
-
<action>Read the COMPLETE story file</action>
|
|
47
|
-
</check>
|
|
48
|
-
|
|
49
|
-
<action>Extract story_id and story_title from the story file</action>
|
|
50
|
-
|
|
51
|
-
<action>Find the "Status:" line (usually at the top)</action>
|
|
52
|
-
<action>Update story file: Change Status to "done"</action>
|
|
53
|
-
|
|
54
|
-
<action>Add completion notes to Dev Agent Record section:</action>
|
|
55
|
-
<action>Find "## Dev Agent Record" section and add:
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
### Completion Notes
|
|
59
|
-
**Completed:** {date}
|
|
60
|
-
**Definition of Done:** All acceptance criteria met, code reviewed, tests passing
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
</action>
|
|
64
|
-
|
|
65
|
-
<action>Save the story file</action>
|
|
66
|
-
</step>
|
|
67
|
-
|
|
68
|
-
<step n="2" goal="Update sprint status to done" tag="sprint-status">
|
|
69
|
-
<action>Load the FULL file: {output_folder}/sprint-status.yaml</action>
|
|
70
|
-
<action>Find development_status key matching {story_key}</action>
|
|
71
|
-
<action>Verify current status is "review" (expected previous state)</action>
|
|
72
|
-
<action>Update development_status[{story_key}] = "done"</action>
|
|
73
|
-
<action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
|
|
74
|
-
|
|
75
|
-
<check if="story key not found in file">
|
|
76
|
-
<output>⚠️ Story file updated, but could not update sprint-status: {story_key} not found
|
|
77
|
-
|
|
78
|
-
Story is marked Done in file, but sprint-status.yaml may be out of sync.
|
|
79
|
-
</output>
|
|
80
|
-
</check>
|
|
81
|
-
|
|
82
|
-
</step>
|
|
83
|
-
|
|
84
|
-
<step n="3" goal="Confirm completion to user">
|
|
85
|
-
|
|
86
|
-
<output>**Story Approved and Marked Done, {user_name}!**
|
|
87
|
-
|
|
88
|
-
✅ Story file updated → Status: done
|
|
89
|
-
✅ Sprint status updated: review → done
|
|
90
|
-
|
|
91
|
-
**Completed Story:**
|
|
92
|
-
|
|
93
|
-
- **ID:** {story_id}
|
|
94
|
-
- **Key:** {story_key}
|
|
95
|
-
- **Title:** {story_title}
|
|
96
|
-
- **Completed:** {date}
|
|
97
|
-
|
|
98
|
-
**Next Steps:**
|
|
99
|
-
|
|
100
|
-
1. Continue with next story in your backlog
|
|
101
|
-
- Run `create-story` for next backlog story
|
|
102
|
-
- Or run `dev-story` if ready stories exist
|
|
103
|
-
2. Check epic completion status
|
|
104
|
-
- Run `retrospective` workflow to check if epic is complete
|
|
105
|
-
- Epic retrospective will verify all stories are done
|
|
106
|
-
</output>
|
|
107
|
-
|
|
108
|
-
</step>
|
|
109
|
-
|
|
110
|
-
</workflow>
|
|
111
|
-
```
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# Story Done Workflow (DEV Agent)
|
|
2
|
-
name: story-done
|
|
3
|
-
description: "Marks a story as done (DoD complete) and moves it from its current status → DONE in the status file. Advances the story queue. Simple status-update workflow with no searching required."
|
|
4
|
-
author: "BMad"
|
|
5
|
-
|
|
6
|
-
# Critical variables from config
|
|
7
|
-
config_source: "{project-root}/_bmad/bmgd/config.yaml"
|
|
8
|
-
output_folder: "{config_source}:output_folder"
|
|
9
|
-
user_name: "{config_source}:user_name"
|
|
10
|
-
communication_language: "{config_source}:communication_language"
|
|
11
|
-
date: system-generated
|
|
12
|
-
sprint_artifacts: "{config_source}:sprint_artifacts"
|
|
13
|
-
sprint_status: "{sprint_artifacts}/sprint-status.yaml || {output_folder}/sprint-status.yaml"
|
|
14
|
-
|
|
15
|
-
# Workflow components
|
|
16
|
-
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/story-done"
|
|
17
|
-
instructions: "{installed_path}/instructions.md"
|
|
18
|
-
|
|
19
|
-
# Variables and inputs
|
|
20
|
-
variables:
|
|
21
|
-
story_dir: "{config_source}:sprint_artifacts" # Directory where stories are stored
|
|
22
|
-
|
|
23
|
-
# Output configuration - no output file, just status updates
|
|
24
|
-
default_output_file: ""
|
|
25
|
-
|
|
26
|
-
standalone: true
|
|
27
|
-
|
|
28
|
-
web_bundle: false
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
# Story Ready Workflow Instructions (SM Agent)
|
|
2
|
-
|
|
3
|
-
<critical>The workflow execution engine is governed by: {project_root}/\_bmad/core/tasks/workflow.xml</critical>
|
|
4
|
-
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
|
|
5
|
-
<critical>Communicate all responses in {communication_language} and language MUST be tailored to {user_skill_level}</critical>
|
|
6
|
-
<critical>Generate all documents in {document_output_language}</critical>
|
|
7
|
-
|
|
8
|
-
<workflow>
|
|
9
|
-
|
|
10
|
-
<critical>This workflow is run by SM agent AFTER user reviews a drafted story and confirms it's ready for development</critical>
|
|
11
|
-
<critical>Simple workflow: Update story file status to Ready</critical>
|
|
12
|
-
|
|
13
|
-
<step n="1" goal="Find drafted story to mark ready" tag="sprint-status">
|
|
14
|
-
|
|
15
|
-
<action>If {{story_path}} is provided → use it directly; extract story_key from filename or metadata; GOTO mark_ready</action>
|
|
16
|
-
|
|
17
|
-
<critical>MUST read COMPLETE {sprint_status} file from start to end to preserve order</critical>
|
|
18
|
-
<action>Load the FULL file: {sprint_status}</action>
|
|
19
|
-
<action>Read ALL lines from beginning to end - do not skip any content</action>
|
|
20
|
-
<action>Parse the development_status section completely</action>
|
|
21
|
-
|
|
22
|
-
<action>Find ALL stories (reading in order from start to end) where:
|
|
23
|
-
|
|
24
|
-
- Key matches pattern: number-number-name (e.g., "1-2-user-auth")
|
|
25
|
-
- NOT an epic key (epic-X) or retrospective (epic-X-retrospective)
|
|
26
|
-
- Status value equals "drafted"
|
|
27
|
-
</action>
|
|
28
|
-
|
|
29
|
-
<action>Collect up to 10 drafted story keys in order (limit for display purposes)</action>
|
|
30
|
-
<action>Count total drafted stories found</action>
|
|
31
|
-
|
|
32
|
-
<check if="no drafted stories found">
|
|
33
|
-
<output>📋 No drafted stories found in {sprint_status}
|
|
34
|
-
|
|
35
|
-
All stories are either still in backlog or already marked ready/in-progress/done.
|
|
36
|
-
|
|
37
|
-
**Options:**
|
|
38
|
-
|
|
39
|
-
1. Run `create-story` to draft more stories
|
|
40
|
-
2. Run `sprint-planning` to refresh story tracking
|
|
41
|
-
</output>
|
|
42
|
-
<action>HALT</action>
|
|
43
|
-
</check>
|
|
44
|
-
|
|
45
|
-
<action>Display available drafted stories:
|
|
46
|
-
|
|
47
|
-
**Drafted Stories Available ({{drafted_count}} found):**
|
|
48
|
-
|
|
49
|
-
{{list_of_drafted_story_keys}}
|
|
50
|
-
|
|
51
|
-
</action>
|
|
52
|
-
|
|
53
|
-
<ask if="{{non_interactive}} == false">Select the drafted story to mark as Ready (enter story key or number):</ask>
|
|
54
|
-
<action if="{{non_interactive}} == true">Auto-select first story from the list</action>
|
|
55
|
-
|
|
56
|
-
<action>Resolve selected story_key from user input or auto-selection</action>
|
|
57
|
-
<action>Find matching story file in {{story_dir}} using story_key pattern</action>
|
|
58
|
-
|
|
59
|
-
<anchor id="mark_ready" />
|
|
60
|
-
|
|
61
|
-
<action>Read the story file from resolved path</action>
|
|
62
|
-
<action>Extract story_id and story_title from the file</action>
|
|
63
|
-
|
|
64
|
-
<action>Find the "Status:" line (usually at the top)</action>
|
|
65
|
-
<action>Update story file: Change Status to "ready-for-dev"</action>
|
|
66
|
-
<action>Save the story file</action>
|
|
67
|
-
</step>
|
|
68
|
-
|
|
69
|
-
<step n="2" goal="Update sprint status to ready-for-dev" tag="sprint-status">
|
|
70
|
-
<action>Load the FULL file: {sprint_status}</action>
|
|
71
|
-
<action>Find development_status key matching {{story_key}}</action>
|
|
72
|
-
<action>Verify current status is "drafted" (expected previous state)</action>
|
|
73
|
-
<action>Update development_status[{{story_key}}] = "ready-for-dev"</action>
|
|
74
|
-
<action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
|
|
75
|
-
|
|
76
|
-
<check if="story key not found in file">
|
|
77
|
-
<output>⚠️ Story file updated, but could not update sprint-status: {{story_key}} not found
|
|
78
|
-
|
|
79
|
-
You may need to run sprint-planning to refresh tracking.
|
|
80
|
-
</output>
|
|
81
|
-
</check>
|
|
82
|
-
|
|
83
|
-
</step>
|
|
84
|
-
|
|
85
|
-
<step n="3" goal="Confirm completion to user">
|
|
86
|
-
|
|
87
|
-
<output>**Story Marked Ready for Development, {user_name}!**
|
|
88
|
-
|
|
89
|
-
✅ Story file updated: `{{story_file}}` → Status: ready-for-dev
|
|
90
|
-
✅ Sprint status updated: drafted → ready-for-dev
|
|
91
|
-
|
|
92
|
-
**Story Details:**
|
|
93
|
-
|
|
94
|
-
- **ID:** {{story_id}}
|
|
95
|
-
- **Key:** {{story_key}}
|
|
96
|
-
- **Title:** {{story_title}}
|
|
97
|
-
- **File:** `{{story_file}}`
|
|
98
|
-
- **Status:** ready-for-dev
|
|
99
|
-
|
|
100
|
-
**Next Steps:**
|
|
101
|
-
|
|
102
|
-
1. **Recommended:** Run `story-context` workflow to generate implementation context
|
|
103
|
-
- This creates a comprehensive context XML for the DEV agent
|
|
104
|
-
- Includes relevant architecture, dependencies, and existing code
|
|
105
|
-
|
|
106
|
-
2. **Alternative:** Skip context generation and go directly to `dev-story` workflow
|
|
107
|
-
- Faster, but DEV agent will have less context
|
|
108
|
-
- Only recommended for simple, well-understood stories
|
|
109
|
-
|
|
110
|
-
**To proceed:**
|
|
111
|
-
|
|
112
|
-
- For context generation: Stay with SM agent and run `story-context` workflow
|
|
113
|
-
- For direct implementation: Load DEV agent and run `dev-story` workflow
|
|
114
|
-
|
|
115
|
-
</step>
|
|
116
|
-
|
|
117
|
-
</workflow>
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Story Ready Workflow (SM Agent)
|
|
2
|
-
name: story-ready
|
|
3
|
-
description: "Marks a drafted story as ready for development and moves it from TODO → IN PROGRESS in the status file. Simple status-update workflow with no searching required."
|
|
4
|
-
author: "BMad"
|
|
5
|
-
|
|
6
|
-
# Critical variables from config
|
|
7
|
-
config_source: "{project-root}/_bmad/bmgd/config.yaml"
|
|
8
|
-
output_folder: "{config_source}:output_folder"
|
|
9
|
-
user_name: "{config_source}:user_name"
|
|
10
|
-
communication_language: "{config_source}:communication_language"
|
|
11
|
-
date: system-generated
|
|
12
|
-
sprint_artifacts: "{config_source}:sprint_artifacts"
|
|
13
|
-
sprint_status: "{sprint_artifacts}/sprint-status.yaml || {output_folder}/sprint-status.yaml"
|
|
14
|
-
|
|
15
|
-
# Workflow components
|
|
16
|
-
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/story-ready"
|
|
17
|
-
instructions: "{installed_path}/instructions.md"
|
|
18
|
-
|
|
19
|
-
# Variables and inputs
|
|
20
|
-
variables:
|
|
21
|
-
story_dir: "{config_source}:sprint_artifacts"
|
|
22
|
-
|
|
23
|
-
standalone: true
|
|
24
|
-
|
|
25
|
-
web_bundle: false
|
|
File without changes
|
/package/src/modules/bmgd/workflows/2-design/gdd/{gdd-template.md → templates/gdd-template.md}
RENAMED
|
File without changes
|
|
File without changes
|