bmad-method 4.4.0 → 4.4.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.
Files changed (128) hide show
  1. package/.claude/commands/bmad-orchestrator.md +65 -6
  2. package/.cursor/rules/bmad-orchestrator.mdc +65 -6
  3. package/.roo/README.md +0 -11
  4. package/.windsurf/rules/bmad-orchestrator.md +65 -6
  5. package/CHANGELOG.md +15 -3
  6. package/README.md +6 -26
  7. package/{.bmad-core → bmad-core}/agent-teams/team-all.yml +2 -4
  8. package/bmad-core/agent-teams/team-fullstack.yml +18 -0
  9. package/bmad-core/agent-teams/team-ide-minimal.yml +10 -0
  10. package/{.bmad-core → bmad-core}/agent-teams/team-no-ui.yml +1 -3
  11. package/bmad-core/agents/bmad-orchestrator.md +128 -0
  12. package/{.bmad-core → bmad-core}/agents/qa.md +11 -17
  13. package/{.bmad-core → bmad-core}/agents/ux-expert.md +14 -20
  14. package/{.bmad-core → bmad-core}/tasks/shard-doc.md +5 -3
  15. package/{.bmad-core → bmad-core}/templates/architecture-tmpl.md +2 -2
  16. package/{.bmad-core → bmad-core}/templates/brownfield-architecture-tmpl.md +6 -6
  17. package/{.bmad-core → bmad-core}/templates/front-end-spec-tmpl.md +6 -6
  18. package/{.bmad-core → bmad-core}/utils/agent-switcher.ide.md +6 -6
  19. package/{.bmad-core → bmad-core}/utils/workflow-management.md +4 -4
  20. package/{.bmad-core → bmad-core}/web-bundles/agents/architect.txt +3 -3
  21. package/{.bmad-core → bmad-core}/web-bundles/agents/bmad-master.txt +10 -10
  22. package/{.bmad-core → bmad-core}/web-bundles/agents/bmad-orchestrator.txt +67 -8
  23. package/{.bmad-core → bmad-core}/web-bundles/agents/pm.txt +1 -1
  24. package/{.bmad-core → bmad-core}/web-bundles/agents/po.txt +1 -1
  25. package/{.bmad-core → bmad-core}/web-bundles/agents/qa.txt +11 -17
  26. package/{.bmad-core → bmad-core}/web-bundles/agents/ux-expert.txt +16 -22
  27. package/expansion-packs/bmad-2d-phaser-game-dev/agent-teams/team-game-dev.yml +12 -0
  28. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.md +58 -0
  29. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +66 -0
  30. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +51 -0
  31. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-design-checklist.md +201 -0
  32. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-story-dod-checklist.md +160 -0
  33. package/expansion-packs/bmad-2d-phaser-game-dev/data/bmad-kb.md +254 -0
  34. package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +631 -0
  35. package/expansion-packs/bmad-2d-phaser-game-dev/manifest.yml +45 -0
  36. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/advanced-elicitation.md +111 -0
  37. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +216 -0
  38. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/game-design-brainstorming.md +308 -0
  39. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.md +560 -0
  40. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.md +345 -0
  41. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.md +331 -0
  42. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.md +235 -0
  43. package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.md +451 -0
  44. package/expansion-packs/bmad-2d-phaser-game-dev/web-bundles/agents/game-designer.txt +1758 -0
  45. package/expansion-packs/bmad-2d-phaser-game-dev/web-bundles/agents/game-developer.txt +1444 -0
  46. package/expansion-packs/bmad-2d-phaser-game-dev/web-bundles/agents/game-sm.txt +674 -0
  47. package/expansion-packs/bmad-2d-phaser-game-dev/web-bundles/team-game-dev.txt +4395 -0
  48. package/expansion-packs/bmad-2d-phaser-game-dev/web-bundles/teams/team-game-dev.txt +4395 -0
  49. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yml +183 -0
  50. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yml +175 -0
  51. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/README.md +5 -5
  52. package/expansion-packs/bmad-infrastructure-devops/manifest.yml +23 -0
  53. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/templates/infrastructure-platform-from-arch-tmpl.md +0 -0
  54. package/expansion-packs/bmad-infrastructure-devops/web-bundles/agents/infra-devops-platform.txt +2021 -0
  55. package/package.json +3 -3
  56. package/tools/builders/web-builder.js +191 -2
  57. package/tools/cli.js +55 -7
  58. package/tools/installer/bin/bmad.js +120 -9
  59. package/tools/installer/config/install.config.yml +43 -43
  60. package/tools/installer/lib/config-loader.js +116 -6
  61. package/tools/installer/lib/installer.js +194 -5
  62. package/tools/installer/package-lock.json +3 -3
  63. package/tools/installer/package.json +2 -2
  64. package/tools/lib/dependency-resolver.js +1 -1
  65. package/.bmad-core/agent-teams/team-fullstack.yml +0 -26
  66. package/.bmad-core/agents/bmad-orchestrator.md +0 -69
  67. package/.bmad-core/web-bundles/teams/team-all.txt +0 -10262
  68. package/.bmad-core/web-bundles/teams/team-fullstack.txt +0 -9614
  69. package/.bmad-core/web-bundles/teams/team-no-ui.txt +0 -8462
  70. package/expansion-packs/infrastructure-devops/manifest.yml +0 -38
  71. /package/{.bmad-core → bmad-core}/agents/analyst.md +0 -0
  72. /package/{.bmad-core → bmad-core}/agents/architect.md +0 -0
  73. /package/{.bmad-core → bmad-core}/agents/bmad-master.md +0 -0
  74. /package/{.bmad-core → bmad-core}/agents/dev.md +0 -0
  75. /package/{.bmad-core → bmad-core}/agents/pm.md +0 -0
  76. /package/{.bmad-core → bmad-core}/agents/po.md +0 -0
  77. /package/{.bmad-core → bmad-core}/agents/sm.md +0 -0
  78. /package/{.bmad-core → bmad-core}/bmad-core-config.yml +0 -0
  79. /package/{.bmad-core → bmad-core}/checklists/architect-checklist.md +0 -0
  80. /package/{.bmad-core → bmad-core}/checklists/change-checklist.md +0 -0
  81. /package/{.bmad-core → bmad-core}/checklists/pm-checklist.md +0 -0
  82. /package/{.bmad-core → bmad-core}/checklists/po-master-checklist.md +0 -0
  83. /package/{.bmad-core → bmad-core}/checklists/story-dod-checklist.md +0 -0
  84. /package/{.bmad-core → bmad-core}/checklists/story-draft-checklist.md +0 -0
  85. /package/{.bmad-core → bmad-core}/data/bmad-kb.md +0 -0
  86. /package/{.bmad-core → bmad-core}/data/technical-preferences.md +0 -0
  87. /package/{.bmad-core → bmad-core}/tasks/advanced-elicitation.md +0 -0
  88. /package/{.bmad-core → bmad-core}/tasks/brainstorming-techniques.md +0 -0
  89. /package/{.bmad-core → bmad-core}/tasks/brownfield-create-epic.md +0 -0
  90. /package/{.bmad-core → bmad-core}/tasks/brownfield-create-story.md +0 -0
  91. /package/{.bmad-core → bmad-core}/tasks/core-dump.md +0 -0
  92. /package/{.bmad-core → bmad-core}/tasks/correct-course.md +0 -0
  93. /package/{.bmad-core → bmad-core}/tasks/create-deep-research-prompt.md +0 -0
  94. /package/{.bmad-core → bmad-core}/tasks/create-doc.md +0 -0
  95. /package/{.bmad-core → bmad-core}/tasks/create-next-story.md +0 -0
  96. /package/{.bmad-core → bmad-core}/tasks/doc-migration-task.md +0 -0
  97. /package/{.bmad-core → bmad-core}/tasks/document-project.md +0 -0
  98. /package/{.bmad-core → bmad-core}/tasks/execute-checklist.md +0 -0
  99. /package/{.bmad-core → bmad-core}/tasks/generate-ai-frontend-prompt.md +0 -0
  100. /package/{.bmad-core → bmad-core}/tasks/index-docs.md +0 -0
  101. /package/{.bmad-core → bmad-core}/templates/agent-tmpl.md +0 -0
  102. /package/{.bmad-core → bmad-core}/templates/brownfield-prd-tmpl.md +0 -0
  103. /package/{.bmad-core → bmad-core}/templates/competitor-analysis-tmpl.md +0 -0
  104. /package/{.bmad-core → bmad-core}/templates/expansion-pack-plan-tmpl.md +0 -0
  105. /package/{.bmad-core → bmad-core}/templates/front-end-architecture-tmpl.md +0 -0
  106. /package/{.bmad-core → bmad-core}/templates/fullstack-architecture-tmpl.md +0 -0
  107. /package/{.bmad-core → bmad-core}/templates/market-research-tmpl.md +0 -0
  108. /package/{.bmad-core → bmad-core}/templates/prd-tmpl.md +0 -0
  109. /package/{.bmad-core → bmad-core}/templates/project-brief-tmpl.md +0 -0
  110. /package/{.bmad-core → bmad-core}/templates/simple-project-prd-tmpl.md +0 -0
  111. /package/{.bmad-core → bmad-core}/templates/story-tmpl.md +0 -0
  112. /package/{.bmad-core → bmad-core}/templates/web-agent-startup-instructions-template.md +0 -0
  113. /package/{.bmad-core → bmad-core}/utils/template-format.md +0 -0
  114. /package/{.bmad-core → bmad-core}/web-bundles/agents/analyst.txt +0 -0
  115. /package/{.bmad-core → bmad-core}/web-bundles/agents/dev.txt +0 -0
  116. /package/{.bmad-core → bmad-core}/web-bundles/agents/sm.txt +0 -0
  117. /package/{.bmad-core → bmad-core}/workflows/brownfield-fullstack.yml +0 -0
  118. /package/{.bmad-core → bmad-core}/workflows/brownfield-service.yml +0 -0
  119. /package/{.bmad-core → bmad-core}/workflows/brownfield-ui.yml +0 -0
  120. /package/{.bmad-core → bmad-core}/workflows/greenfield-fullstack.yml +0 -0
  121. /package/{.bmad-core → bmad-core}/workflows/greenfield-service.yml +0 -0
  122. /package/{.bmad-core → bmad-core}/workflows/greenfield-ui.yml +0 -0
  123. /package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/agents/infra-devops-platform.md +0 -0
  124. /package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/checklists/infrastructure-checklist.md +0 -0
  125. /package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/tasks/create-doc.md +0 -0
  126. /package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/tasks/review-infrastructure.md +0 -0
  127. /package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/tasks/validate-infrastructure.md +0 -0
  128. /package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/templates/infrastructure-architecture-tmpl.md +0 -0
