bmad-method 6.1.1-next.12 → 6.1.1-next.13
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
CHANGED
|
@@ -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 -->
|