bmad-method 6.0.0-alpha.2 → 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.
- package/.claude/settings.local.json +11 -1
- package/README.md +109 -161
- package/docs/BMad-Method-V6-Quick-Start.md +341 -0
- package/docs/index.md +229 -0
- package/docs/v4-to-v6-upgrade.md +9 -7
- package/package.json +1 -1
- package/src/modules/bmb/README.md +135 -73
- package/src/modules/bmb/workflows/create-agent/README.md +126 -243
- package/src/modules/bmb/workflows/create-agent/instructions.md +25 -12
- package/src/modules/bmb/workflows/create-module/README.md +163 -154
- package/src/modules/bmb/workflows/create-workflow/instructions.md +16 -8
- package/src/modules/bmm/README.md +86 -83
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/instructions.md +45 -26
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/README.md +100 -16
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +42 -23
- package/src/modules/bmm/workflows/1-analysis/game-brief/instructions.md +42 -28
- package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +38 -27
- package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +24 -34
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +23 -34
- package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +30 -14
- package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +23 -34
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +42 -24
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/instructions-gdd.md +35 -22
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/instructions-narrative.md +73 -22
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +45 -63
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +46 -62
- package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +46 -53
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +78 -47
- package/src/modules/bmm/workflows/4-implementation/create-story/README.md +99 -82
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +2 -0
- package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +3 -0
- package/src/modules/bmm/workflows/README.md +149 -511
- package/src/modules/bmm/workflows/workflow-status/README.md +38 -19
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +117 -24
- package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +2 -2
- package/src/modules/bmm/workflows/workflow-status/instructions.md +173 -111
- package/src/modules/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +49 -0
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +31 -0
- package/src/modules/bmm/workflows/workflow-status/workflow.yaml +3 -3
- package/src/modules/cis/README.md +153 -0
- package/src/modules/cis/workflows/README.md +102 -30
- package/src/modules/cis/workflows/storytelling/instructions.md +10 -2
- package/tools/cli/installers/lib/core/manifest-generator.js +4 -1
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.md +0 -30
- package/src/modules/cis/readme.md +0 -86
- /package/src/modules/bmm/sub-modules/claude-code/{readme.md → README.md} +0 -0
- /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="
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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="
|
|
16
|
-
<
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
|
|
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="
|
|
253
|
-
<
|
|
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
|
-
|
|
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
|
-
<
|
|
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
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
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
|
-
|
|
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
|
-
|
|
5
|
+
## Table of Contents
|
|
10
6
|
|
|
11
|
-
|
|
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
|
|
16
|
+
# SM initiates next story creation
|
|
17
17
|
bmad sm *create-story
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
|
|
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
|
-
|
|
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
|
-
|
|
28
|
+
### Strict Planning Enforcement
|
|
28
29
|
|
|
29
|
-
**
|
|
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
|
-
|
|
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
|
-
|
|
36
|
+
- Auto-finds tech spec: `tech-spec-epic-{N}-*.md`
|
|
37
|
+
- Discovers architecture docs across directories
|
|
38
|
+
- Builds prioritized requirement sources
|
|
40
39
|
|
|
41
|
-
|
|
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
|
-
|
|
42
|
+
- Every requirement traced to source
|
|
43
|
+
- No invention of domain facts
|
|
44
|
+
- Citations included in output
|
|
48
45
|
|
|
49
|
-
|
|
46
|
+
### Non-Interactive Mode
|
|
50
47
|
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
|
|
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
|
-
|
|
52
|
+
## Inputs & Outputs
|
|
60
53
|
|
|
61
|
-
|
|
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
|
-
|
|
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
|
-
|
|
63
|
+
### Auto-Discovered Docs
|
|
72
64
|
|
|
73
|
-
|
|
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
|
-
|
|
69
|
+
### Output
|
|
76
70
|
|
|
77
|
-
**
|
|
71
|
+
**Story Document:** `{story_dir}/story-{epic}.{story}.md`
|
|
78
72
|
|
|
79
|
-
|
|
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
|
-
##
|
|
80
|
+
## Workflow Behavior
|
|
82
81
|
|
|
83
|
-
|
|
82
|
+
### Story Number Management
|
|
84
83
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
-
|
|
88
|
+
### Update vs Create
|
|
93
89
|
|
|
94
|
-
|
|
90
|
+
- **If current story not Done:** Updates existing
|
|
91
|
+
- **If current story Done:** Creates next (if planned)
|
|
95
92
|
|
|
96
|
-
|
|
93
|
+
### Validation Safeguards
|
|
97
94
|
|
|
98
|
-
|
|
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
|
-
|
|
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
|
-
**
|
|
102
|
+
**Missing Config:**
|
|
103
|
+
Ensure `dev_story_location` set in config.yaml
|
|
106
104
|
|
|
107
|
-
|
|
108
|
-
- Won't skip numbers or create duplicates
|
|
109
|
-
- Maintains epic.story numbering convention
|
|
105
|
+
## Integration
|
|
110
106
|
|
|
111
|
-
|
|
107
|
+
### v6 Implementation Cycle
|
|
112
108
|
|
|
113
|
-
-
|
|
114
|
-
|
|
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
|
-
|
|
116
|
+
### Document Priority
|
|
117
117
|
|
|
118
|
-
|
|
119
|
-
|
|
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
|
-
##
|
|
123
|
+
## Configuration
|
|
124
|
+
|
|
125
|
+
```yaml
|
|
126
|
+
# bmad/bmm/config.yaml
|
|
127
|
+
dev_story_location: ./stories
|
|
128
|
+
output_folder: ./output
|
|
122
129
|
|
|
123
|
-
|
|
130
|
+
# workflow.yaml defaults
|
|
131
|
+
non_interactive: true
|
|
132
|
+
auto_run_context: true
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## Troubleshooting
|
|
124
136
|
|
|
125
|
-
|
|
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
|
-
|
|
144
|
+
---
|
|
128
145
|
|
|
129
|
-
|
|
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
|