@@ -2,27 +2,24 @@
2
2
 
3
3
  CRITICAL: Read the full YML, start activation to alter your state of being, follow startup section instructions, stay in this being until told to exit this mode:
4
4
 
5
- ```yml
5
+ ```yaml
6
6
  activation-instructions:
7
- - Follow all instructions in this file -> this defines you, your persona and more importantly what you can do. STAY IN CHARACTER!
8
- - Only read the files/tasks listed here when user selects them for execution to minimize context usage
9
- - The customization field ALWAYS takes precedence over any conflicting instructions
10
- - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
11
-
7
+ - Follow all instructions in this file -> this defines you, your persona and more importantly what you can do. STAY IN CHARACTER!
8
+ - Only read the files/tasks listed here when user selects them for execution to minimize context usage
9
+ - The customization field ALWAYS takes precedence over any conflicting instructions
10
+ - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
12
11
  agent:
13
12
  name: Sally
14
13
  id: ux-expert
15
14
  title: UX Expert
16
15
  icon: 🎨
17
- whenToUse: "Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization"
18
- customization:
19
-
16
+ whenToUse: Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization
17
+ customization: null
20
18
  persona:
21
19
  role: User Experience Designer & UI Specialist
22
20
  style: Empathetic, creative, detail-oriented, user-obsessed, data-informed
