bmad-method 6.1.1-next.12 → 6.1.1-next.14
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/package.json +1 -1
- package/src/bmm/agents/pm.agent.yaml +1 -1
- package/src/bmm/module-help.csv +1 -1
- package/src/bmm/workflows/3-solutioning/bmad-create-epics-and-stories/SKILL.md +6 -0
- package/src/bmm/workflows/3-solutioning/bmad-create-epics-and-stories/bmad-skill-manifest.yaml +1 -0
- package/src/bmm/workflows/3-solutioning/{create-epics-and-stories → bmad-create-epics-and-stories}/steps/step-01-validate-prerequisites.md +7 -24
- package/src/bmm/workflows/3-solutioning/{create-epics-and-stories → bmad-create-epics-and-stories}/steps/step-02-design-epics.md +7 -23
- package/src/bmm/workflows/3-solutioning/{create-epics-and-stories → bmad-create-epics-and-stories}/steps/step-03-create-stories.md +8 -24
- package/src/bmm/workflows/3-solutioning/{create-epics-and-stories → bmad-create-epics-and-stories}/steps/step-04-final-validation.md +0 -15
- package/src/bmm/workflows/3-solutioning/{create-epics-and-stories → bmad-create-epics-and-stories}/workflow.md +1 -6
- package/src/bmm/workflows/4-implementation/bmad-create-story/checklist.md +2 -2
- package/src/bmm/workflows/4-implementation/bmad-create-story/workflow.md +3 -8
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/bmad-skill-manifest.yaml +0 -3
- /package/src/bmm/workflows/3-solutioning/{create-epics-and-stories → bmad-create-epics-and-stories}/templates/epics-template.md +0 -0
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@ agent:
|
|
|
32
32
|
description: "[EP] Edit PRD: Update an existing Product Requirements Document"
|
|
33
33
|
|
|
34
34
|
- trigger: CE or fuzzy match on epics-stories
|
|
35
|
-
exec: "
|
|
35
|
+
exec: "skill:bmad-create-epics-and-stories"
|
|
36
36
|
description: "[CE] Create Epics and Stories: Create the Epics and Stories Listing, these are the specs that will drive development"
|
|
37
37
|
|
|
38
38
|
- trigger: IR or fuzzy match on implementation-readiness
|
package/src/bmm/module-help.csv
CHANGED
|
@@ -20,7 +20,7 @@ bmm,2-planning,Validate PRD,VP,20,_bmad/bmm/workflows/2-plan-workflows/create-pr
|
|
|
20
20
|
bmm,2-planning,Edit PRD,EP,25,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md,bmad-bmm-edit-prd,false,pm,Edit Mode,"Improve and enhance an existing PRD",planning_artifacts,"updated prd",
|
|
21
21
|
bmm,2-planning,Create UX,CU,30,skill:bmad-create-ux-design,bmad-bmm-create-ux-design,false,ux-designer,Create Mode,"Guidance through realizing the plan for your UX, strongly recommended if a UI is a primary piece of the proposed project",planning_artifacts,"ux design",
|
|
22
22
|
bmm,3-solutioning,Create Architecture,CA,10,skill:bmad-create-architecture,bmad-bmm-create-architecture,true,architect,Create Mode,"Guided Workflow to document technical decisions",planning_artifacts,architecture,
|
|
23
|
-
bmm,3-solutioning,Create Epics and Stories,CE,30,
|
|
23
|
+
bmm,3-solutioning,Create Epics and Stories,CE,30,skill:bmad-create-epics-and-stories,bmad-bmm-create-epics-and-stories,true,pm,Create Mode,"Create the Epics and Stories Listing",planning_artifacts,"epics and stories",
|
|
24
24
|
bmm,3-solutioning,Check Implementation Readiness,IR,70,skill:bmad-check-implementation-readiness,bmad-bmm-check-implementation-readiness,true,architect,Validate Mode,"Ensure PRD UX Architecture and Epics Stories are aligned",planning_artifacts,"readiness report",
|
|
25
25
|
bmm,4-implementation,Sprint Planning,SP,10,_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.md,bmad-bmm-sprint-planning,true,sm,Create Mode,"Generate sprint plan for development tasks - this kicks off the implementation phase by producing a plan the implementation agents will follow in sequence for every story in the plan.",implementation_artifacts,"sprint status",
|
|
26
26
|
bmm,4-implementation,Sprint Status,SS,20,_bmad/bmm/workflows/4-implementation/sprint-status/workflow.md,bmad-bmm-sprint-status,false,sm,Create Mode,"Anytime: Summarize sprint status and route to next workflow",,,
|
package/src/bmm/workflows/3-solutioning/bmad-create-epics-and-stories/bmad-skill-manifest.yaml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
type: skill
|
|
@@ -1,23 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: 'step-01-validate-prerequisites'
|
|
3
3
|
description: 'Validate required documents exist and extract all requirements for epic and story creation'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-01-validate-prerequisites.md'
|
|
10
|
-
nextStepFile: './step-02-design-epics.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
13
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
14
|
-
|
|
15
|
-
# Task References
|
|
16
|
-
advancedElicitationTask: 'skill:bmad-advanced-elicitation'
|
|
17
|
-
partyModeWorkflow: '{project-root}/_bmad/core/workflows/bmad-party-mode/workflow.md'
|
|
18
|
-
|
|
19
|
-
# Template References
|
|
20
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
21
4
|
---
|
|
22
5
|
|
|
23
6
|
# Step 1: Validate Prerequisites and Extract Requirements
|
|
@@ -54,7 +37,7 @@ To validate that all required input documents exist and extract all requirements
|
|
|
54
37
|
## EXECUTION PROTOCOLS:
|
|
55
38
|
|
|
56
39
|
- 🎯 Extract requirements systematically from all documents
|
|
57
|
-
- 💾 Populate {
|
|
40
|
+
- 💾 Populate {planning_artifacts}/epics.md with extracted requirements
|
|
58
41
|
- 📖 Update frontmatter with extraction progress
|
|
59
42
|
- 🚫 FORBIDDEN to load next step until user selects 'C' and requirements are extracted
|
|
60
43
|
|
|
@@ -91,7 +74,7 @@ Search for required documents using these patterns (sharded means a large docume
|
|
|
91
74
|
1. `{planning_artifacts}/*ux*.md` (whole document)
|
|
92
75
|
2. `{planning_artifacts}/*ux*/index.md` (sharded version)
|
|
93
76
|
|
|
94
|
-
Before proceeding, Ask the user if there are any other documents to include for analysis, and if anything found should be excluded. Wait for user confirmation. Once confirmed, create the {
|
|
77
|
+
Before proceeding, Ask the user if there are any other documents to include for analysis, and if anything found should be excluded. Wait for user confirmation. Once confirmed, create the {planning_artifacts}/epics.md from the ../templates/epics-template.md and in the front matter list the files in the array of `inputDocuments: []`.
|
|
95
78
|
|
|
96
79
|
### 3. Extract Functional Requirements (FRs)
|
|
97
80
|
|
|
@@ -182,9 +165,9 @@ UX-DR2: [Actionable UX design requirement with clear implementation scope]
|
|
|
182
165
|
|
|
183
166
|
### 7. Load and Initialize Template
|
|
184
167
|
|
|
185
|
-
Load
|
|
168
|
+
Load ../templates/epics-template.md and initialize {planning_artifacts}/epics.md:
|
|
186
169
|
|
|
187
|
-
1. Copy the entire template to {
|
|
170
|
+
1. Copy the entire template to {planning_artifacts}/epics.md
|
|
188
171
|
2. Replace {{project_name}} with the actual project name
|
|
189
172
|
3. Replace placeholder sections with extracted requirements:
|
|
190
173
|
- {{fr_list}} → extracted FRs
|
|
@@ -228,7 +211,7 @@ Update the requirements based on user feedback until confirmation is received.
|
|
|
228
211
|
|
|
229
212
|
## CONTENT TO SAVE TO DOCUMENT:
|
|
230
213
|
|
|
231
|
-
After extraction and confirmation, update {
|
|
214
|
+
After extraction and confirmation, update {planning_artifacts}/epics.md with:
|
|
232
215
|
|
|
233
216
|
- Complete FR list in {{fr_list}} section
|
|
234
217
|
- Complete NFR list in {{nfr_list}} section
|
|
@@ -247,12 +230,12 @@ Display: `**Confirm the Requirements are complete and correct to [C] continue:**
|
|
|
247
230
|
|
|
248
231
|
#### Menu Handling Logic:
|
|
249
232
|
|
|
250
|
-
- IF C: Save all to {
|
|
233
|
+
- IF C: Save all to {planning_artifacts}/epics.md, update frontmatter, then read fully and follow: ./step-02-design-epics.md
|
|
251
234
|
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#10-present-menu-options)
|
|
252
235
|
|
|
253
236
|
## CRITICAL STEP COMPLETION NOTE
|
|
254
237
|
|
|
255
|
-
ONLY WHEN C is selected and all requirements are saved to document and frontmatter is updated, will you then read fully and follow:
|
|
238
|
+
ONLY WHEN C is selected and all requirements are saved to document and frontmatter is updated, will you then read fully and follow: ./step-02-design-epics.md to begin epic design step.
|
|
256
239
|
|
|
257
240
|
---
|
|
258
241
|
|
|
@@ -1,22 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: 'step-02-design-epics'
|
|
3
3
|
description: 'Design and approve the epics_list that will organize all requirements into user-value-focused epics'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-02-design-epics.md'
|
|
10
|
-
nextStepFile: './step-03-create-stories.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
13
|
-
|
|
14
|
-
# Task References
|
|
15
|
-
advancedElicitationTask: 'skill:bmad-advanced-elicitation'
|
|
16
|
-
partyModeWorkflow: '{project-root}/_bmad/core/workflows/bmad-party-mode/workflow.md'
|
|
17
|
-
|
|
18
|
-
# Template References
|
|
19
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
20
4
|
---
|
|
21
5
|
|
|
22
6
|
# Step 2: Design Epic List
|
|
@@ -54,7 +38,7 @@ To design and get approval for the epics_list that will organize all requirement
|
|
|
54
38
|
## EXECUTION PROTOCOLS:
|
|
55
39
|
|
|
56
40
|
- 🎯 Design epics collaboratively based on extracted requirements
|
|
57
|
-
- 💾 Update {{epics_list}} in {
|
|
41
|
+
- 💾 Update {{epics_list}} in {planning_artifacts}/epics.md
|
|
58
42
|
- 📖 Document the FR coverage mapping
|
|
59
43
|
- 🚫 FORBIDDEN to load next step until user approves epics_list
|
|
60
44
|
|
|
@@ -62,7 +46,7 @@ To design and get approval for the epics_list that will organize all requirement
|
|
|
62
46
|
|
|
63
47
|
### 1. Review Extracted Requirements
|
|
64
48
|
|
|
65
|
-
Load {
|
|
49
|
+
Load {planning_artifacts}/epics.md and review:
|
|
66
50
|
|
|
67
51
|
- **Functional Requirements:** Count and review FRs from Step 1
|
|
68
52
|
- **Non-Functional Requirements:** Review NFRs that need to be addressed
|
|
@@ -182,7 +166,7 @@ If user wants changes:
|
|
|
182
166
|
|
|
183
167
|
## CONTENT TO UPDATE IN DOCUMENT:
|
|
184
168
|
|
|
185
|
-
After approval, update {
|
|
169
|
+
After approval, update {planning_artifacts}/epics.md:
|
|
186
170
|
|
|
187
171
|
1. Replace {{epics_list}} placeholder with the approved epic list
|
|
188
172
|
2. Replace {{requirements_coverage_map}} with the coverage map
|
|
@@ -194,9 +178,9 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
194
178
|
|
|
195
179
|
#### Menu Handling Logic:
|
|
196
180
|
|
|
197
|
-
- IF A:
|
|
198
|
-
- IF P:
|
|
199
|
-
- IF C: Save approved epics_list to {
|
|
181
|
+
- IF A: Invoke the `bmad-advanced-elicitation` skill
|
|
182
|
+
- IF P: Invoke the `bmad-party-mode` skill
|
|
183
|
+
- IF C: Save approved epics_list to {planning_artifacts}/epics.md, update frontmatter, then read fully and follow: ./step-03-create-stories.md
|
|
200
184
|
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#8-present-menu-options)
|
|
201
185
|
|
|
202
186
|
#### EXECUTION RULES:
|
|
@@ -208,7 +192,7 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
208
192
|
|
|
209
193
|
## CRITICAL STEP COMPLETION NOTE
|
|
210
194
|
|
|
211
|
-
ONLY WHEN C is selected and the approved epics_list is saved to document, will you then read fully and follow:
|
|
195
|
+
ONLY WHEN C is selected and the approved epics_list is saved to document, will you then read fully and follow: ./step-03-create-stories.md to begin story creation step.
|
|
212
196
|
|
|
213
197
|
---
|
|
214
198
|
|
|
@@ -1,22 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: 'step-03-create-stories'
|
|
3
3
|
description: 'Generate all epics with their stories following the template structure'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-03-create-stories.md'
|
|
10
|
-
nextStepFile: './step-04-final-validation.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
13
|
-
|
|
14
|
-
# Task References
|
|
15
|
-
advancedElicitationTask: 'skill:bmad-advanced-elicitation'
|
|
16
|
-
partyModeWorkflow: '{project-root}/_bmad/core/workflows/bmad-party-mode/workflow.md'
|
|
17
|
-
|
|
18
|
-
# Template References
|
|
19
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
20
4
|
---
|
|
21
5
|
|
|
22
6
|
# Step 3: Generate Epics and Stories
|
|
@@ -54,7 +38,7 @@ To generate all epics with their stories based on the approved epics_list, follo
|
|
|
54
38
|
## EXECUTION PROTOCOLS:
|
|
55
39
|
|
|
56
40
|
- 🎯 Generate stories collaboratively with user input
|
|
57
|
-
- 💾 Append epics and stories to {
|
|
41
|
+
- 💾 Append epics and stories to {planning_artifacts}/epics.md following template
|
|
58
42
|
- 📖 Process epics one at a time in sequence
|
|
59
43
|
- 🚫 FORBIDDEN to skip any epic or rush through stories
|
|
60
44
|
|
|
@@ -62,7 +46,7 @@ To generate all epics with their stories based on the approved epics_list, follo
|
|
|
62
46
|
|
|
63
47
|
### 1. Load Approved Epic Structure
|
|
64
48
|
|
|
65
|
-
Load {
|
|
49
|
+
Load {planning_artifacts}/epics.md and review:
|
|
66
50
|
|
|
67
51
|
- Approved epics_list from Step 2
|
|
68
52
|
- FR coverage map
|
|
@@ -186,7 +170,7 @@ After writing each story:
|
|
|
186
170
|
|
|
187
171
|
When story is approved:
|
|
188
172
|
|
|
189
|
-
- Append it to {
|
|
173
|
+
- Append it to {planning_artifacts}/epics.md following template structure
|
|
190
174
|
- Use correct numbering (Epic N, Story M)
|
|
191
175
|
- Maintain proper markdown formatting
|
|
192
176
|
|
|
@@ -215,7 +199,7 @@ After all epics and stories are generated:
|
|
|
215
199
|
|
|
216
200
|
## TEMPLATE STRUCTURE COMPLIANCE:
|
|
217
201
|
|
|
218
|
-
The final {
|
|
202
|
+
The final {planning_artifacts}/epics.md must follow this structure exactly:
|
|
219
203
|
|
|
220
204
|
1. **Overview** section with project name
|
|
221
205
|
2. **Requirements Inventory** with all three subsections populated
|
|
@@ -235,9 +219,9 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
235
219
|
|
|
236
220
|
#### Menu Handling Logic:
|
|
237
221
|
|
|
238
|
-
- IF A:
|
|
239
|
-
- IF P:
|
|
240
|
-
- IF C: Save content to {
|
|
222
|
+
- IF A: Invoke the `bmad-advanced-elicitation` skill
|
|
223
|
+
- IF P: Invoke the `bmad-party-mode` skill
|
|
224
|
+
- IF C: Save content to {planning_artifacts}/epics.md, update frontmatter, then read fully and follow: ./step-04-final-validation.md
|
|
241
225
|
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#7-present-final-menu-options)
|
|
242
226
|
|
|
243
227
|
#### EXECUTION RULES:
|
|
@@ -249,7 +233,7 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
249
233
|
|
|
250
234
|
## CRITICAL STEP COMPLETION NOTE
|
|
251
235
|
|
|
252
|
-
ONLY WHEN [C continue option] is selected and [all epics and stories saved to document following the template structure exactly], will you then read fully and follow: `
|
|
236
|
+
ONLY WHEN [C continue option] is selected and [all epics and stories saved to document following the template structure exactly], will you then read fully and follow: `./step-04-final-validation.md` to begin final validation phase.
|
|
253
237
|
|
|
254
238
|
---
|
|
255
239
|
|
|
@@ -1,21 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: 'step-04-final-validation'
|
|
3
3
|
description: 'Validate complete coverage of all requirements and ensure implementation readiness'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-04-final-validation.md'
|
|
10
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
11
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
12
|
-
|
|
13
|
-
# Task References
|
|
14
|
-
advancedElicitationTask: 'skill:bmad-advanced-elicitation'
|
|
15
|
-
partyModeWorkflow: '{project-root}/_bmad/core/workflows/bmad-party-mode/workflow.md'
|
|
16
|
-
|
|
17
|
-
# Template References
|
|
18
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
19
4
|
---
|
|
20
5
|
|
|
21
6
|
# Step 4: Final Validation
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: create-epics-and-stories
|
|
3
|
-
description: 'Break requirements into epics and user stories. Use when the user says "create the epics and stories list"'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
1
|
# Create Epics and Stories
|
|
7
2
|
|
|
8
3
|
**Goal:** Transform PRD requirements and Architecture decisions into comprehensive stories organized by user value, creating detailed, actionable stories with complete acceptance criteria for development teams.
|
|
@@ -55,4 +50,4 @@ Load and read full config from {project-root}/_bmad/bmm/config.yaml and resolve:
|
|
|
55
50
|
|
|
56
51
|
### 2. First Step EXECUTION
|
|
57
52
|
|
|
58
|
-
Read fully and follow:
|
|
53
|
+
Read fully and follow: `./steps/step-01-validate-prerequisites.md` to begin the workflow.
|
|
@@ -36,7 +36,7 @@ This is a COMPETITION to create the **ULTIMATE story context** that makes LLM de
|
|
|
36
36
|
- The workflow framework will automatically:
|
|
37
37
|
- Load this checklist file
|
|
38
38
|
- Load the newly created story file (`{story_file_path}`)
|
|
39
|
-
- Load workflow variables from
|
|
39
|
+
- Load workflow variables from `./workflow.md`
|
|
40
40
|
- Execute the validation process
|
|
41
41
|
|
|
42
42
|
### **When Running in Fresh Context:**
|
|
@@ -61,7 +61,7 @@ You will systematically re-do the entire story creation process, but with a crit
|
|
|
61
61
|
|
|
62
62
|
### **Step 1: Load and Understand the Target**
|
|
63
63
|
|
|
64
|
-
1. **Load the workflow configuration**:
|
|
64
|
+
1. **Load the workflow configuration**: `./workflow.md` for variable inclusion
|
|
65
65
|
2. **Load the story file**: `{story_file_path}` (provided by user or discovered)
|
|
66
66
|
3. **Extract metadata**: epic_num, story_num, story_key, story_title from story file
|
|
67
67
|
4. **Resolve all workflow variables**: implementation_artifacts, epics_file, architecture_file, etc.
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: bmad-create-story
|
|
3
|
-
description: 'Creates a dedicated story file with all the context the agent will need to implement it later. Use when the user says "create the next story" or "create story [story identifier]"'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
1
|
# Create Story Workflow
|
|
7
2
|
|
|
8
3
|
**Goal:** Create a comprehensive story file that gives the dev agent everything needed for flawless implementation.
|
|
@@ -217,10 +212,10 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
217
212
|
</step>
|
|
218
213
|
|
|
219
214
|
<step n="2" goal="Load and analyze core artifacts">
|
|
220
|
-
<critical>🔬 EXHAUSTIVE ARTIFACT ANALYSIS - This is where you prevent future developer
|
|
215
|
+
<critical>🔬 EXHAUSTIVE ARTIFACT ANALYSIS - This is where you prevent future developer mistakes!</critical>
|
|
221
216
|
|
|
222
217
|
<!-- Load all available content through discovery protocol -->
|
|
223
|
-
<action>Read fully and follow
|
|
218
|
+
<action>Read fully and follow `./discover-inputs.md` to load all input files</action>
|
|
224
219
|
<note>Available content: {epics_content}, {prd_content}, {architecture_content}, {ux_content},
|
|
225
220
|
{project_context}</note>
|
|
226
221
|
|
|
@@ -352,7 +347,7 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
352
347
|
</step>
|
|
353
348
|
|
|
354
349
|
<step n="6" goal="Update sprint status and finalize">
|
|
355
|
-
<action>Validate the newly created story file {story_file} against
|
|
350
|
+
<action>Validate the newly created story file {story_file} against `./checklist.md` and apply any required fixes before finalizing</action>
|
|
356
351
|
<action>Save story document unconditionally</action>
|
|
357
352
|
|
|
358
353
|
<!-- Update sprint status -->
|