bmad-method 6.0.0-alpha.1 → 6.0.0-alpha.3

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.
Files changed (48) hide show
  1. package/.claude/settings.local.json +11 -1
  2. package/README.md +115 -165
  3. package/docs/BMad-Method-V6-Quick-Start.md +341 -0
  4. package/docs/index.md +229 -0
  5. package/docs/v4-to-v6-upgrade.md +9 -7
  6. package/package.json +1 -1
  7. package/src/modules/bmb/README.md +135 -73
  8. package/src/modules/bmb/workflows/create-agent/README.md +126 -243
  9. package/src/modules/bmb/workflows/create-agent/instructions.md +25 -12
  10. package/src/modules/bmb/workflows/create-module/README.md +163 -154
  11. package/src/modules/bmb/workflows/create-workflow/instructions.md +16 -8
  12. package/src/modules/bmm/README.md +86 -83
  13. package/src/modules/bmm/workflows/1-analysis/brainstorm-game/instructions.md +45 -26
  14. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/README.md +100 -16
  15. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +42 -23
  16. package/src/modules/bmm/workflows/1-analysis/game-brief/instructions.md +42 -28
  17. package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +38 -27
  18. package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +24 -34
  19. package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +23 -34
  20. package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +30 -14
  21. package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +23 -34
  22. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +42 -24
  23. package/src/modules/bmm/workflows/2-plan-workflows/gdd/instructions-gdd.md +35 -22
  24. package/src/modules/bmm/workflows/2-plan-workflows/narrative/instructions-narrative.md +73 -22
  25. package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +45 -63
  26. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +46 -62
  27. package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +46 -53
  28. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +78 -47
  29. package/src/modules/bmm/workflows/4-implementation/create-story/README.md +99 -82
  30. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +2 -0
  31. package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +3 -0
  32. package/src/modules/bmm/workflows/README.md +149 -511
  33. package/src/modules/bmm/workflows/workflow-status/README.md +38 -19
  34. package/src/modules/bmm/workflows/workflow-status/init/instructions.md +117 -24
  35. package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +2 -2
  36. package/src/modules/bmm/workflows/workflow-status/instructions.md +173 -111
  37. package/src/modules/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +49 -0
  38. package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +31 -0
  39. package/src/modules/bmm/workflows/workflow-status/workflow.yaml +3 -3
  40. package/src/modules/cis/README.md +153 -0
  41. package/src/modules/cis/workflows/README.md +102 -30
  42. package/src/modules/cis/workflows/storytelling/instructions.md +10 -2
  43. package/tools/bmad-npx-wrapper.js +10 -98
  44. package/tools/cli/installers/lib/core/manifest-generator.js +4 -1
  45. package/src/modules/bmm/workflows/workflow-status/workflow-status-template.md +0 -30
  46. package/src/modules/cis/readme.md +0 -86
  47. /package/src/modules/bmm/sub-modules/claude-code/{readme.md → README.md} +0 -0
  48. /package/src/modules/bmm/workflows/3-solutioning/architecture/{readme.md → README.md} +0 -0
@@ -6,47 +6,53 @@
6
6
 
7
7
  <workflow>
8
8
 
9
- <step n="0" goal="Initialize and understand project context">
10
- <invoke-workflow path="{workflow_status_workflow}">
11
- <param>mode: data</param>
12
- <param>data_request: project_config</param>
13
- </invoke-workflow>
9
+ <step n="0" goal="Validate workflow readiness" tag="workflow-status">
10
+ <action>Check if {output_folder}/bmm-workflow-status.yaml exists</action>
11
+
12
+ <check if="status file not found">
13
+ <output>No workflow status file found. Implementation Ready Check can run standalone or as part of BMM workflow path.</output>
14
+ <output>**Recommended:** Run `workflow-init` first for project context tracking and workflow sequencing.</output>
15
+ <ask>Continue in standalone mode or exit to run workflow-init? (continue/exit)</ask>
16
+ <check if="continue">
17
+ <action>Set standalone_mode = true</action>
18
+ </check>
19
+ <check if="exit">
20
+ <action>Exit workflow</action>
21
+ </check>
22
+ </check>
14
23
 