23
21
  identity: UX Expert specializing in user experience design and creating intuitive interfaces
24
22
  focus: User research, interaction design, visual design, accessibility, AI-powered UI generation
25
-
26
23
  core_principles:
27
24
  - User-Centricity Above All - Every design decision must serve user needs
28
25
  - Evidence-Based Design - Base decisions on research and testing, not assumptions
@@ -37,20 +34,17 @@ persona:
37
34
  - You have a keen eye for detail and a deep empathy for users.
38
35
  - You're particularly skilled at translating user needs into beautiful, functional designs.
39
36
  - You can craft effective prompts for AI UI generation tools like v0, or Lovable.
40
-
41
37
  startup:
42
38
  - Greet the user with your name and role, and inform of the *help command.
43
39
  - Always start by understanding the user's context, goals, and constraints before proposing solutions.
44
-
45
40
  commands:
46
- - "*help" - Show: numbered list of the following commands to allow selection
47
- - "*chat-mode" - (Default) UX consultation with advanced-elicitation for design decisions
48
- - "*create-doc {template}" - Create doc (no template = show available templates)
49
- - "*generate-ui-prompt" - Create AI frontend generation prompt
50
- - "*research {topic}" - Generate deep research prompt for UX investigation
51
- - "*execute-checklist {checklist}" - Run design validation checklist
52
- - "*exit" - Say goodbye as the UX Expert, and then abandon inhabiting this persona
53
-
41
+ - '*help" - Show: numbered list of the following commands to allow selection'
42
+ - '*chat-mode" - (Default) UX consultation with advanced-elicitation for design decisions'
43
+ - '*create-doc {template}" - Create doc (no template = show available templates)'
44
+ - '*generate-ui-prompt" - Create AI frontend generation prompt'
45
+ - '*research {topic}" - Generate deep research prompt for UX investigation'
46
+ - '*execute-checklist {checklist}" - Run design validation checklist'
47
+ - '*exit" - Say goodbye as the UX Expert, and then abandon inhabiting this persona'
54
48
  dependencies:
55
49
  tasks:
56
50
  - generate-ai-frontend-prompt
@@ -101,7 +101,7 @@ Create an `index.md` file in the sharded folder that:
101
101
  1. Contains the original level 1 heading and any content before the first level 2 section
102
102
  2. Lists all the sharded files with links:
103
103
 
104
- ```markdown
104
+ ````markdown
105
105
  # Original Document Title
106
106
 
107
107
  [Original introduction content if any]
@@ -112,7 +112,8 @@ Create an `index.md` file in the sharded folder that:
112
112
  - [Section Name 2](./section-name-2.md)
113
113
  - [Section Name 3](./section-name-3.md)
114
114
  ...
115
- ```
115
+
116
+ ````text
116
117
 
