bmad-method 6.1.1-next.31 → 6.1.1-next.33
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/workflows/4-implementation/bmad-sprint-planning/workflow.md +0 -3
- package/src/bmm/workflows/4-implementation/bmad-sprint-status/workflow.md +0 -1
- package/src/bmm/workflows/bmad-document-project/instructions.md +6 -6
- package/src/bmm/workflows/bmad-document-project/workflow.md +1 -8
- package/src/bmm/workflows/bmad-document-project/workflows/deep-dive-instructions.md +1 -1
- package/src/bmm/workflows/bmad-document-project/workflows/deep-dive-workflow.md +1 -8
- package/src/bmm/workflows/bmad-document-project/workflows/full-scan-instructions.md +3 -3
- package/src/bmm/workflows/bmad-document-project/workflows/full-scan-workflow.md +1 -8
- package/src/bmm/workflows/bmad-generate-project-context/workflow.md +0 -2
- package/src/bmm/workflows/bmad-qa-generate-e2e-tests/workflow.md +1 -3
- package/src/core/tasks/bmad-advanced-elicitation/workflow.md +1 -2
- package/src/core/workflows/bmad-brainstorming/steps/step-01-session-setup.md +1 -1
- package/src/core/workflows/bmad-brainstorming/workflow.md +0 -2
package/package.json
CHANGED
|
@@ -21,9 +21,6 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
21
21
|
|
|
22
22
|
### Paths
|
|
23
23
|
|
|
24
|
-
- `installed_path` = `.`
|
|
25
|
-
- `template` = `{installed_path}/sprint-status-template.yaml`
|
|
26
|
-
- `checklist` = `{installed_path}/checklist.md`
|
|
27
24
|
- `tracking_system` = `file-system`
|
|
28
25
|
- `project_key` = `NOKEY`
|
|
29
26
|
- `story_location` = `{implementation_artifacts}`
|
|
@@ -40,18 +40,18 @@
|
|
|
40
40
|
<action>Load cached project_type_id(s) from state file</action>
|
|
41
41
|
|
|
42
42
|
<critical>CONDITIONAL CSV LOADING FOR RESUME:</critical>
|
|
43
|
-
<action>For each cached project_type_id, load ONLY the corresponding row from:
|
|
43
|
+
<action>For each cached project_type_id, load ONLY the corresponding row from: ./documentation-requirements.csv</action>
|
|
44
44
|
<action>Skip loading project-types.csv and architecture_registry.csv (not needed on resume)</action>
|
|
45
45
|
<action>Store loaded doc requirements for use in remaining steps</action>
|
|
46
46
|
|
|
47
47
|
<action>Display: "Resuming {{workflow_mode}} from {{current_step}} with cached project type(s): {{cached_project_types}}"</action>
|
|
48
48
|
|
|
49
49
|
<check if="workflow_mode == deep_dive">
|
|
50
|
-
<action>Read fully and follow:
|
|
50
|
+
<action>Read fully and follow: ./workflows/deep-dive-workflow.md with resume context</action>
|
|
51
51
|
</check>
|
|
52
52
|
|
|
53
53
|
<check if="workflow_mode == initial_scan OR workflow_mode == full_rescan">
|
|
54
|
-
<action>Read fully and follow:
|
|
54
|
+
<action>Read fully and follow: ./workflows/full-scan-workflow.md with resume context</action>
|
|
55
55
|
</check>
|
|
56
56
|
|
|
57
57
|
</check>
|
|
@@ -98,7 +98,7 @@ Your choice [1/2/3]:
|
|
|
98
98
|
<check if="user selects 1">
|
|
99
99
|
<action>Set workflow_mode = "full_rescan"</action>
|
|
100
100
|
<action>Display: "Starting full project rescan..."</action>
|
|
101
|
-
<action>Read fully and follow:
|
|
101
|
+
<action>Read fully and follow: ./workflows/full-scan-workflow.md</action>
|
|
102
102
|
<action>After sub-workflow completes, continue to Step 4</action>
|
|
103
103
|
</check>
|
|
104
104
|
|
|
@@ -106,7 +106,7 @@ Your choice [1/2/3]:
|
|
|
106
106
|
<action>Set workflow_mode = "deep_dive"</action>
|
|
107
107
|
<action>Set scan_level = "exhaustive"</action>
|
|
108
108
|
<action>Display: "Starting deep-dive documentation mode..."</action>
|
|
109
|
-
<action>Read fully and follow:
|
|
109
|
+
<action>Read fully and follow: ./workflows/deep-dive-workflow.md</action>
|
|
110
110
|
<action>After sub-workflow completes, continue to Step 4</action>
|
|
111
111
|
</check>
|
|
112
112
|
|
|
@@ -119,7 +119,7 @@ Your choice [1/2/3]:
|
|
|
119
119
|
<check if="index.md does not exist">
|
|
120
120
|
<action>Set workflow_mode = "initial_scan"</action>
|
|
121
121
|
<action>Display: "No existing documentation found. Starting initial project scan..."</action>
|
|
122
|
-
<action>Read fully and follow:
|
|
122
|
+
<action>Read fully and follow: ./workflows/full-scan-workflow.md</action>
|
|
123
123
|
<action>After sub-workflow completes, continue to Step 4</action>
|
|
124
124
|
</check>
|
|
125
125
|
|
|
@@ -20,15 +20,8 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
20
20
|
- `user_skill_level`
|
|
21
21
|
- `date` as system-generated current datetime
|
|
22
22
|
|
|
23
|
-
### Paths
|
|
24
|
-
|
|
25
|
-
- `installed_path` = `.`
|
|
26
|
-
- `instructions` = `{installed_path}/instructions.md`
|
|
27
|
-
- `validation` = `{installed_path}/checklist.md`
|
|
28
|
-
- `documentation_requirements_csv` = `{installed_path}/documentation-requirements.csv`
|
|
29
|
-
|
|
30
23
|
---
|
|
31
24
|
|
|
32
25
|
## EXECUTION
|
|
33
26
|
|
|
34
|
-
Read fully and follow:
|
|
27
|
+
Read fully and follow: `./instructions.md`
|
|
@@ -193,7 +193,7 @@ This will read EVERY file in this area. Proceed? [y/n]
|
|
|
193
193
|
- Combine recommended test commands into {{suggested_tests}}
|
|
194
194
|
</action>
|
|
195
195
|
|
|
196
|
-
<action>Load complete deep-dive template from:
|
|
196
|
+
<action>Load complete deep-dive template from: ../templates/deep-dive-template.md</action>
|
|
197
197
|
<action>Fill template with all collected data from steps 13b-13d</action>
|
|
198
198
|
<action>Write filled template to: {project_knowledge}/deep-dive-{{sanitized_target_name}}.md</action>
|
|
199
199
|
<action>Validate deep-dive document completeness</action>
|
|
@@ -21,13 +21,6 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
21
21
|
✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the configured `{communication_language}`.
|
|
22
22
|
✅ YOU MUST ALWAYS WRITE all artifact and document content in `{document_output_language}`.
|
|
23
23
|
|
|
24
|
-
### Paths
|
|
25
|
-
|
|
26
|
-
- `installed_path` = `.`
|
|
27
|
-
- `instructions` = `{installed_path}/deep-dive-instructions.md`
|
|
28
|
-
- `validation` = `../checklist.md`
|
|
29
|
-
- `deep_dive_template` = `../templates/deep-dive-template.md`
|
|
30
|
-
|
|
31
24
|
### Runtime Inputs
|
|
32
25
|
|
|
33
26
|
- `workflow_mode` = `deep_dive`
|
|
@@ -38,4 +31,4 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
38
31
|
|
|
39
32
|
## EXECUTION
|
|
40
33
|
|
|
41
|
-
Read fully and follow:
|
|
34
|
+
Read fully and follow: `./deep-dive-instructions.md`
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
This workflow uses a single comprehensive CSV file to intelligently document your project:
|
|
18
18
|
|
|
19
|
-
**documentation-requirements.csv** (
|
|
19
|
+
**documentation-requirements.csv** (../documentation-requirements.csv)
|
|
20
20
|
|
|
21
21
|
- Contains 12 project types (web, mobile, backend, cli, library, desktop, game, data, extension, infra, embedded)
|
|
22
22
|
- 24-column schema combining project type detection AND documentation requirements
|
|
@@ -36,7 +36,7 @@ This workflow uses a single comprehensive CSV file to intelligently document you
|
|
|
36
36
|
|
|
37
37
|
<action>Now loading documentation requirements data for fresh start...</action>
|
|
38
38
|
|
|
39
|
-
<action>Load documentation-requirements.csv from:
|
|
39
|
+
<action>Load documentation-requirements.csv from: ../documentation-requirements.csv</action>
|
|
40
40
|
<action>Store all 12 rows indexed by project_type_id for project detection and requirements lookup</action>
|
|
41
41
|
<action>Display: "Loaded documentation requirements for 12 project types (web, mobile, backend, cli, library, desktop, game, data, extension, infra, embedded)"</action>
|
|
42
42
|
|
|
@@ -810,7 +810,7 @@ Generated in {{project_knowledge}}/:
|
|
|
810
810
|
{{file_list_with_sizes}}
|
|
811
811
|
</action>
|
|
812
812
|
|
|
813
|
-
<action>Run validation checklist from
|
|
813
|
+
<action>Run validation checklist from ../checklist.md</action>
|
|
814
814
|
|
|
815
815
|
<critical>INCOMPLETE DOCUMENTATION DETECTION:
|
|
816
816
|
|
|
@@ -20,13 +20,6 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
20
20
|
✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the configured `{communication_language}`.
|
|
21
21
|
✅ YOU MUST ALWAYS WRITE all artifact and document content in `{document_output_language}`.
|
|
22
22
|
|
|
23
|
-
### Paths
|
|
24
|
-
|
|
25
|
-
- `installed_path` = `.`
|
|
26
|
-
- `instructions` = `{installed_path}/full-scan-instructions.md`
|
|
27
|
-
- `validation` = `../checklist.md`
|
|
28
|
-
- `documentation_requirements_csv` = `../documentation-requirements.csv`
|
|
29
|
-
|
|
30
23
|
### Runtime Inputs
|
|
31
24
|
|
|
32
25
|
- `workflow_mode` = `""` (set by parent: `initial_scan` or `full_rescan`)
|
|
@@ -38,4 +31,4 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
38
31
|
|
|
39
32
|
## EXECUTION
|
|
40
33
|
|
|
41
|
-
Read fully and follow:
|
|
34
|
+
Read fully and follow: `./full-scan-instructions.md`
|
|
@@ -20,8 +20,6 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
20
20
|
|
|
21
21
|
### Paths
|
|
22
22
|
|
|
23
|
-
- `installed_path` = `.`
|
|
24
|
-
- `checklist` = `./checklist.md`
|
|
25
23
|
- `test_dir` = `{project-root}/tests`
|
|
26
24
|
- `source_dir` = `{project-root}`
|
|
27
25
|
- `default_output_file` = `{implementation_artifacts}/tests/test-summary.md`
|
|
@@ -135,4 +133,4 @@ If the project needs:
|
|
|
135
133
|
|
|
136
134
|
Save summary to: `{default_output_file}`
|
|
137
135
|
|
|
138
|
-
**Done!** Tests generated and verified. Validate against
|
|
136
|
+
**Done!** Tests generated and verified. Validate against `./checklist.md`.
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
---
|
|
2
|
-
methods: './methods.csv'
|
|
3
2
|
agent_party: '{project-root}/_bmad/_config/agent-manifest.csv'
|
|
4
3
|
---
|
|
5
4
|
|
|
@@ -35,7 +34,7 @@ When invoked from another prompt or process:
|
|
|
35
34
|
|
|
36
35
|
### Step 1: Method Registry Loading
|
|
37
36
|
|
|
38
|
-
**Action:** Load and read
|
|
37
|
+
**Action:** Load and read `./methods.csv` and `{agent_party}`
|
|
39
38
|
|
|
40
39
|
#### CSV Structure
|
|
41
40
|
|
|
@@ -65,7 +65,7 @@ Create the brainstorming session document:
|
|
|
65
65
|
mkdir -p "$(dirname "{brainstorming_session_output_file}")"
|
|
66
66
|
|
|
67
67
|
# Initialize from template
|
|
68
|
-
cp "
|
|
68
|
+
cp "../template.md" "{brainstorming_session_output_file}"
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
#### B. Context File Check and Loading
|
|
@@ -40,8 +40,6 @@ Load config from `{project-root}/_bmad/core/config.yaml` and resolve:
|
|
|
40
40
|
|
|
41
41
|
### Paths
|
|
42
42
|
|
|
43
|
-
- `template_path` = `./template.md`
|
|
44
|
-
- `brain_techniques_path` = `./brain-methods.csv`
|
|
45
43
|
- `brainstorming_session_output_file` = `{output_folder}/brainstorming/brainstorming-session-{{date}}-{{time}}.md` (evaluated once at workflow start)
|
|
46
44
|
|
|
47
45
|
All steps MUST reference `{brainstorming_session_output_file}` instead of the full path pattern.
|