15
- <check if="status_exists == false">
16
- <output>**Note: No Workflow Status File Found**
24
+ <check if="status file found">
25
+ <action>Load the FULL file: {output_folder}/bmm-workflow-status.yaml</action>
26
+ <action>Parse workflow_status section</action>
27
+ <action>Check status of "solutioning-gate-check" workflow</action>
28
+ <action>Get project_level from YAML metadata</action>
29
+ <action>Find first non-completed workflow (next expected workflow)</action>
17
30
 
18
- The Implementation Ready Check can run standalone or as part of the BMM workflow path.
31
+ <action>Based on the project_level, understand what artifacts should exist: - Level 0-1: Tech spec and simple stories only (no PRD, minimal solutioning) - Level 2: PRD, tech spec, epics/stories (no separate architecture doc) - Level 3-4: Full suite - PRD, architecture document, epics/stories, possible UX artifacts
32
+ </action>
19
33
 
20
- **Recommended:** Run `workflow-init` first for:
34
+ <check if="solutioning-gate-check status is file path (already completed)">
35
+ <output>⚠️ Gate check already completed: {{solutioning-gate-check status}}</output>
36
+ <ask>Re-running will create a new validation report. Continue? (y/n)</ask>
37
+ <check if="n">
38
+ <output>Exiting. Use workflow-status to see your next step.</output>
39
+ <action>Exit workflow</action>
40
+ </check>
41
+ </check>
21
42
 
22
- - Project context tracking
23
- - Workflow sequencing guidance
24
- - Progress monitoring across workflows
43
+ <check if="solutioning-gate-check is not the next expected workflow">
44
+ <output>⚠️ Next expected workflow: {{next_workflow}}. Gate check is out of sequence.</output>
45
+ <ask>Continue with gate check anyway? (y/n)</ask>
46
+ <check if="n">
47
+ <output>Exiting. Run {{next_workflow}} instead.</output>
48
+ <action>Exit workflow</action>
49
+ </check>
50
+ </check>
25
51
 
26
- **Or continue standalone** without progress tracking.
27
- </output>
28
- <ask>Continue in standalone mode or exit to run workflow-init? (continue/exit)</ask>
29
- <check if="continue">
30
- <action>Set standalone_mode = true</action>
52
+ <action>Set standalone_mode = false</action>
31
53
  </check>
32
- <check if="exit">
33
- <action>Exit workflow</action>
34
- </check>
35
- </check>
36
-
37
- <check if="status_exists == true">
38
- <action>Store {{status_file_path}} for later updates</action>
39
- <action>Store {{project_level}}, {{active_path}}, and {{workflow_phase}} for validation context</action>
40
-
41
- <action>Based on the project_level, understand what artifacts should exist:
42
-
43
- - Level 0-1: Tech spec and simple stories only (no PRD, minimal solutioning)
44
- - Level 2: PRD, tech spec, epics/stories (no separate architecture doc)
45
- - Level 3-4: Full suite - PRD, architecture document, epics/stories, possible UX artifacts
46
- </action>
47
54
 
48
55
  <critical>The validation approach must adapt to the project level - don't look for documents that shouldn't exist at lower levels</critical>
49
- </check>
50
56
 
51
57
  <template-output>project_context</template-output>
52
58
  </step>
@@ -249,23 +255,48 @@ The Implementation Ready Check can run standalone or as part of the BMM workflow
249
255
  <template-output>readiness_assessment</template-output>
250
256
  </step>
251
257
 
252
- <step n="7" goal="Workflow status update offer" optional="true">
253
- <ask>The readiness assessment is complete. Would you like to update the workflow status to proceed to the next phase? [yes/no]
258
+ <step n="7" goal="Update status and complete" tag="workflow-status">
259
+ <check if="standalone_mode != true">
260
+ <action>Load the FULL file: {output_folder}/bmm-workflow-status.yaml</action>
261
+ <action>Find workflow_status key "solutioning-gate-check"</action>
262
+ <critical>ONLY write the file path as the status value - no other text, notes, or metadata</critical>
263
+ <action>Update workflow_status["solutioning-gate-check"] = "{output_folder}/bmm-readiness-assessment-{{date}}.md"</action>
264
+ <action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
254
265
 