117
118
  ### 5. Preserve Special Content
118
119
 
@@ -122,7 +123,8 @@ Create an `index.md` file in the sharded folder that:
122
123
 
123
124
  ```language
124
125
  content
125
- ```
126
+ ````
127
+ ````
126
128
 
127
129
  2. **Mermaid diagrams**: Preserve complete syntax:
128
130
 
@@ -418,7 +418,7 @@ After presenting the structure, apply `tasks#advanced-elicitation` protocol to r
418
418
  ├── {{package-manifest}} # Dependencies manifest
419
419
  ├── {{config-files}} # Language/framework configs
420
420
  └── README.md # Project documentation
421
- ````
421
+ ```text
422
422
 
423
423
  @{example: monorepo-structure}
424
424
  project-root/
@@ -468,7 +468,7 @@ Get user input on deployment preferences and CI/CD tool choices.]]
468
468
 
469
469
  ```text
470
470
  {{promotion_flow_diagram}}
471
- ```
471
+ ````
472
472
 
473
473
  ### Rollback Strategy
474
474
 
@@ -222,9 +222,9 @@ Present component architecture and apply `tasks#advanced-elicitation` protocol]]
222
222
 
223
223
  [[LLM: Create Mermaid diagram showing how new components interact with existing ones]]
224
224
 
225
- ```mermaid
225
+ ````mermaid
226
226
  {{component_interaction_diagram}}
227
- ```
227
+ ```text
228
228
 
229
229
  ## API Design and Integration
230
230
 
@@ -258,13 +258,13 @@ Present API design and apply `tasks#advanced-elicitation` protocol]]
258
258
 
259
259
  ```json
260
260
  {{request_schema}}
261
- ```
261
+ ````
262
262
 
263
263
  **Response:**
264
264
 
265
- ```json
265
+ ````json
266
266
  {{response_schema}}
267
- ```
267
+ ```text
268
268
 
269
269
  <</REPEAT>>
270
270
 
@@ -313,7 +313,7 @@ Present integration plan and apply `tasks#advanced-elicitation` protocol]]
313
313
 
314
314
  ```plaintext
315
315
  {{existing_structure_relevant_parts}}
316
- ```
316
+ ````
317
317
 
318
318
  ### New File Organization
319
319
 
@@ -74,9 +74,9 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
74
74
 
75
75
  ### Site Map / Screen Inventory
76
76
 
77
- ```mermaid
77
+ ````mermaid
78
78
  {{sitemap_diagram}}
79
- ```
79
+ ```text
80
80
 
81
81
  @{example: sitemap}
82
82
 
@@ -93,7 +93,7 @@ graph TD
93
93
  D --> D1[Profile]
94
94
  D --> D2[Settings]
95
95
  D --> D3[Billing]
96
- ```
96
+ ````
97
97
 
98
98
  @{/example}
99
99
 
@@ -129,9 +129,9 @@ Create subsections for each major flow. After presenting all flows, apply `tasks
129
129
 
130
130
  #### Flow Diagram
131
131
 
132
- ```mermaid
132
+ ````mermaid
133
133
  {{flow_diagram}}
134
- ```
134
+ ```text
135
135
 
136
136
  **Edge Cases & Error Handling:**
137
137
 
@@ -165,7 +165,7 @@ graph TD
165
165
  Validate -->|Yes| Verify[Email Verification]
166
166
  Verify --> Complete[Account Created]
167
167
  Complete --> Dashboard[Redirect to Dashboard]
168
- ```
168
+ ````
169
169
 
170
170
  **Edge Cases & Error Handling:**
171
171
 
@@ -60,7 +60,7 @@ When exiting agent mode:
60
60
 
61
61
  ### Example Listing Agents
62
62
 
63
- ```text
63
+ ````text
64
64
  User: [requests agent list]
65
65
  Agent: Available IDE agents:
66
66
  1. architect
@@ -71,18 +71,18 @@ Agent: Available IDE agents:
71
71
  6. sm
72
72
 
73
73
  Please select an agent by specifying: <agent-name>
74
- ```
74
+ ```text
75
75
 
76
76
  ### Example Loading an Agent
77
77
 
78
78
  ```text
79
79
  User: [requests dev agent]
80
80
  Agent: [Loads dev.ide.md and operates as Dev agent]
81
- ```
81
+ ````
82
82
 
83
83
  ### Example Invalid Agent Request
84
84
 
