bmad-method 4.9.0 → 4.9.2
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/CHANGELOG.md +14 -0
- package/bmad-core/tasks/shard-doc.md +1 -1
- package/bmad-core/templates/architecture-tmpl.md +2 -2
- package/bmad-core/templates/brownfield-architecture-tmpl.md +2 -2
- package/bmad-core/templates/front-end-spec-tmpl.md +1 -1
- package/bmad-core/utils/workflow-management.md +5 -5
- package/bmad-core/workflows/brownfield-service.yml +1 -1
- package/dist/agents/architect.txt +4 -4
- package/dist/agents/bmad-master.txt +11 -11
- package/dist/agents/bmad-orchestrator.txt +5 -5
- package/dist/agents/dev.txt +9 -17
- package/dist/agents/pm.txt +1 -1
- package/dist/agents/po.txt +1 -1
- package/dist/agents/ux-expert.txt +1 -1
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +144 -18
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +139 -95
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +39 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +310 -118
- package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +16 -16
- package/dist/expansion-packs/expansion-creator/agents/bmad-the-creator.txt +25 -27
- package/dist/teams/team-all.txt +20 -28
- package/dist/teams/team-fullstack.txt +11 -11
- package/dist/teams/team-ide-minimal.txt +15 -23
- package/dist/teams/team-no-ui.txt +10 -10
- package/docs/core-architecture.md +5 -3
- package/docs/how-to-contribute-with-pull-requests.md +6 -6
- package/docs/user-guide.md +51 -66
- package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +107 -87
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.md +4 -4
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.md +21 -2
- package/expansion-packs/bmad-infrastructure-devops/README.md +5 -5
- package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.md +0 -0
- package/expansion-packs/expansion-creator/tasks/create-agent.md +10 -10
- package/expansion-packs/expansion-creator/tasks/generate-expansion-pack.md +2 -4
- package/expansion-packs/expansion-creator/templates/agent-teams-tmpl.md +6 -6
- package/expansion-packs/expansion-creator/templates/agent-tmpl.md +15 -15
- package/expansion-packs/expansion-creator/utils/workflow-management.md +8 -8
- package/package.json +1 -1
- package/tools/installer/README.md +3 -3
- package/tools/installer/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [4.9.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.9.1...v4.9.2) (2025-06-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bad brownfield yml ([09d2ad6](https://github.com/bmadcode/BMAD-METHOD/commit/09d2ad6aea187996d0a2e1dff27d9bf7e3e6dc06))
|
|
7
|
+
|
|
8
|
+
## [4.9.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.9.0...v4.9.1) (2025-06-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* dist bundles updated ([d9a989d](https://github.com/bmadcode/BMAD-METHOD/commit/d9a989dbe50da62cf598afa07a8588229c56b69c))
|
|
14
|
+
|
|
1
15
|
# [4.9.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.8.0...v4.9.0) (2025-06-19)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -357,7 +357,7 @@ servers:
|
|
|
357
357
|
'[object Object]': null
|
|
358
358
|
description:
|
|
359
359
|
'[object Object]': null
|
|
360
|
-
```
|
|
360
|
+
```
|
|
361
361
|
|
|
362
362
|
^^/CONDITION: has_rest_api^^
|
|
363
363
|
|
|
@@ -420,7 +420,6 @@ After presenting the structure, apply `tasks#advanced-elicitation` protocol to r
|
|
|
420
420
|
├── {{package-manifest}} # Dependencies manifest
|
|
421
421
|
├── {{config-files}} # Language/framework configs
|
|
422
422
|
└── README.md # Project documentation
|
|
423
|
-
```text
|
|
424
423
|
|
|
425
424
|
@{example: monorepo-structure}
|
|
426
425
|
project-root/
|
|
@@ -432,6 +431,7 @@ project-root/
|
|
|
432
431
|
├── scripts/ # Monorepo management scripts
|
|
433
432
|
└── package.json # Root package.json with workspaces
|
|
434
433
|
@{/example}
|
|
434
|
+
```
|
|
435
435
|
|
|
436
436
|
[[LLM: After presenting the source tree structure, apply `tasks#advanced-elicitation` protocol]]
|
|
437
437
|
|
|
@@ -226,7 +226,7 @@ Present component architecture and apply `tasks#advanced-elicitation` protocol]]
|
|
|
226
226
|
|
|
227
227
|
```mermaid
|
|
228
228
|
{{component_interaction_diagram}}
|
|
229
|
-
```
|
|
229
|
+
```
|
|
230
230
|
|
|
231
231
|
## API Design and Integration
|
|
232
232
|
|
|
@@ -266,7 +266,7 @@ Present API design and apply `tasks#advanced-elicitation` protocol]]
|
|
|
266
266
|
|
|
267
267
|
```json
|
|
268
268
|
{{response_schema}}
|
|
269
|
-
```
|
|
269
|
+
```
|
|
270
270
|
|
|
271
271
|
<</REPEAT>>
|
|
272
272
|
|
|
@@ -47,7 +47,7 @@ Available workflows for [Team Name]:
|
|
|
47
47
|
[... etc. ...]
|
|
48
48
|
|
|
49
49
|
Use /workflow-start {number or id} to begin a workflow.
|
|
50
|
-
```
|
|
50
|
+
```
|
|
51
51
|
|
|
52
52
|
### /workflow-start {workflow-id}
|
|
53
53
|
|
|
@@ -73,7 +73,7 @@ In Progress:
|
|
|
73
73
|
- Create PRD (John) - awaiting input
|
|
74
74
|
|
|
75
75
|
Next: Technical Architecture
|
|
76
|
-
```
|
|
76
|
+
```
|
|
77
77
|
|
|
78
78
|
### /workflow-resume
|
|
79
79
|
|
|
@@ -89,7 +89,7 @@ BMad: I see you've completed Discovery and part of Product Planning.
|
|
|
89
89
|
- UX Strategy with Sally (ux-expert)
|
|
90
90
|
|
|
91
91
|
Would you like me to load Sally to continue?
|
|
92
|
-
```
|
|
92
|
+
```
|
|
93
93
|
|
|
94
94
|
### /workflow-next
|
|
95
95
|
|
|
@@ -159,7 +159,7 @@ BMad: I see you have a PRD and architecture document. Based on these artifacts,
|
|
|
159
159
|
- Load Sarah (Product Owner) to validate all artifacts
|
|
160
160
|
|
|
161
161
|
Would you like to continue with this workflow?
|
|
162
|
-
```
|
|
162
|
+
```
|
|
163
163
|
|
|
164
164
|
## Workflow Context Passing
|
|
165
165
|
|
|
@@ -185,7 +185,7 @@ Sally: I see we're in the Product Planning stage of the greenfield-fullstack wor
|
|
|
185
185
|
|
|
186
186
|
Let's create the UX strategy and UI specifications. First, let me review
|
|
187
187
|
the PRD to understand the features we're designing for...
|
|
188
|
-
```
|
|
188
|
+
```
|
|
189
189
|
|
|
190
190
|
## Multi-Path Workflows
|
|
191
191
|
|
|
@@ -14,7 +14,7 @@ workflow:
|
|
|
14
14
|
|
|
15
15
|
sequence:
|
|
16
16
|
- step: service_analysis
|
|
17
|
-
|
|
17
|
+
agent: architect
|
|
18
18
|
action: analyze existing project and use task document-project
|
|
19
19
|
creates: multiple documents per the document-project template
|
|
20
20
|
notes: "Review existing service documentation, codebase, performance metrics, and identify integration dependencies."
|
|
@@ -1335,7 +1335,7 @@ servers:
|
|
|
1335
1335
|
'[object Object]': null
|
|
1336
1336
|
description:
|
|
1337
1337
|
'[object Object]': null
|
|
1338
|
-
```
|
|
1338
|
+
```
|
|
1339
1339
|
|
|
1340
1340
|
^^/CONDITION: has_rest_api^^
|
|
1341
1341
|
|
|
@@ -1398,7 +1398,6 @@ After presenting the structure, apply `tasks#advanced-elicitation` protocol to r
|
|
|
1398
1398
|
├── {{package-manifest}} # Dependencies manifest
|
|
1399
1399
|
├── {{config-files}} # Language/framework configs
|
|
1400
1400
|
└── README.md # Project documentation
|
|
1401
|
-
```text
|
|
1402
1401
|
|
|
1403
1402
|
@{example: monorepo-structure}
|
|
1404
1403
|
project-root/
|
|
@@ -1410,6 +1409,7 @@ project-root/
|
|
|
1410
1409
|
├── scripts/ # Monorepo management scripts
|
|
1411
1410
|
└── package.json # Root package.json with workspaces
|
|
1412
1411
|
@{/example}
|
|
1412
|
+
```
|
|
1413
1413
|
|
|
1414
1414
|
[[LLM: After presenting the source tree structure, apply `tasks#advanced-elicitation` protocol]]
|
|
1415
1415
|
|
|
@@ -3182,7 +3182,7 @@ Present component architecture and apply `tasks#advanced-elicitation` protocol]]
|
|
|
3182
3182
|
|
|
3183
3183
|
```mermaid
|
|
3184
3184
|
{{component_interaction_diagram}}
|
|
3185
|
-
```
|
|
3185
|
+
```
|
|
3186
3186
|
|
|
3187
3187
|
## API Design and Integration
|
|
3188
3188
|
|
|
@@ -3222,7 +3222,7 @@ Present API design and apply `tasks#advanced-elicitation` protocol]]
|
|
|
3222
3222
|
|
|
3223
3223
|
```json
|
|
3224
3224
|
{{response_schema}}
|
|
3225
|
-
```
|
|
3225
|
+
```
|
|
3226
3226
|
|
|
3227
3227
|
<</REPEAT>>
|
|
3228
3228
|
|
|
@@ -2392,7 +2392,7 @@ Create an `index.md` file in the sharded folder that:
|
|
|
2392
2392
|
- [Section Name 2](./section-name-2.md)
|
|
2393
2393
|
- [Section Name 3](./section-name-3.md)
|
|
2394
2394
|
...
|
|
2395
|
-
```
|
|
2395
|
+
```
|
|
2396
2396
|
|
|
2397
2397
|
### 5. Preserve Special Content
|
|
2398
2398
|
|
|
@@ -2813,7 +2813,7 @@ servers:
|
|
|
2813
2813
|
'[object Object]': null
|
|
2814
2814
|
description:
|
|
2815
2815
|
'[object Object]': null
|
|
2816
|
-
```
|
|
2816
|
+
```
|
|
2817
2817
|
|
|
2818
2818
|
^^/CONDITION: has_rest_api^^
|
|
2819
2819
|
|
|
@@ -2876,7 +2876,6 @@ After presenting the structure, apply `tasks#advanced-elicitation` protocol to r
|
|
|
2876
2876
|
├── {{package-manifest}} # Dependencies manifest
|
|
2877
2877
|
├── {{config-files}} # Language/framework configs
|
|
2878
2878
|
└── README.md # Project documentation
|
|
2879
|
-
```text
|
|
2880
2879
|
|
|
2881
2880
|
@{example: monorepo-structure}
|
|
2882
2881
|
project-root/
|
|
@@ -2888,6 +2887,7 @@ project-root/
|
|
|
2888
2887
|
├── scripts/ # Monorepo management scripts
|
|
2889
2888
|
└── package.json # Root package.json with workspaces
|
|
2890
2889
|
@{/example}
|
|
2890
|
+
```
|
|
2891
2891
|
|
|
2892
2892
|
[[LLM: After presenting the source tree structure, apply `tasks#advanced-elicitation` protocol]]
|
|
2893
2893
|
|
|
@@ -3461,7 +3461,7 @@ Present component architecture and apply `tasks#advanced-elicitation` protocol]]
|
|
|
3461
3461
|
|
|
3462
3462
|
```mermaid
|
|
3463
3463
|
{{component_interaction_diagram}}
|
|
3464
|
-
```
|
|
3464
|
+
```
|
|
3465
3465
|
|
|
3466
3466
|
## API Design and Integration
|
|
3467
3467
|
|
|
@@ -3501,7 +3501,7 @@ Present API design and apply `tasks#advanced-elicitation` protocol]]
|
|
|
3501
3501
|
|
|
3502
3502
|
```json
|
|
3503
3503
|
{{response_schema}}
|
|
3504
|
-
```
|
|
3504
|
+
```
|
|
3505
3505
|
|
|
3506
3506
|
<</REPEAT>>
|
|
3507
3507
|
|
|
@@ -4577,7 +4577,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
|
|
|
4577
4577
|
|
|
4578
4578
|
```mermaid
|
|
4579
4579
|
{{sitemap_diagram}}
|
|
4580
|
-
```
|
|
4580
|
+
```
|
|
4581
4581
|
|
|
4582
4582
|
@{example: sitemap}
|
|
4583
4583
|
|
|
@@ -8933,7 +8933,7 @@ Available workflows for [Team Name]:
|
|
|
8933
8933
|
[... etc. ...]
|
|
8934
8934
|
|
|
8935
8935
|
Use /workflow-start {number or id} to begin a workflow.
|
|
8936
|
-
```
|
|
8936
|
+
```
|
|
8937
8937
|
|
|
8938
8938
|
### /workflow-start {workflow-id}
|
|
8939
8939
|
|
|
@@ -8959,7 +8959,7 @@ In Progress:
|
|
|
8959
8959
|
- Create PRD (John) - awaiting input
|
|
8960
8960
|
|
|
8961
8961
|
Next: Technical Architecture
|
|
8962
|
-
```
|
|
8962
|
+
```
|
|
8963
8963
|
|
|
8964
8964
|
### /workflow-resume
|
|
8965
8965
|
|
|
@@ -8975,7 +8975,7 @@ BMad: I see you've completed Discovery and part of Product Planning.
|
|
|
8975
8975
|
- UX Strategy with Sally (ux-expert)
|
|
8976
8976
|
|
|
8977
8977
|
Would you like me to load Sally to continue?
|
|
8978
|
-
```
|
|
8978
|
+
```
|
|
8979
8979
|
|
|
8980
8980
|
### /workflow-next
|
|
8981
8981
|
|
|
@@ -9045,7 +9045,7 @@ BMad: I see you have a PRD and architecture document. Based on these artifacts,
|
|
|
9045
9045
|
- Load Sarah (Product Owner) to validate all artifacts
|
|
9046
9046
|
|
|
9047
9047
|
Would you like to continue with this workflow?
|
|
9048
|
-
```
|
|
9048
|
+
```
|
|
9049
9049
|
|
|
9050
9050
|
## Workflow Context Passing
|
|
9051
9051
|
|
|
@@ -9071,7 +9071,7 @@ Sally: I see we're in the Product Planning stage of the greenfield-fullstack wor
|
|
|
9071
9071
|
|
|
9072
9072
|
Let's create the UX strategy and UI specifications. First, let me review
|
|
9073
9073
|
the PRD to understand the features we're designing for...
|
|
9074
|
-
```
|
|
9074
|
+
```
|
|
9075
9075
|
|
|
9076
9076
|
## Multi-Path Workflows
|
|
9077
9077
|
|
|
@@ -810,7 +810,7 @@ Available workflows for [Team Name]:
|
|
|
810
810
|
[... etc. ...]
|
|
811
811
|
|
|
812
812
|
Use /workflow-start {number or id} to begin a workflow.
|
|
813
|
-
```
|
|
813
|
+
```
|
|
814
814
|
|
|
815
815
|
### /workflow-start {workflow-id}
|
|
816
816
|
|
|
@@ -836,7 +836,7 @@ In Progress:
|
|
|
836
836
|
- Create PRD (John) - awaiting input
|
|
837
837
|
|
|
838
838
|
Next: Technical Architecture
|
|
839
|
-
```
|
|
839
|
+
```
|
|
840
840
|
|
|
841
841
|
### /workflow-resume
|
|
842
842
|
|
|
@@ -852,7 +852,7 @@ BMad: I see you've completed Discovery and part of Product Planning.
|
|
|
852
852
|
- UX Strategy with Sally (ux-expert)
|
|
853
853
|
|
|
854
854
|
Would you like me to load Sally to continue?
|
|
855
|
-
```
|
|
855
|
+
```
|
|
856
856
|
|
|
857
857
|
### /workflow-next
|
|
858
858
|
|
|
@@ -922,7 +922,7 @@ BMad: I see you have a PRD and architecture document. Based on these artifacts,
|
|
|
922
922
|
- Load Sarah (Product Owner) to validate all artifacts
|
|
923
923
|
|
|
924
924
|
Would you like to continue with this workflow?
|
|
925
|
-
```
|
|
925
|
+
```
|
|
926
926
|
|
|
927
927
|
## Workflow Context Passing
|
|
928
928
|
|
|
@@ -948,7 +948,7 @@ Sally: I see we're in the Product Planning stage of the greenfield-fullstack wor
|
|
|
948
948
|
|
|
949
949
|
Let's create the UX strategy and UI specifications. First, let me review
|
|
950
950
|
the PRD to understand the features we're designing for...
|
|
951
|
-
```
|
|
951
|
+
```
|
|
952
952
|
|
|
953
953
|
## Multi-Path Workflows
|
|
954
954
|
|
package/dist/agents/dev.txt
CHANGED
|
@@ -51,6 +51,12 @@ agent:
|
|
|
51
51
|
icon: 💻
|
|
52
52
|
whenToUse: Use for code implementation, debugging, refactoring, and development best practices
|
|
53
53
|
customization: null
|
|
54
|
+
startup:
|
|
55
|
+
- Announce: Greet the user with your name and role, and inform of the *help command.
|
|
56
|
+
- CRITICAL: Load .bmad-core/core-config.yml and read devLoadAlwaysFiles list and devDebugLog values
|
|
57
|
+
- CRITICAL: Load ONLY files specified in devLoadAlwaysFiles. If any missing, inform user but continue
|
|
58
|
+
- CRITICAL: Do NOT load any story files during startup unless user requested you do
|
|
59
|
+
- CRITICAL: Do NOT begin development until told to proceed
|
|
54
60
|
persona:
|
|
55
61
|
role: Expert Senior Software Engineer & Implementation Specialist
|
|
56
62
|
style: Extremely concise, pragmatic, detail-oriented, solution-focused
|
|
@@ -58,30 +64,16 @@ persona:
|
|
|
58
64
|
focus: Executing story tasks with precision, updating Dev Agent Record sections only, maintaining minimal context overhead
|
|
59
65
|
core_principles:
|
|
60
66
|
- CRITICAL: Story-Centric - Story has ALL info. NEVER load PRD/architecture/other docs files unless explicitly directed in dev notes
|
|
61
|
-
- CRITICAL:
|
|
62
|
-
-
|
|
63
|
-
- Sequential Execution - Complete tasks 1-by-1 in order. Mark [x] before next. No skipping
|
|
67
|
+
- CRITICAL: Dev Record Only - ONLY update story file Dev Agent Record sections (checkboxes/Debug Log/Completion Notes/Change Log)
|
|
68
|
+
- Strive for Sequential Task Execution - Complete tasks 1-by-1 and mark [x] as completed
|
|
64
69
|
- Test-Driven Quality - Write tests alongside code. Task incomplete without passing tests
|
|
65
|
-
- Debug Log Discipline - Log temp changes to table. Revert after fix.
|
|
70
|
+
- Debug Log Discipline - Log temp changes to md table in devDebugLog. Revert after fix.
|
|
66
71
|
- Block Only When Critical - HALT for: missing approval/ambiguous reqs/3 failures/missing config
|
|
67
72
|
- Code Excellence - Clean, secure, maintainable code per loaded standards
|
|
68
73
|
- Numbered Options - Always use numbered lists when presenting choices
|
|
69
|
-
startup:
|
|
70
|
-
- Announce: Greet the user with your name and role, and inform of the *help command.
|
|
71
|
-
- CRITICAL: Load .bmad-core/core-config.yml and read devLoadAlwaysFiles list
|
|
72
|
-
- CRITICAL: Load ONLY files specified in devLoadAlwaysFiles. If any missing, inform user but continue
|
|
73
|
-
- CRITICAL: Do NOT load any story files during startup unless user requested you do
|
|
74
|
-
- CRITICAL: Do NOT scan docs/stories/ directory automatically
|
|
75
|
-
- CRITICAL: Do NOT begin any tasks automatically
|
|
76
|
-
- Wait for user to specify story or ask for story selection
|
|
77
|
-
- Only load story files and begin work when explicitly requested by user
|
|
78
74
|
commands:
|
|
79
75
|
- help: Show numbered list of the following commands to allow selection
|
|
80
|
-
- chat-mode: Conversational mode for development discussions
|
|
81
76
|
- run-tests: Execute linting and tests
|
|
82
|
-
- lint: Run linting only
|
|
83
|
-
- dod-check: Run story-dod-checklist
|
|
84
|
-
- status: Show task progress
|
|
85
77
|
- debug-log: Show debug entries
|
|
86
78
|
- complete-story: Finalize to "Review"
|
|
87
79
|
- exit: Say goodbye as the Developer, and then abandon inhabiting this persona
|
package/dist/agents/pm.txt
CHANGED
package/dist/agents/po.txt
CHANGED