255
- Note: This will advance the project workflow to the next phase in your current path.</ask>
266
+ <action>Find first non-completed workflow in workflow_status (next workflow to do)</action>
267
+ <action>Determine next agent from path file based on next workflow</action>
268
+ </check>
256
269
 
257
- <action if="user_response == 'yes'">
258
- Determine the next workflow phase based on current status:
259
- - If Level 0-1: Advance to implementation phase
260
- - If Level 2-4 in solutioning: Advance to Phase 4 (Implementation)
261
- - Update the workflow status configuration accordingly
262
- - Confirm the update with the user
263
- </action>
270
+ <output>**✅ Implementation Ready Check Complete!**
264
271
 
265
- <action if="user_response == 'no'">
266
- Acknowledge that the workflow status remains unchanged.
267
- Remind user they can manually update when ready.
268
- </action>
272
+ **Assessment Report:**
273
+
274
+ - Readiness assessment saved to: {output_folder}/bmm-readiness-assessment-{{date}}.md
275
+
276
+ {{#if standalone_mode != true}}
277
+ **Status Updated:**
278
+
279
+ - Progress tracking updated: solutioning-gate-check marked complete
280
+ - Next workflow: {{next_workflow}}
281
+ {{else}}
282
+ **Note:** Running in standalone mode (no progress tracking)
283
+ {{/if}}
284
+
285
+ **Next Steps:**
286
+
287
+ {{#if standalone_mode != true}}
288
+
289
+ - **Next workflow:** {{next_workflow}} ({{next_agent}} agent)
290
+ - Review the assessment report and address any critical issues before proceeding
291
+
292
+ Check status anytime with: `workflow-status`
293
+ {{else}}
294
+ Since no workflow is in progress:
295
+
296
+ - Refer to the BMM workflow guide if unsure what to do next
297
+ - Or run `workflow-init` to create a workflow path and get guided next steps
298
+ {{/if}}
299
+ </output>
269
300
 
270
301
  <template-output>status_update_result</template-output>
271
302
  </step>
@@ -1,129 +1,146 @@
1
- ---
2
- last-redoc-date: 2025-10-01
3
- ---
4
-
5
1
  # Create Story Workflow
6
2
 
7
- The create-story workflow is the entry point for v6's just-in-time story generation approach, run exclusively by the Scrum Master (SM) agent. Unlike batch processing methodologies, this workflow generates exactly ONE story at a time based on the current epic backlog state, ensuring stories are created only when needed and with the most current context. The SM analyzes the epic's progress, identifies what needs to be built next based on epics.md enumeration, and generates a complete story specification including acceptance criteria, technical approach, and implementation guidance pulled directly from tech specs, PRD, and architecture documentation.
3
+ Just-in-time story generation creating one story at a time based on epic backlog state. Run by Scrum Master (SM) agent to ensure planned stories align with approved epics.
8
4
 
9
- This workflow represents a fundamental shift from traditional upfront planning to adaptive story generation. By creating stories one at a time and enforcing strict verification against epics.md, the SM ensures that only planned and approved stories are created. The workflow operates in non-interactive "#yolo" mode by default, minimizing prompts while maintaining quality through rigorous source document grounding. It will HALT if epics.md doesn't explicitly enumerate the next story, forcing proper planning through the correct-course workflow rather than allowing ad-hoc story creation.
5
+ ## Table of Contents
10
6
 
11
- The workflow's intelligent document discovery system automatically finds the relevant tech spec for the current epic (using pattern `tech-spec-epic-{epic_num}-*.md`), loads all architecture documents from both docs/ and output folders, and synthesizes requirements from multiple sources in priority order. After story creation, it can optionally trigger the story-context workflow to generate just-in-time technical expertise for the developer.
7
+ - [Usage](#usage)
8
+ - [Key Features](#key-features)
9
+ - [Inputs & Outputs](#inputs--outputs)
10
+ - [Workflow Behavior](#workflow-behavior)
11
+ - [Integration](#integration)
12
12
 
13
13
  ## Usage
14
14
 
15
15
  ```bash
16
- # SM initiates story creation for the next piece of work
16
+ # SM initiates next story creation
17
17
  bmad sm *create-story
18
18
  ```
19
19
 
20
- The SM runs this workflow when:
20
+ **When to run:**
21
+
22
+ - Sprint has capacity for new work
23
+ - Previous story is Done/Approved
24
+ - Team ready for next planned story
21
25
 
22
- - The current sprint has capacity for new work
23
- - The previous story status is "Done" or "Approved"
24
- - The team is ready for the next planned story in the epic
25
- - Story preparation is needed before development
26
+ ## Key Features
26
27
 
27
- ## Inputs
28
+ ### Strict Planning Enforcement
28
29
 
29
- **Required Context Files:**
30
+ - **Only creates stories enumerated in epics.md**
31
+ - Halts if story not found in epic plan
32
+ - Prevents scope creep through validation
30
33
 
31
- - **epics.md**: MANDATORY - Must explicitly enumerate the next story or workflow halts
32
- - **tech-spec-epic-{N}-\*.md**: Epic-specific technical specification (auto-discovered)
33
- - **PRD.md**: Product requirements document (fallback for requirements)
34
- - **Architecture Documents**: Automatically discovered from docs/ and output folders:
35
- - tech-stack.md, unified-project-structure.md, coding-standards.md
36
- - testing-strategy.md, backend-architecture.md, frontend-architecture.md
37
- - data-models.md, database-schema.md, rest-api-spec.md, external-apis.md
34
+ ### Intelligent Document Discovery
38
35
 
39
- **Workflow Variables:**
36
+ - Auto-finds tech spec: `tech-spec-epic-{N}-*.md`
37
+ - Discovers architecture docs across directories
38
+ - Builds prioritized requirement sources
40
39
 
41
- - `story_dir`: From config `dev_story_location` - where stories are saved
42
- - `epic_num`: Current epic number (auto-detected from existing stories)
43
- - `story_num`: Next story number (incremented from last completed story)
44
- - `auto_run_context`: Default true - runs story-context workflow after creation
45
- - `non_interactive`: Default true - operates in "#yolo" mode with minimal prompts
40
+ ### Source Document Grounding
46
41
 
47
- ## Outputs
42
+ - Every requirement traced to source
43
+ - No invention of domain facts
44
+ - Citations included in output
48
45
 
49
- **Primary Deliverable:**
46
+ ### Non-Interactive Mode
50
47
 
51
- - **Story Document** (`{story_dir}/story-{epic_num}.{story_num}.md`): Complete story specification including:
52
- - User story statement (role, action, benefit)
53
- - Acceptance criteria extracted from tech spec or epics.md
54
- - Tasks and subtasks mapped to ACs
55
- - Testing requirements per testing strategy
56
- - Dev notes with source citations
57
- - Status: "Draft" (requires approval before development)
48
+ - Default "#yolo" mode minimizes prompts
49
+ - Smooth automated story preparation
50
+ - Only prompts when critical
58
51
 
59
- **Validation Safeguards:**
52
+ ## Inputs & Outputs
60
53
 
61
- - **Epic Enumeration Check**: If epics.md doesn't list the next story, workflow HALTS with:
62
- ```
63
- "No planned next story found in epics.md for epic {epic_num}.
64
- Please load either PM or SM agent and run *correct-course to add/modify epic stories."
65
- ```
66
- - **Status Check**: Won't create new story if current story isn't Done/Approved
67
- - **Document Grounding**: All requirements traced to source documents (no invention)
54
+ ### Required Files
68
55
 
69
- ## Key Features
56
+ | File | Purpose | Priority |
57
+ | ------------------------ | ----------------------------- | -------- |
58
+ | epics.md | Story enumeration (MANDATORY) | Critical |
59
+ | tech-spec-epic-{N}-\*.md | Epic technical spec | High |
60
+ | PRD.md | Product requirements | Medium |
61
+ | Architecture docs | Technical constraints | Low |
70
62
 
71
- **Strict Planning Enforcement**: The workflow will NOT create stories that aren't explicitly planned in epics.md. This prevents scope creep and ensures all work is properly approved through the planning process.
63
+ ### Auto-Discovered Docs
72
64
 
73
- **Intelligent Document Discovery**: Automatically finds the latest tech spec for the epic using glob patterns, discovers all architecture documents across multiple directories, and builds a prioritized document set for requirement extraction.
65
+ - `tech-stack.md`, `unified-project-structure.md`
66
+ - `testing-strategy.md`, `backend/frontend-architecture.md`
67
+ - `data-models.md`, `database-schema.md`, `api-specs.md`
74
68
 
75
- **Source Document Grounding**: Every requirement, acceptance criterion, and technical constraint is traced to a specific source document. The workflow explicitly forbids inventing domain facts not present in source materials.
69
+ ### Output
76
70
 
77
- **Non-Interactive by Default**: Operates in "#yolo" mode to minimize interruptions, only prompting when absolutely necessary (like missing critical configuration). This enables smooth automated story preparation.
71
+ **Story Document:** `{story_dir}/story-{epic}.{story}.md`
78
72
 
79
- **Automatic Context Generation**: When `auto_run_context` is true (default), automatically triggers the story-context workflow to generate developer expertise injection for the newly created story.
73
+ - User story statement (role, action, benefit)
74
+ - Acceptance criteria from tech spec/epics
75
+ - Tasks mapped to ACs
76
+ - Testing requirements
77
+ - Dev notes with sources
78
+ - Status: "Draft"
80
79
 
81
- ## Integration with v6 Flow
80
+ ## Workflow Behavior
82
81
 
83
- The create-story workflow is step 1 in the v6 implementation cycle:
82
+ ### Story Number Management
84
83
 
85
- 1. **SM: create-story** You are here
86
- 2. SM: story-context (adds JIT technical expertise)
87
- 3. DEV: dev-story (implements with generated context)
88
- 4. DEV/SR: code-review (validates completion)
89
- 5. If needed: correct-course (adjusts direction)
90
- 6. After epic: retrospective (captures learnings)
84
+ - Auto-detects next story number
85
+ - No duplicates or skipped numbers
86
+ - Maintains epic.story convention
91
87
 
92
- This workflow establishes the "what" that needs to be built, strictly based on planned epics. The story-context workflow will later add the "how" through just-in-time technical expertise injection.
88
+ ### Update vs Create
93
89
 
94
- ## Document Priority Order
90
+ - **If current story not Done:** Updates existing
91
+ - **If current story Done:** Creates next (if planned)
95
92
 
96
- The workflow uses this priority for extracting requirements:
93
+ ### Validation Safeguards
97
94
 
98
- 1. **tech_spec_file**: Epic-scoped technical specification (highest priority)
99
- 2. **epics_file**: Acceptance criteria and story breakdown
100
- 3. **prd_file**: Business requirements and constraints
101
- 4. **Architecture docs**: Constraints, patterns, and technical guidance
95
+ **No Story Found:**
102
96
 
103
- ## Workflow Behavior
97
+ ```
98
+ "No planned next story found in epics.md for epic {N}.
99
+ Run *correct-course to add/modify epic stories."
100
+ ```
104
101
 
105
- **Story Number Management:**
102
+ **Missing Config:**
103
+ Ensure `dev_story_location` set in config.yaml
106
104
 
107
- - Automatically detects next story number from existing files
108
- - Won't skip numbers or create duplicates
109
- - Maintains epic.story numbering convention
105
+ ## Integration
110
106
 
111
- **Update vs Create:**
107
+ ### v6 Implementation Cycle
112
108
 
113
- - If latest story status != Done/Approved: Updates existing story
114
- - If latest story status == Done/Approved: Creates next story (if enumerated in epics.md)
109
+ 1. **create-story** Current step (defines "what")
110
+ 2. story-context (adds technical "how")
111
+ 3. dev-story (implementation)
112
+ 4. code-review (validation)
113
+ 5. correct-course (if needed)
114
+ 6. retrospective (after epic)
115
115
 
116
- **Epic Advancement:**
116
+ ### Document Priority
117
117
 
118
- - In non-interactive mode: Stays within current epic
119
- - Interactive mode: Can prompt for new epic number
118
+ 1. **tech_spec_file** - Epic-specific spec
119
+ 2. **epics_file** - Story breakdown
120
+ 3. **prd_file** - Business requirements
121
+ 4. **architecture_docs** - Technical guidance
120
122
 
121
- ## Troubleshooting
123
+ ## Configuration
124
+
125
+ ```yaml
126
+ # bmad/bmm/config.yaml
127
+ dev_story_location: ./stories
128
+ output_folder: ./output
122
129
 
123
- **"No planned next story found in epics.md"**: The next story isn't enumerated in epics.md. Run SM or PM agent's `*correct-course` to properly plan and add the story to the epic.
130
+ # workflow.yaml defaults
131
+ non_interactive: true
132
+ auto_run_context: true
133
+ ```
134
+
135
+ ## Troubleshooting
124
136
 
125
- **Missing story_dir Configuration**: Ensure `dev_story_location` is set in bmad/bmm/config.yaml
137
+ | Issue | Solution |
138
+ | ----------------------- | ------------------------------------------ |
139
+ | "No planned next story" | Run `*correct-course` to add story to epic |
140
+ | Missing story_dir | Set `dev_story_location` in config |
141
+ | Tech spec not found | Use naming: `tech-spec-epic-{N}-*.md` |
142
+ | No architecture docs | Add docs to docs/ or output/ folder |
126
143
 
127
- **Tech Spec Not Found**: The workflow looks for `tech-spec-epic-{N}-*.md` pattern. Ensure tech specs follow this naming convention.
144
+ ---
128
145
 
129
- **Architecture Documents Missing**: While not fatal, missing architecture docs reduce story context quality. Ensure key docs exist in docs/ or output folder.
146
+ For workflow details, see [instructions.md](./instructions.md) and [checklist.md](./checklist.md).
@@ -234,6 +234,7 @@ You may need to run sprint-planning to refresh tracking, or manually set the sto
234
234
  <output>**✅ Story Created Successfully, {user_name}!**
235
235
 
236
236
  **Story Details:**
237
+
237
238
  - Story ID: {{story_id}}
238
239
  - Story Key: {{story_key}}
239
240
  - File: {{story_file}}
@@ -242,6 +243,7 @@ You may need to run sprint-planning to refresh tracking, or manually set the sto
242
243
  **⚠️ Important:** The following workflows are context-intensive. It's recommended to clear context and restart the SM agent before running the next command.
243
244
 
244
245
  **Next Steps:**
246
+
245
247
  1. Review the drafted story in {{story_file}}
246
248
  2. **[RECOMMENDED]** Run `story-context` to generate technical context XML and mark story ready for development (combines context + ready in one step)
247
249
  3. Or run `story-ready` to manually mark the story ready without generating technical context
@@ -178,12 +178,14 @@ You may need to run sprint-planning to refresh tracking.
178
178
  <output>✅ Story context generated successfully, {user_name}!
179
179
 
180
180
  **Story Details:**
181
+
181
182
  - Story: {{epic_id}}.{{story_id}} - {{story_title}}
182
183
  - Story Key: {{story_key}}
183
184
  - Context File: {default_output_file}
184
185
  - Status: drafted → ready-for-dev
185
186
 
186
187
  **Context Includes:**
188
+
187
189
  - Documentation artifacts and references
188
190
  - Existing code and interfaces
189
191
  - Dependencies and frameworks
@@ -191,6 +193,7 @@ You may need to run sprint-planning to refresh tracking.
191
193
  - Development constraints
192
194
 
193
195
  **Next Steps:**
196
+
194
197
  1. Review the context file: {default_output_file}
195
198
  2. Run `dev-story` to implement the story
196
199
  3. Generate context for more drafted stories if needed