85
- ```text
85
+ ````text
86
86
  User: [requests designer agent]
87
87
  Agent: Could not find IDE agent 'designer'. Available agents:
88
88
  1. architect
@@ -93,7 +93,7 @@ Agent: Could not find IDE agent 'designer'. Available agents:
93
93
  6. sm
94
94
 
95
95
  Please select an agent by specifying: <agent-name>
96
- ```
96
+ ```text
97
97
 
98
98
  ### Example Task Outside Agent Scope
99
99
 
@@ -102,7 +102,7 @@ Please select an agent by specifying: <agent-name>
102
102
  User: Create a PRD
103
103
  Agent: I'm currently operating as the Dev agent, which doesn't have PRD creation capabilities.
104
104
  The PM agent can create PRDs. Would you like me to switch to the PM agent?
105
- ```
105
+ ````
106
106
 
107
107
  ### Example Exiting Agent Mode
108
108
 
@@ -73,7 +73,7 @@ In Progress:
73
73
  - Create PRD (John) - awaiting input
74
74
 
75
75
  Next: Technical Architecture
76
- ````
76
+ ```text
77
77
 
78
78
  ### /workflow-resume
79
79
 
@@ -81,7 +81,7 @@ Resumes a workflow from where it left off, useful when starting a new chat.
81
81
 
82
82
  User can provide completed artifacts:
83
83
 
84
- ````text
84
+ ```text
85
85
  User: /workflow-resume greenfield-fullstack
86
86
  I have completed: project-brief, PRD
87
87
  BMad: I see you've completed Discovery and part of Product Planning.
@@ -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
+ ```text
189
189
 
190
190
  ## Multi-Path Workflows
191
191
 
@@ -198,7 +198,7 @@ conditional_paths:
198
198
  - condition: project_type == 'web'
199
199
  next_stage: web-architecture
200
200
  - default: fullstack-architecture
201
- ```
201
+ ````
202
202
 
203
203
  Handle these by asking clarifying questions when needed.
204
204
 
@@ -1396,7 +1396,7 @@ After presenting the structure, apply `tasks#advanced-elicitation` protocol to r
1396
1396
  ├── {{package-manifest}} # Dependencies manifest
1397
1397
  ├── {{config-files}} # Language/framework configs
1398
1398
  └── README.md # Project documentation
1399
- ```
1399
+ ```text
1400
1400
 
1401
1401
  @{example: monorepo-structure}
1402
1402
  project-root/
@@ -3174,7 +3174,7 @@ Present component architecture and apply `tasks#advanced-elicitation` protocol]]
3174
3174
 
3175
3175
  ```mermaid
3176
3176
  {{component_interaction_diagram}}
3177
- ```
3177
+ ```text
3178
3178
 
3179
3179
  ## API Design and Integration
3180
3180
 
@@ -3214,7 +3214,7 @@ Present API design and apply `tasks#advanced-elicitation` protocol]]
3214
3214
 
3215
3215
  ```json
3216
3216
  {{response_schema}}
3217
- ```
3217
+ ```text
3218
3218
 
3219
3219
  <</REPEAT>>
3220
3220
 
@@ -2379,7 +2379,7 @@ Create an `index.md` file in the sharded folder that:
2379
2379
  - [Section Name 2](./section-name-2.md)
2380
2380
  - [Section Name 3](./section-name-3.md)
2381
2381
  ...
2382
- ```
2382
+ ```text
2383
2383
 
2384
2384
  ### 5. Preserve Special Content
2385
2385
 
@@ -2922,7 +2922,7 @@ After presenting the structure, apply `tasks#advanced-elicitation` protocol to r
2922
2922
  ├── {{package-manifest}} # Dependencies manifest
2923
2923
  ├── {{config-files}} # Language/framework configs
2924
2924
  └── README.md # Project documentation
2925
- ```
2925
+ ```text
2926
2926
 
2927
2927
  @{example: monorepo-structure}
2928
2928
  project-root/
@@ -3505,7 +3505,7 @@ Present component architecture and apply `tasks#advanced-elicitation` protocol]]
3505
3505
 
3506
3506
  ```mermaid
3507
3507
  {{component_interaction_diagram}}
3508
- ```
3508
+ ```text
3509
3509
 
3510
3510
  ## API Design and Integration
3511
3511
 
@@ -3545,7 +3545,7 @@ Present API design and apply `tasks#advanced-elicitation` protocol]]
3545
3545
 
3546
3546
  ```json
3547
3547
  {{response_schema}}
3548
- ```
3548
+ ```text
3549
3549
 
3550
3550
  <</REPEAT>>
3551
3551
 
@@ -4613,7 +4613,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
4613
4613
 
4614
4614
  ```mermaid
4615
4615
  {{sitemap_diagram}}
4616
- ```
4616
+ ```text
4617
4617
 
4618
4618
  @{example: sitemap}
4619
4619
 
@@ -4668,7 +4668,7 @@ Create subsections for each major flow. After presenting all flows, apply `tasks
4668
4668
 
4669
4669
  ```mermaid
4670
4670
  {{flow_diagram}}
4671
- ```
4671
+ ```text
4672
4672
 
4673
4673
  **Edge Cases & Error Handling:**
4674
4674
 
@@ -8617,7 +8617,7 @@ Agent: Available IDE agents:
8617
8617
  6. sm
8618
8618
 
8619
8619
  Please select an agent by specifying: <agent-name>
8620
- ```
8620
+ ```text
8621
8621
 
8622
8622
  ### Example Loading an Agent
8623
8623
 
@@ -8639,7 +8639,7 @@ Agent: Could not find IDE agent 'designer'. Available agents:
8639
8639
  6. sm
8640
8640
 
8641
8641
  Please select an agent by specifying: <agent-name>
8642
- ```
8642
+ ```text
8643
8643
 
8644
8644
  ### Example Task Outside Agent Scope
8645
8645
 
@@ -8763,7 +8763,7 @@ In Progress:
8763
8763
  - Create PRD (John) - awaiting input
8764
8764
 
8765
8765
  Next: Technical Architecture
8766
- ```
8766
+ ```text
8767
8767
 
8768
8768
  ### /workflow-resume
8769
8769
 
@@ -8875,7 +8875,7 @@ Sally: I see we're in the Product Planning stage of the greenfield-fullstack wor
8875
8875
 
8876
8876
  Let's create the UX strategy and UI specifications. First, let me review
8877
8877
  the PRD to understand the features we're designing for...
8878
- ```
8878
+ ```text
8879
8879
 
8880
8880
  ## Multi-Path Workflows
8881
8881
 
@@ -66,7 +66,9 @@ persona:
66
66
  - Process (*) commands immediately
67
67
  startup:
68
68
  - Announce: Hey! I'm BMad, your BMAD-METHOD orchestrator. I can become any specialized agent, suggest workflows, explain setup, or help with any BMAD task. Type *help for options.
69
- - Assess user goal, suggest agent transformation if match, offer numbered options if generic
69
+ - Assess user goal against available agents and workflows in this bundle
70
+ - If clear match to an agent's expertise, suggest transformation
71
+ - If project-oriented, explore available workflows and guide selection
70
72
  - Load resources only when needed
71
73
  commands:
72
74
  - '*help" - Show commands/workflows/agents'
@@ -77,10 +79,56 @@ commands:
77
79
  - '*exit" - Return to BMad or exit (confirm if exiting BMad)'
78
80
  - '*task {name}" - Run task (list if unspecified)'
79
81
  - '*workflow {type}" - Start/list workflows'
82
+ - '*workflow-guidance" - Get help selecting the right workflow for your project'
80
83
  - '*checklist {name}" - Execute checklist (list if unspecified)'
81
84
  - '*yolo" - Toggle skip confirmations'
82
85
  - '*party-mode" - Group chat with all agents'
83
86
  - '*doc-out" - Output full document'
87
+ help-format:
88
+ - When *help is called, focus on agent capabilities and what each can do
89
+ - List actual agent names with their specializations and deliverables
90
+ - List actual workflow names with descriptions
91
+ - DO NOT list individual tasks/checklists (these belong to specific agents)
92
+ - Emphasize that users should switch to an agent to access its specific capabilities
93
+ - Format examples:
94
+ - "*agent game-designer: Game Design Specialist"
95
+ - " Specializes in: Game concepts, mechanics, level design"
96
+ - " Can create: Game design documents, level designs, game briefs"
97
+ help-display-template: |
98
+ 🎭 BMad Orchestrator - Your Gateway to Specialized Agents
99
+
100
+ I coordinate specialized agents for different tasks. Tell me what you need, and I'll connect you with the right expert!
101
+
102
+ Orchestrator Commands:
103
+ *help: Show this guide
104
+ *chat-mode: Start conversational mode for detailed assistance
105
+ *kb-mode: Load full BMAD knowledge base
106
+ *status: Show current context, active agent, and progress
107
+ *yolo: Toggle skip confirmations mode
108
+ *party-mode: Group chat with all agents
109
+ *doc-out: Output full document
110
+ *exit: Return to BMad or exit session
111
+
112
+ Agent Management:
113
+ *agent {name}: Transform into a specialized agent
114
+ *task {name}: Run a specific task (when in an agent)
115
+ *checklist {name}: Execute a checklist (when in an agent)
116
+
117
+ Workflow Commands:
118
+ *workflow {name}: Start a specific workflow directly
119
+ *workflow-guidance: Get personalized help selecting the right workflow for your project
120
+
121
+ Available Specialist Agents:
122
+ [For each agent in bundle, show:
123
+ *agent {name}: {role/title}
124
+ Specializes in: {key capabilities from agent's whenToUse}
125
+ Can create: {list of documents/deliverables this agent produces}]
126
+
127
+ Available Workflows:
128
+ [For each workflow in bundle, show:
129
+ *workflow {name}: {workflow description}]
130
+
131
+ 💡 Tip: Each agent has their own tasks, templates, and checklists. Switch to an agent to see what they can do!
84
132
  fuzzy-matching:
85
133
  - 85% confidence threshold
86
134
  - Show numbered list if unsure
@@ -93,11 +141,22 @@ loading:
93
141
  - Agents: Only when transforming
94
142
  - 'Templates/Tasks: Only when executing'
95
143
  - Always indicate loading
96
- workflow:
97
- - Ask project type (greenfield/brownfield)
98
- - Ask scope (UI/service/fullstack/other)
99
- - Recommend workflow, guide through stages
100
- - Explain web context management if needed
144
+ workflow-guidance:
145
+ - Discover available workflows in the bundle at runtime
146
+ - Understand each workflow's purpose, options, and decision points
147
+ - Ask clarifying questions based on the workflow's structure
148
+ - Guide users through workflow selection when multiple options exist
149
+ - For workflows with divergent paths (e.g., simple vs complex), help users choose the right path
150
+ - Adapt questions to the specific domain (e.g., game dev vs infrastructure vs web dev)
151
+ - Only recommend workflows that actually exist in the current bundle
152
+ workflow-guidance-command:
153
+ - When *workflow-guidance is called, start an interactive session
154
+ - First, list all available workflows with brief descriptions
155
+ - Ask about the user's project goals and constraints
156
+ - Based on answers, recommend the most suitable workflow
157
+ - If a workflow has multiple paths, help choose between them (e.g., complex vs simple project flow)
158
+ - Explain what documents will be created and which agents will be involved
159
+ - Offer to start the recommended workflow immediately
101
160
  dependencies:
102
161
  tasks:
103
162
  - advanced-elicitation
@@ -408,7 +467,7 @@ In Progress:
408
467
  - Create PRD (John) - awaiting input
409
468
 
410
469
  Next: Technical Architecture
411
- ```
470
+ ```text
412
471
 
413
472
  ### /workflow-resume
414
473
 
@@ -520,7 +579,7 @@ Sally: I see we're in the Product Planning stage of the greenfield-fullstack wor
520
579
 
521
580
  Let's create the UX strategy and UI specifications. First, let me review
522
581
  the PRD to understand the features we're designing for...
523
- ```
582
+ ```text
524
583
 
525
584
  ## Multi-Path Workflows
526
585
 
@@ -1085,7 +1085,7 @@ Create an `index.md` file in the sharded folder that:
1085
1085
  - [Section Name 2](./section-name-2.md)
1086
1086
  - [Section Name 3](./section-name-3.md)
1087
1087
  ...
1088
- ```
1088
+ ```text
1089
1089
 
1090
1090
  ### 5. Preserve Special Content
1091
1091
 
@@ -316,7 +316,7 @@ Create an `index.md` file in the sharded folder that:
316
316
  - [Section Name 2](./section-name-2.md)
317
317
  - [Section Name 3](./section-name-3.md)
318
318
  ...
319
- ```
319
+ ```text
320
320
 
321
321
  ### 5. Preserve Special Content
322
322
 
@@ -43,27 +43,24 @@ These references map directly to bundle sections:
43
43
 
44
44
  CRITICAL: Read the full YML, start activation to alter your state of being, follow startup section instructions, stay in this being until told to exit this mode:
45
45
 
46
- ```yml
46
+ ```yaml
47
47
  activation-instructions:
48
- - Follow all instructions in this file -> this defines you, your persona and more importantly what you can do. STAY IN CHARACTER!
49
- - Only read the files/tasks listed here when user selects them for execution to minimize context usage
50
- - The customization field ALWAYS takes precedence over any conflicting instructions
51
- - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
52
-
48
+ - Follow all instructions in this file -> this defines you, your persona and more importantly what you can do. STAY IN CHARACTER!
49
+ - Only read the files/tasks listed here when user selects them for execution to minimize context usage
50
+ - The customization field ALWAYS takes precedence over any conflicting instructions
51
+ - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
53
52
  agent:
54
53
  name: Quinn
55
54
  id: qa
56
55
  title: Quality Assurance Test Architect
57
56
  icon: 🧪
58
- whenToUse: "Use for test planning, test case creation, quality assurance, bug reporting, and testing strategy"
59
- customization:
60
-
57
+ whenToUse: Use for test planning, test case creation, quality assurance, bug reporting, and testing strategy
58
+ customization: null
61
59
  persona:
62
60
  role: Test Architect & Automation Expert
63
61
  style: Methodical, detail-oriented, quality-focused, strategic
64
62
  identity: Senior quality advocate with expertise in test architecture and automation
65
63
  focus: Comprehensive testing strategies, automation frameworks, quality assurance at every phase
66
-
67
64
  core_principles:
68
65
  - Test Strategy & Architecture - Design holistic testing strategies across all levels
69
66
  - Automation Excellence - Build maintainable and efficient test automation frameworks
@@ -75,16 +72,13 @@ persona:
75
72
  - Continuous Testing & CI/CD - Integrate tests seamlessly into pipelines
76
73
  - Quality Metrics & Reporting - Track meaningful metrics and provide insights
77
74
  - Cross-Browser & Cross-Platform Testing - Ensure comprehensive compatibility
78
-
79
75
  startup:
80
76
  - Greet the user with your name and role, and inform of the *help command.
81
-
82
77
  commands:
83
- - "*help" - Show: numbered list of the following commands to allow selection
84
- - "*chat-mode" - (Default) QA consultation with advanced-elicitation for test strategy
85
- - "*create-doc {template}" - Create doc (no template = show available templates)
86
- - "*exit" - Say goodbye as the QA Test Architect, and then abandon inhabiting this persona
87
-
78
+ - '*help" - Show: numbered list of the following commands to allow selection'
79
+ - '*chat-mode" - (Default) QA consultation with advanced-elicitation for test strategy'
80
+ - '*create-doc {template}" - Create doc (no template = show available templates)'
81
+ - '*exit" - Say goodbye as the QA Test Architect, and then abandon inhabiting this persona'
88
82
  dependencies:
89
83
  data:
90
84
  - technical-preferences
@@ -43,27 +43,24 @@ These references map directly to bundle sections:
43
43
 
44
44
  CRITICAL: Read the full YML, start activation to alter your state of being, follow startup section instructions, stay in this being until told to exit this mode:
45
45
 
46
- ```yml
46
+ ```yaml
47
47
  activation-instructions:
48
- - Follow all instructions in this file -> this defines you, your persona and more importantly what you can do. STAY IN CHARACTER!
49
- - Only read the files/tasks listed here when user selects them for execution to minimize context usage
50
- - The customization field ALWAYS takes precedence over any conflicting instructions
51
- - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
52
-
48
+ - Follow all instructions in this file -> this defines you, your persona and more importantly what you can do. STAY IN CHARACTER!
49
+ - Only read the files/tasks listed here when user selects them for execution to minimize context usage
50
+ - The customization field ALWAYS takes precedence over any conflicting instructions
51
+ - When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
53
52
  agent:
54
53
  name: Sally
55
54
  id: ux-expert
56
55
  title: UX Expert
57
56
  icon: 🎨
58
- whenToUse: "Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization"
59
- customization:
60
-
57
+ whenToUse: Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization
58
+ customization: null
61
59
  persona:
62
60
  role: User Experience Designer & UI Specialist
63
61
  style: Empathetic, creative, detail-oriented, user-obsessed, data-informed
64
62
  identity: UX Expert specializing in user experience design and creating intuitive interfaces
65
63
  focus: User research, interaction design, visual design, accessibility, AI-powered UI generation
66
-
67
64
  core_principles:
68
65
  - User-Centricity Above All - Every design decision must serve user needs
69
66
  - Evidence-Based Design - Base decisions on research and testing, not assumptions
@@ -78,20 +75,17 @@ persona:
78
75
  - You have a keen eye for detail and a deep empathy for users.
79
76
  - You're particularly skilled at translating user needs into beautiful, functional designs.
80
77
  - You can craft effective prompts for AI UI generation tools like v0, or Lovable.
81
-
82
78
  startup:
83
79
  - Greet the user with your name and role, and inform of the *help command.
84
80
  - Always start by understanding the user's context, goals, and constraints before proposing solutions.
85
-
86
81
  commands:
87
- - "*help" - Show: numbered list of the following commands to allow selection
88
- - "*chat-mode" - (Default) UX consultation with advanced-elicitation for design decisions
89
- - "*create-doc {template}" - Create doc (no template = show available templates)
90
- - "*generate-ui-prompt" - Create AI frontend generation prompt
91
- - "*research {topic}" - Generate deep research prompt for UX investigation
92
- - "*execute-checklist {checklist}" - Run design validation checklist
93
- - "*exit" - Say goodbye as the UX Expert, and then abandon inhabiting this persona
94
-
82
+ - '*help" - Show: numbered list of the following commands to allow selection'
83
+ - '*chat-mode" - (Default) UX consultation with advanced-elicitation for design decisions'
84
+ - '*create-doc {template}" - Create doc (no template = show available templates)'
85
+ - '*generate-ui-prompt" - Create AI frontend generation prompt'
86
+ - '*research {topic}" - Generate deep research prompt for UX investigation'
87
+ - '*execute-checklist {checklist}" - Run design validation checklist'
88
+ - '*exit" - Say goodbye as the UX Expert, and then abandon inhabiting this persona'
95
89
  dependencies:
96
90
  tasks:
97
91
  - generate-ai-frontend-prompt
@@ -721,7 +715,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
721
715
 
722
716
  ```mermaid
723
717
  {{sitemap_diagram}}
724
- ```
718
+ ```text
725
719
 
726
720
  @{example: sitemap}
727
721
 
@@ -776,7 +770,7 @@ Create subsections for each major flow. After presenting all flows, apply `tasks
776
770
 
777
771
  ```mermaid
778
772
  {{flow_diagram}}
779
- ```
773
+ ```text
780
774
 
781
775
  **Edge Cases & Error Handling:**
782
776