bmad-method 4.26.0 → 4.27.0

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 (55) hide show
  1. package/.vscode/settings.json +2 -0
  2. package/CHANGELOG.md +15 -0
  3. package/README.md +29 -282
  4. package/bmad-core/agents/analyst.md +3 -1
  5. package/bmad-core/agents/bmad-master.md +5 -1
  6. package/bmad-core/agents/bmad-orchestrator.md +1 -1
  7. package/bmad-core/core-config.yaml +1 -1
  8. package/bmad-core/data/bmad-kb.md +74 -15
  9. package/bmad-core/data/brainstorming-techniques.md +36 -0
  10. package/bmad-core/data/elicitation-methods.md +134 -0
  11. package/bmad-core/tasks/advanced-elicitation.md +82 -57
  12. package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
  13. package/bmad-core/templates/architecture-tmpl.md +23 -23
  14. package/bmad-core/templates/brainstorming-output-tmpl.md +149 -0
  15. package/bmad-core/templates/prd-tmpl.md +6 -6
  16. package/bmad-core/templates/prd-tmpl2.yaml +202 -0
  17. package/bmad-core/utils/plan-management.md +9 -13
  18. package/bmad-core/workflows/greenfield-service.yaml +1 -1
  19. package/common/tasks/create-doc.md +4 -4
  20. package/common/tasks/create-doc2.md +65 -0
  21. package/common/utils/bmad-doc-template.md +296 -0
  22. package/dist/agents/analyst.txt +481 -305
  23. package/dist/agents/architect.txt +60 -59
  24. package/dist/agents/bmad-master.txt +694 -399
  25. package/dist/agents/bmad-orchestrator.txt +197 -116
  26. package/dist/agents/dev.txt +18 -17
  27. package/dist/agents/pm.txt +47 -46
  28. package/dist/agents/po.txt +31 -30
  29. package/dist/agents/qa.txt +15 -14
  30. package/dist/agents/sm.txt +23 -22
  31. package/dist/agents/ux-expert.txt +29 -28
  32. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +33 -32
  33. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +19 -18
  34. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +21 -20
  35. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +385 -297
  36. package/dist/expansion-packs/bmad-creator-tools/agents/bmad-the-creator.txt +103 -77
  37. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +29 -28
  38. package/dist/teams/team-all.txt +610 -438
  39. package/dist/teams/team-fullstack.txt +597 -425
  40. package/dist/teams/team-ide-minimal.txt +238 -157
  41. package/dist/teams/team-no-ui.txt +583 -411
  42. package/docs/agentic-tools/github-copilot-guide.md +29 -9
  43. package/docs/bmad-workflow-guide.md +2 -2
  44. package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +1 -1
  45. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +2 -2
  46. package/expansion-packs/bmad-creator-tools/config.yaml +1 -1
  47. package/expansion-packs/bmad-infrastructure-devops/config.yaml +1 -1
  48. package/package.json +1 -1
  49. package/tools/builders/web-builder.js +117 -22
  50. package/tools/installer/config/install.config.yaml +2 -2
  51. package/tools/installer/lib/ide-setup.js +2 -2
  52. package/tools/installer/package.json +1 -1
  53. package/tools/lib/dependency-resolver.js +3 -3
  54. package/tools/md-assets/web-agent-startup-instructions.md +10 -10
  55. package/bmad-core/tasks/brainstorming-techniques.md +0 -238
@@ -8,14 +8,14 @@ You are now operating as a specialized AI agent from the BMad-Method framework.
8
8
 
9
9
  2. **Resource Navigation**: This bundle contains all resources you need. Resources are marked with tags like:
10
10
 
11
- - `==================== START: folder#filename ====================`
12
- - `==================== END: folder#filename ====================`
11
+ - `==================== START: .bmad-core/folder/filename.md ====================`
12
+ - `==================== END: .bmad-core/folder/filename.md ====================`
13
13
 
14
14
  When you need to reference a resource mentioned in your instructions:
15
15
 
16
16
  - Look for the corresponding START/END tags
17
- - The format is always `folder#filename` (e.g., `personas#analyst`, `tasks#create-story`)
18
- - If a section is specified (e.g., `tasks#create-story#section-name`), navigate to that section within the file
17
+ - The format is always the full path with dot prefix (e.g., `.bmad-core/personas/analyst.md`, `.bmad-core/tasks/create-story.md`)
18
+ - If a section is specified (e.g., `{root}/tasks/create-story.md#section-name`), navigate to that section within the file
19
19
 
20
20
  **Understanding YAML References**: In the agent configuration, resources are referenced in the dependencies section. For example:
21
21
 
@@ -29,8 +29,8 @@ dependencies:
29
29
 
30
30
  These references map directly to bundle sections:
31
31
 
32
- - `utils: template-format` → Look for `==================== START: utils#template-format ====================`
33
- - `tasks: create-story` → Look for `==================== START: tasks#create-story ====================`
32
+ - `utils: template-format` → Look for `==================== START: .bmad-core/utils/template-format.md ====================`
33
+ - `tasks: create-story` → Look for `==================== START: .bmad-core/tasks/create-story.md ====================`
34
34
 
35
35
  3. **Execution Context**: You are operating in a web environment. All your capabilities and knowledge are contained within this bundle. Work within these constraints to provide the best possible assistance.
36
36
 
@@ -38,7 +38,8 @@ These references map directly to bundle sections:
38
38
 
39
39
  ---
40
40
 
41
- ==================== START: agents#analyst ====================
41
+
42
+ ==================== START: .bmad-core/agents/analyst.md ====================
42
43
  # analyst
43
44
 
44
45
  CRITICAL: Read the full YAML, start activation to alter your state of being, follow startup section instructions, stay in this being until told to exit this mode:
@@ -88,7 +89,7 @@ commands:
88
89
  - exit: Say goodbye as the Business Analyst, and then abandon inhabiting this persona
89
90
  dependencies:
90
91
  tasks:
91
- - brainstorming-techniques
92
+ - facilitate-brainstorming-session
92
93
  - create-deep-research-prompt
93
94
  - create-doc
94
95
  - advanced-elicitation
@@ -97,255 +98,155 @@ dependencies:
97
98
  - project-brief-tmpl
98
99
  - market-research-tmpl
99
100
  - competitor-analysis-tmpl
101
+ - brainstorming-output-tmpl
100
102
  data:
101
103
  - bmad-kb
104
+ - brainstorming-techniques
102
105
  utils:
103
106
  - template-format
104
107
  ```
105
- ==================== END: agents#analyst ====================
106
-
107
- ==================== START: tasks#brainstorming-techniques ====================
108
- # Brainstorming Techniques Task
109
-
110
- This task provides a comprehensive toolkit of creative brainstorming techniques for ideation and innovative thinking. The analyst can use these techniques to facilitate productive brainstorming sessions with users.
111
-
112
- ## Process
113
-
114
- ### 1. Session Setup
115
-
116
- [[LLM: Begin by understanding the brainstorming context and goals. Ask clarifying questions if needed to determine the best approach.]]
117
-
118
- 1. **Establish Context**
119
-
120
- - Understand the problem space or opportunity area
121
- - Identify any constraints or parameters
122
- - Determine session goals (divergent exploration vs. focused ideation)
123
-
124
- 2. **Select Technique Approach**
125
- - Option A: User selects specific techniques
126
- - Option B: Analyst recommends techniques based on context
127
- - Option C: Random technique selection for creative variety
128
- - Option D: Progressive technique flow (start broad, narrow down)
129
-
130
- ### 2. Core Brainstorming Techniques
131
-
132
- #### Creative Expansion Techniques
133
-
134
- 1. **"What If" Scenarios**
135
- [[LLM: Generate provocative what-if questions that challenge assumptions and expand thinking beyond current limitations.]]
136
-
137
- - What if we had unlimited resources?
138
- - What if this problem didn't exist?
139
- - What if we approached this from a child's perspective?
140
- - What if we had to solve this in 24 hours?
141
-
142
- 2. **Analogical Thinking**
143
- [[LLM: Help user draw parallels between their challenge and other domains, industries, or natural systems.]]
144
-
145
- - "How might this work like [X] but for [Y]?"
146
- - Nature-inspired solutions (biomimicry)
147
- - Cross-industry pattern matching
148
- - Historical precedent analysis
149
-
150
- 3. **Reversal/Inversion**
151
- [[LLM: Flip the problem or approach it from the opposite angle to reveal new insights.]]
152
-
153
- - What if we did the exact opposite?
154
- - How could we make this problem worse? (then reverse)
155
- - Start from the end goal and work backward
156
- - Reverse roles or perspectives
157
-
158
- 4. **First Principles Thinking**
159
- [[LLM: Break down to fundamental truths and rebuild from scratch.]]
160
- - What are the absolute fundamentals here?
161
- - What assumptions can we challenge?
162
- - If we started from zero, what would we build?
163
- - What laws of physics/economics/human nature apply?
164
-
165
- #### Structured Ideation Frameworks
166
-
167
- 1. **SCAMPER Method**
168
- [[LLM: Guide through each SCAMPER prompt systematically.]]
169
-
170
- - **S** = Substitute: What can be substituted?
171
- - **C** = Combine: What can be combined or integrated?
172
- - **A** = Adapt: What can be adapted from elsewhere?
173
- - **M** = Modify/Magnify: What can be emphasized or reduced?
174
- - **P** = Put to other uses: What else could this be used for?
175
- - **E** = Eliminate: What can be removed or simplified?
176
- - **R**= Reverse/Rearrange: What can be reversed or reordered?
177
-
178
- 2. **Six Thinking Hats**
179
- [[LLM: Cycle through different thinking modes, spending focused time in each.]]
180
-
181
- - White Hat: Facts and information
182
- - Red Hat: Emotions and intuition
183
- - Black Hat: Caution and critical thinking
184
- - Yellow Hat: Optimism and benefits
185
- - Green Hat: Creativity and alternatives
186
- - Blue Hat: Process and control
187
-
188
- 3. **Mind Mapping**
189
- [[LLM: Create text-based mind maps with clear hierarchical structure.]]
190
-
191
- ```plaintext
192
- Central Concept
193
- ├── Branch 1
194
- │ ├── Sub-idea 1.1
195
- │ └── Sub-idea 1.2
196
- ├── Branch 2
197
- │ ├── Sub-idea 2.1
198
- │ └── Sub-idea 2.2
199
- └── Branch 3
200
- └── Sub-idea 3.1
201
- ```
202
-
203
- #### Collaborative Techniques
204
-
205
- 1. **"Yes, And..." Building**
206
- [[LLM: Accept every idea and build upon it without judgment. Encourage wild ideas and defer criticism.]]
207
-
208
- - Accept the premise of each idea
209
- - Add to it with "Yes, and..."
210
- - Build chains of connected ideas
211
- - Explore tangents freely
108
+ ==================== END: .bmad-core/agents/analyst.md ====================
212
109
 
213
- 2. **Brainwriting/Round Robin**
214
- [[LLM: Simulate multiple perspectives by generating ideas from different viewpoints.]]
110
+ ==================== START: .bmad-core/tasks/facilitate-brainstorming-session.md ====================
111
+ ---
112
+ docOutputLocation: docs/brainstorming-session-results.md
113
+ template: brainstorming-output-tmpl
114
+ ---
215
115
 
216
- - Generate ideas from stakeholder perspectives
217
- - Build on previous ideas in rounds
218
- - Combine unrelated ideas
219
- - Cross-pollinate concepts
116
+ # Facilitate Brainstorming Session Task
220
117
 
221
- 3. **Random Stimulation**
222
- [[LLM: Use random words, images, or concepts as creative triggers.]]
223
- - Random word association
224
- - Picture/metaphor inspiration
225
- - Forced connections between unrelated items
226
- - Constraint-based creativity
118
+ Facilitate interactive brainstorming sessions with users. Be creative and adaptive in applying techniques.
227
119
 
228
- #### Deep Exploration Techniques
120
+ ## Process
229
121
 
230
- 1. **Five Whys**
231
- [[LLM: Dig deeper into root causes and underlying motivations.]]
122
+ ### Step 1: Session Setup
232
123
 
233
- - Why does this problem exist? Answer → Why? (repeat 5 times)
234
- - Uncover hidden assumptions
235
- - Find root causes, not symptoms
236
- - Identify intervention points
124
+ Ask 4 context questions (don't preview what happens next):
237
125
 
238
- 2. **Morphological Analysis**
239
- [[LLM: Break down into parameters and systematically explore combinations.]]
126
+ 1. What are we brainstorming about?
127
+ 2. Any constraints or parameters?
128
+ 3. Goal: broad exploration or focused ideation?
129
+ 4. Do you want a structured document output to reference later? (Y/N)
240
130
 
241
- - List key parameters/dimensions
242
- - Identify possible values for each
243
- - Create combination matrix
244
- - Explore unusual combinations
131
+ ### Step 2: Present Approach Options
245
132
 
246
- 3. **Provocation Technique (PO)**
247
- [[LLM: Make deliberately provocative statements to jar thinking.]]
248
- - PO: Cars have square wheels
249
- - PO: Customers pay us to take products
250
- - PO: The problem solves itself
251
- - Extract useful ideas from provocations
133
+ After getting answers to Step 1, present 4 approach options (numbered):
252
134
 
253
- ### 3. Technique Selection Guide
135
+ 1. User selects specific techniques
136
+ 2. Analyst recommends techniques based on context
137
+ 3. Random technique selection for creative variety
138
+ 4. Progressive technique flow (start broad, narrow down)
254
139
 
255
- [[LLM: Help user select appropriate techniques based on their needs.]]
140
+ ### Step 3: Execute Techniques Interactively
256
141
 
257
- **For Initial Exploration:**
142
+ **KEY PRINCIPLES:**
258
143
 
259
- - What If Scenarios
260
- - First Principles
261
- - Mind Mapping
144
+ - **FACILITATOR ROLE**: Guide user to generate their own ideas through questions, prompts, and examples
145
+ - **CONTINUOUS ENGAGEMENT**: Keep user engaged with chosen technique until they want to switch or are satisfied
146
+ - **CAPTURE OUTPUT**: If document output requested, capture all ideas generated in each technique section
262
147
 
263
- **For Stuck/Blocked Thinking:**
148
+ **Technique Selection:**
149
+ If user selects Option 1, present numbered list of techniques from the brainstorming-techniques data file. User can select by number (e.g., "7" for Mind Mapping).
264
150
 
265
- - Random Stimulation
266
- - Reversal/Inversion
267
- - Provocation Technique
151
+ **Technique Execution:**
268
152
 
269
- **For Systematic Coverage:**
153
+ 1. Apply selected technique according to data file description
154
+ 2. Keep engaging with technique until user indicates they want to:
155
+ - Choose a different technique
156
+ - Apply current ideas to a new technique
157
+ - Move to convergent phase
158
+ - End session
270
159
 
271
- - SCAMPER
272
- - Morphological Analysis
273
- - Six Thinking Hats
160
+ **Output Capture (if requested):**
161
+ For each technique used, capture:
274
162
 
275
- **For Deep Understanding:**
163
+ - Technique name and duration
164
+ - Key ideas generated by user
165
+ - Insights and patterns identified
166
+ - User's reflections on the process
276
167
 
277
- - Five Whys
278
- - Analogical Thinking
279
- - First Principles
168
+ ### Step 4: Session Flow
280
169
 
281
- **For Team/Collaborative Settings:**
170
+ 1. **Warm-up** (5-10 min) - Build creative confidence
171
+ 2. **Divergent** (20-30 min) - Generate quantity over quality
172
+ 3. **Convergent** (15-20 min) - Group and categorize ideas
173
+ 4. **Synthesis** (10-15 min) - Refine and develop concepts
282
174
 
283
- - Brainwriting
284
- - "Yes, And..."
285
- - Six Thinking Hats
175
+ ### Step 5: Document Output (if requested)
286
176
 
287
- ### 4. Session Flow Management
177
+ Generate structured document with these sections:
288
178
 
289
- [[LLM: Guide the brainstorming session with appropriate pacing and technique transitions.]]
179
+ **Executive Summary**
290
180
 
291
- 1. **Warm-up Phase** (5-10 min)
181
+ - Session topic and goals
182
+ - Techniques used and duration
183
+ - Total ideas generated
184
+ - Key themes and patterns identified
292
185
 
293
- - Start with accessible techniques
294
- - Build creative confidence
295
- - Establish "no judgment" atmosphere
186
+ **Technique Sections** (for each technique used)
296
187
 
297
- 2. **Divergent Phase** (20-30 min)
188
+ - Technique name and description
189
+ - Ideas generated (user's own words)
190
+ - Insights discovered
191
+ - Notable connections or patterns
298
192
 
299
- - Use expansion techniques
300
- - Generate quantity over quality
301
- - Encourage wild ideas
193
+ **Idea Categorization**
302
194
 
303
- 3. **Convergent Phase** (15-20 min)
195
+ - **Immediate Opportunities** - Ready to implement now
196
+ - **Future Innovations** - Requires development/research
197
+ - **Moonshots** - Ambitious, transformative concepts
198
+ - **Insights & Learnings** - Key realizations from session
304
199
 
305
- - Group and categorize ideas
306
- - Identify patterns and themes
307
- - Select promising directions
200
+ **Action Planning**
308
201
 
309
- 4. **Synthesis Phase** (10-15 min)
310
- - Combine complementary ideas
311
- - Refine and develop concepts
312
- - Prepare summary of insights
202
+ - Top 3 priority ideas with rationale
203
+ - Next steps for each priority
204
+ - Resources/research needed
205
+ - Timeline considerations
313
206
 
314
- ### 5. Output Format
207
+ **Reflection & Follow-up**
315
208
 
316
- [[LLM: Present brainstorming results in an organized, actionable format.]]
209
+ - What worked well in this session
210
+ - Areas for further exploration
211
+ - Recommended follow-up techniques
212
+ - Questions that emerged for future sessions
213
+
214
+ ## Key Principles
215
+
216
+ - **YOU ARE A FACILITATOR**: Guide the user to brainstorm, don't brainstorm for them
217
+ - **INTERACTIVE DIALOGUE**: Ask questions, wait for responses, build on their ideas
218
+ - **ONE TECHNIQUE AT A TIME**: Don't mix multiple techniques in one response
219
+ - **CONTINUOUS ENGAGEMENT**: Stay with one technique until user wants to switch
220
+ - **DRAW IDEAS OUT**: Use prompts and examples to help them generate their own ideas
221
+ - **REAL-TIME ADAPTATION**: Monitor engagement and adjust approach as needed
222
+ - Maintain energy and momentum
223
+ - Defer judgment during generation
224
+ - Quantity leads to quality (aim for 100 ideas in 60 minutes)
225
+ - Build on ideas collaboratively
226
+ - Document everything if output requested
317
227
 
318
- **Session Summary:**
228
+ ## Advanced Engagement Strategies
319
229
 
320
- - Techniques used
321
- - Number of ideas generated
322
- - Key themes identified
230
+ **Energy Management**
323
231
 
324
- **Idea Categories:**
232
+ - Check engagement levels: "How are you feeling about this direction?"
233
+ - Offer breaks or technique switches if energy flags
234
+ - Use encouraging language and celebrate idea generation
325
235
 
326
- 1. **Immediate Opportunities** - Ideas that could be implemented now
327
- 2. **Future Innovations** - Ideas requiring more development
328
- 3. **Moonshots** - Ambitious, transformative ideas
329
- 4. **Insights & Learnings** - Key realizations from the session
236
+ **Depth vs. Breadth**
330
237
 
331
- **Next Steps:**
238
+ - Ask follow-up questions to deepen ideas: "Tell me more about that..."
239
+ - Use "Yes, and..." to build on their ideas
240
+ - Help them make connections: "How does this relate to your earlier idea about...?"
332
241
 
333
- - Which ideas to explore further
334
- - Recommended follow-up techniques
335
- - Suggested research areas
242
+ **Transition Management**
336
243
 
337
- ## Important Notes
338
-
339
- - Maintain energy and momentum throughout the session
340
- - Defer judgment - all ideas are valid during generation
341
- - Quantity leads to quality - aim for many ideas
342
- - Build on ideas collaboratively
343
- - Document everything - even "silly" ideas can spark breakthroughs
344
- - Take breaks if energy flags
345
- - End with clear next actions
346
- ==================== END: tasks#brainstorming-techniques ====================
244
+ - Always ask before switching techniques: "Ready to try a different approach?"
245
+ - Offer options: "Should we explore this idea deeper or generate more alternatives?"
246
+ - Respect their process and timing
247
+ ==================== END: .bmad-core/tasks/facilitate-brainstorming-session.md ====================
347
248
 
348
- ==================== START: tasks#create-deep-research-prompt ====================
249
+ ==================== START: .bmad-core/tasks/create-deep-research-prompt.md ====================
349
250
  # Create Deep Research Prompt Task
350
251
 
351
252
  This task helps create comprehensive research prompts for various types of deep analysis. It can process inputs from brainstorming sessions, project briefs, market research, or specific research questions to generate targeted prompts for deeper investigation.
@@ -647,9 +548,9 @@ Present these numbered options to the user:
647
548
  - Balance comprehensiveness with focus
648
549
  - Document assumptions and limitations clearly
649
550
  - Plan for iterative refinement based on initial findings
650
- ==================== END: tasks#create-deep-research-prompt ====================
551
+ ==================== END: .bmad-core/tasks/create-deep-research-prompt.md ====================
651
552
 
652
- ==================== START: tasks#create-doc ====================
553
+ ==================== START: .bmad-core/tasks/create-doc.md ====================
653
554
  # Create Document from Template Task
654
555
 
655
556
  ## Purpose
@@ -669,7 +570,7 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
669
570
 
670
571
  [[LLM: Check if plan tracking is enabled in core-config.yaml]]
671
572
 
672
- - If `workflow.trackProgress: true`, check for active plan using utils#plan-management
573
+ - If `workflow.trackProgress: true`, check for active plan using .bmad-core/utils/plan-management.md
673
574
  - If plan exists and this document creation is part of the plan:
674
575
  - Verify this is the expected next step
675
576
  - If out of sequence and `enforceSequence: true`, warn user and halt without user override
@@ -678,7 +579,7 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
678
579
 
679
580
  ### 1. Identify Template
680
581
 
681
- - Load from `templates#*` or `{root}/templates directory`
582
+ - Load from `.bmad-core/templates/*.md` or `.bmad-core/templates directory`
682
583
  - Agent-specific templates are listed in agent's dependencies
683
584
  - If agent has `templates: [prd-tmpl, architecture-tmpl]` for example, then offer to create "PRD" and "Architecture" documents
684
585
 
@@ -696,14 +597,14 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
696
597
 
697
598
  ### 4. Key Execution Patterns
698
599
 
699
- **When you see:** `[[LLM: Draft X and immediately execute tasks#advanced-elicitation]]`
600
+ **When you see:** `[[LLM: Draft X and immediately execute .bmad-core/tasks/advanced-elicitation.md]]`
700
601
 
701
602
  - Draft the content
702
603
  - Present it to user
703
604
  - IMMEDIATELY execute the task
704
605
  - Wait for completion before continuing
705
606
 
706
- **When you see:** `[[LLM: After section completion, apply tasks#Y]]`
607
+ **When you see:** `[[LLM: After section completion, apply .bmad-core/tasks/Y.md]]`
707
608
 
708
609
  - Finish the section
709
610
  - STOP and execute the task
@@ -741,9 +642,9 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
741
642
  ## Remember
742
643
 
743
644
  Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
744
- ==================== END: tasks#create-doc ====================
645
+ ==================== END: .bmad-core/tasks/create-doc.md ====================
745
646
 
746
- ==================== START: tasks#advanced-elicitation ====================
647
+ ==================== START: .bmad-core/tasks/advanced-elicitation.md ====================
747
648
  # Advanced Elicitation Task
748
649
 
749
650
  ## Purpose
@@ -751,94 +652,119 @@ Templates contain precise instructions for a reason. Follow them exactly to ensu
751
652
  - Provide optional reflective and brainstorming actions to enhance content quality
752
653
  - Enable deeper exploration of ideas through structured elicitation techniques
753
654
  - Support iterative refinement through multiple analytical perspectives
655
+ - Usable during template-driven document creation or any chat conversation
754
656
 
755
- ## Task Instructions
657
+ ## Usage Scenarios
756
658
 
757
- ### 1. Section Context and Review
659
+ ### Scenario 1: Template Document Creation
758
660
 
759
- [[LLM: When invoked after outputting a section:
661
+ After outputting a section during document creation:
760
662
 
761
- 1. First, provide a brief 1-2 sentence summary of what the user should look for in the section just presented (e.g., "Please review the technology choices for completeness and alignment with your project needs. Pay special attention to version numbers and any missing categories.")
663
+ 1. **Section Review**: Ask user to review the drafted section
664
+ 2. **Offer Elicitation**: Present 9 carefully selected elicitation methods
665
+ 3. **Simple Selection**: User types a number (0-8) to engage method, or 9 to proceed
666
+ 4. **Execute & Loop**: Apply selected method, then re-offer choices until user proceeds
762
667
 
763
- 2. If the section contains Mermaid diagrams, explain each diagram briefly before offering elicitation options (e.g., "The component diagram shows the main system modules and their interactions. Notice how the API Gateway routes requests to different services.")
668
+ ### Scenario 2: General Chat Elicitation
764
669
 
765
- 3. If the section contains multiple distinct items (like multiple components, multiple patterns, etc.), inform the user they can apply elicitation actions to:
670
+ User can request advanced elicitation on any agent output:
766
671
 
767
- - The entire section as a whole
768
- - Individual items within the section (specify which item when selecting an action)
672
+ - User says "do advanced elicitation" or similar
673
+ - Agent selects 9 relevant methods for the context
674
+ - Same simple 0-9 selection process
769
675
 
770
- 4. Then present the action list as specified below.]]
676
+ ## Task Instructions
771
677
 
772
- ### 2. Ask for Review and Present Action List
678
+ ### 1. Intelligent Method Selection
773
679
 
774
- [[LLM: Ask the user to review the drafted section. In the SAME message, inform them that they can suggest additions, removals, or modifications, OR they can select an action by number from the 'Advanced Reflective, Elicitation & Brainstorming Actions'. If there are multiple items in the section, mention they can specify which item(s) to apply the action to. Then, present ONLY the numbered list (0-9) of these actions. Conclude by stating that selecting 9 will proceed to the next section. Await user selection. If an elicitation action (0-8) is chosen, execute it and then re-offer this combined review/elicitation choice. If option 9 is chosen, or if the user provides direct feedback, proceed accordingly.]]
680
+ **Context Analysis**: Before presenting options, analyze:
775
681
 
776
- **Present the numbered list (0-9) with this exact format:**
682
+ - **Content Type**: Technical specs, user stories, architecture, requirements, etc.
683
+ - **Complexity Level**: Simple, moderate, or complex content
684
+ - **Stakeholder Needs**: Who will use this information
685
+ - **Risk Level**: High-impact decisions vs routine items
686
+ - **Creative Potential**: Opportunities for innovation or alternatives
777
687
 
778
- ```text
779
- **Advanced Reflective, Elicitation & Brainstorming Actions**
780
- Choose an action (0-9 - 9 to bypass - HELP for explanation of these options):
781
-
782
- 0. Expand or Contract for Audience
783
- 1. Explain Reasoning (CoT Step-by-Step)
784
- 2. Critique and Refine
785
- 3. Analyze Logical Flow and Dependencies
786
- 4. Assess Alignment with Overall Goals
787
- 5. Identify Potential Risks and Unforeseen Issues
788
- 6. Challenge from Critical Perspective (Self or Other Persona)
789
- 7. Explore Diverse Alternatives (ToT-Inspired)
790
- 8. Hindsight is 20/20: The 'If Only...' Reflection
791
- 9. Proceed / No Further Actions
792
- ```
688
+ **Method Selection Strategy**:
793
689
 
794
- ### 2. Processing Guidelines
690
+ 1. **Always Include Core Methods** (choose 3-4):
691
+ - Expand or Contract for Audience
692
+ - Critique and Refine
693
+ - Identify Potential Risks
694
+ - Assess Alignment with Goals
795
695
 
796
- **Do NOT show:**
696
+ 2. **Context-Specific Methods** (choose 4-5):
697
+ - **Technical Content**: Tree of Thoughts, ReWOO, Meta-Prompting
698
+ - **User-Facing Content**: Agile Team Perspective, Stakeholder Roundtable
699
+ - **Creative Content**: Innovation Tournament, Escape Room Challenge
700
+ - **Strategic Content**: Red Team vs Blue Team, Hindsight Reflection
797
701
 
798
- - The full protocol text with `[[LLM: ...]]` instructions
799
- - Detailed explanations of each option unless executing or the user asks, when giving the definition you can modify to tie its relevance
800
- - Any internal template markup
702
+ 3. **Always Include**: "Proceed / No Further Actions" as option 9
801
703
 
802
- **After user selection from the list:**
704
+ ### 2. Section Context and Review
803
705
 
804
- - Execute the chosen action according to the protocol instructions below
805
- - Ask if they want to select another action or proceed with option 9 once complete
806
- - Continue until user selects option 9 or indicates completion
706
+ When invoked after outputting a section:
807
707
 
808
- ## Action Definitions
708
+ 1. **Provide Context Summary**: Give a brief 1-2 sentence summary of what the user should look for in the section just presented
809
709
 
810
- 0. Expand or Contract for Audience
811
- [[LLM: Ask the user whether they want to 'expand' on the content (add more detail, elaborate) or 'contract' it (simplify, clarify, make more concise). Also, ask if there's a specific target audience they have in mind. Once clarified, perform the expansion or contraction from your current role's perspective, tailored to the specified audience if provided.]]
710
+ 2. **Explain Visual Elements**: If the section contains diagrams, explain them briefly before offering elicitation options
812
711
 
813
- 1. Explain Reasoning (CoT Step-by-Step)
814
- [[LLM: Explain the step-by-step thinking process, characteristic of your role, that you used to arrive at the current proposal for this content.]]
712
+ 3. **Clarify Scope Options**: If the section contains multiple distinct items, inform the user they can apply elicitation actions to:
713
+ - The entire section as a whole
714
+ - Individual items within the section (specify which item when selecting an action)
815
715
 
816
- 2. Critique and Refine
817
- [[LLM: From your current role's perspective, review your last output or the current section for flaws, inconsistencies, or areas for improvement, and then suggest a refined version reflecting your expertise.]]
716
+ ### 3. Present Elicitation Options
818
717
 
819
- 3. Analyze Logical Flow and Dependencies
820
- [[LLM: From your role's standpoint, examine the content's structure for logical progression, internal consistency, and any relevant dependencies. Confirm if elements are presented in an effective order.]]
718
+ **Review Request Process:**
821
719
 
822
- 4. Assess Alignment with Overall Goals
823
- [[LLM: Evaluate how well the current content contributes to the stated overall goals of the document, interpreting this from your specific role's perspective and identifying any misalignments you perceive.]]
720
+ - Ask the user to review the drafted section
721
+ - In the SAME message, inform them they can suggest direct changes OR select an elicitation method
722
+ - Present 9 intelligently selected methods (0-8) plus "Proceed" (9)
723
+ - Keep descriptions short - just the method name
724
+ - Await simple numeric selection
824
725
 
825
- 5. Identify Potential Risks and Unforeseen Issues
826
- [[LLM: Based on your role's expertise, brainstorm potential risks, overlooked edge cases, or unintended consequences related to the current content or proposal.]]
726
+ **Action List Presentation Format:**
827
727
 
828
- 6. Challenge from Critical Perspective (Self or Other Persona)
829
- [[LLM: Adopt a critical perspective on the current content. If the user specifies another role or persona (e.g., 'as a customer', 'as [Another Persona Name]'), critique the content or play devil's advocate from that specified viewpoint. If no other role is specified, play devil's advocate from your own current persona's viewpoint, arguing against the proposal or current content and highlighting weaknesses or counterarguments specific to your concerns. This can also randomly include YAGNI when appropriate, such as when trimming the scope of an MVP, the perspective might challenge the need for something to cut MVP scope.]]
728
+ ```text
729
+ **Advanced Elicitation Options**
730
+ Choose a number (0-8) or 9 to proceed:
731
+
732
+ 0. [Method Name]
733
+ 1. [Method Name]
734
+ 2. [Method Name]
735
+ 3. [Method Name]
736
+ 4. [Method Name]
737
+ 5. [Method Name]
738
+ 6. [Method Name]
739
+ 7. [Method Name]
740
+ 8. [Method Name]
741
+ 9. Proceed / No Further Actions
742
+ ```
830
743
 
831
- 7. Explore Diverse Alternatives (ToT-Inspired)
832
- [[LLM: From your role's perspective, first broadly brainstorm a range of diverse approaches or solutions to the current topic. Then, from this wider exploration, select and present 2 distinct alternatives, detailing the pros, cons, and potential implications you foresee for each.]]
744
+ **Response Handling:**
833
745
 
834
- 8. Hindsight is 20/20: The 'If Only...' Reflection
835
- [[LLM: In your current persona, imagine it's a retrospective for a project based on the current content. What's the one 'if only we had known/done X...' that your role would humorously or dramatically highlight, along with the imagined consequences?]]
746
+ - **Numbers 0-8**: Execute the selected method, then re-offer the choice
747
+ - **Number 9**: Proceed to next section or continue conversation
748
+ - **Direct Feedback**: Apply user's suggested changes and continue
836
749
 
837
- 9. Proceed / No Further Actions
838
- [[LLM: Acknowledge the user's choice to finalize the current work, accept the AI's last output as is, or move on to the next step without selecting another action from this list. Prepare to proceed accordingly.]]
839
- ==================== END: tasks#advanced-elicitation ====================
750
+ ### 4. Method Execution Framework
840
751
 
841
- ==================== START: tasks#document-project ====================
752
+ **Execution Process:**
753
+
754
+ 1. **Retrieve Method**: Access the specific elicitation method from the elicitation-methods data file
755
+ 2. **Apply Context**: Execute the method from your current role's perspective
756
+ 3. **Provide Results**: Deliver insights, critiques, or alternatives relevant to the content
757
+ 4. **Re-offer Choice**: Present the same 9 options again until user selects 9 or gives direct feedback
758
+
759
+ **Execution Guidelines:**
760
+
761
+ - **Be Concise**: Focus on actionable insights, not lengthy explanations
762
+ - **Stay Relevant**: Tie all elicitation back to the specific content being analyzed
763
+ - **Identify Personas**: For multi-persona methods, clearly identify which viewpoint is speaking
764
+ - **Maintain Flow**: Keep the process moving efficiently
765
+ ==================== END: .bmad-core/tasks/advanced-elicitation.md ====================
766
+
767
+ ==================== START: .bmad-core/tasks/document-project.md ====================
842
768
  # Document an Existing Project
843
769
 
844
770
  ## Purpose
@@ -1156,9 +1082,9 @@ Apply the advanced elicitation task after major sections to refine based on user
1156
1082
  - Documents technical debt, workarounds, and constraints honestly
1157
1083
  - For brownfield projects with PRD: Provides clear enhancement impact analysis
1158
1084
  - The goal is PRACTICAL documentation for AI agents doing real work
1159
- ==================== END: tasks#document-project ====================
1085
+ ==================== END: .bmad-core/tasks/document-project.md ====================
1160
1086
 
1161
- ==================== START: templates#project-brief-tmpl ====================
1087
+ ==================== START: .bmad-core/templates/project-brief-tmpl.md ====================
1162
1088
  ---
1163
1089
  defaultOutput: docs/brief.md
1164
1090
  ---
@@ -1391,9 +1317,9 @@ This Project Brief provides the full context for {{Project Name}}. Please start
1391
1317
  9. Proceed to next section
1392
1318
 
1393
1319
  These replace the standard elicitation options when working on project brief documents.]]
1394
- ==================== END: templates#project-brief-tmpl ====================
1320
+ ==================== END: .bmad-core/templates/project-brief-tmpl.md ====================
1395
1321
 
1396
- ==================== START: templates#market-research-tmpl ====================
1322
+ ==================== START: .bmad-core/templates/market-research-tmpl.md ====================
1397
1323
  # Market Research Report: {{Project/Product Name}}
1398
1324
 
1399
1325
  [[LLM: The default path and filename unless specified is docs/market-research.md]]
@@ -1657,9 +1583,9 @@ These replace the standard elicitation options when working on project brief doc
1657
1583
  9. Proceed to next section
1658
1584
 
1659
1585
  These replace the standard elicitation options when working on market research documents.]]
1660
- ==================== END: templates#market-research-tmpl ====================
1586
+ ==================== END: .bmad-core/templates/market-research-tmpl.md ====================
1661
1587
 
1662
- ==================== START: templates#competitor-analysis-tmpl ====================
1588
+ ==================== START: .bmad-core/templates/competitor-analysis-tmpl.md ====================
1663
1589
  # Competitive Analysis Report: {{Project/Product Name}}
1664
1590
 
1665
1591
  [[LLM: The default path and filename unless specified is docs/competitor-analysis.md]]
@@ -1951,9 +1877,161 @@ These replace the standard elicitation options when working on market research d
1951
1877
  9. Proceed to next section
1952
1878
 
1953
1879
  These replace the standard elicitation options when working on competitive analysis documents.]]
1954
- ==================== END: templates#competitor-analysis-tmpl ====================
1880
+ ==================== END: .bmad-core/templates/competitor-analysis-tmpl.md ====================
1881
+
1882
+ ==================== START: .bmad-core/templates/brainstorming-output-tmpl.md ====================
1883
+ ---
1884
+ defaultOutput: docs/brainstorming-session-results.md
1885
+ ---
1886
+
1887
+ # Brainstorming Session Results
1888
+
1889
+ **Session Date:** [DATE]
1890
+ **Facilitator:** [Agent Role] [Agent Name]
1891
+ **Participant:** [USER NAME]
1892
+
1893
+ ## Executive Summary
1894
+
1895
+ **Topic:** [SESSION TOPIC]
1896
+
1897
+ **Session Goals:** [STATED GOALS]
1898
+
1899
+ **Techniques Used:** [LIST OF TECHNIQUES AND DURATION]
1900
+
1901
+ **Total Ideas Generated:** [NUMBER]
1902
+
1903
+ **Key Themes Identified:**
1904
+
1905
+ - [THEME 1]
1906
+ - [THEME 2]
1907
+ - [THEME 3]
1908
+
1909
+ ---
1910
+
1911
+ ## Technique Sessions
1912
+
1913
+ ### [TECHNIQUE NAME 1] - [DURATION]
1914
+
1915
+ **Description:** [BRIEF DESCRIPTION OF TECHNIQUE]
1916
+
1917
+ **Ideas Generated:**
1918
+
1919
+ 1. [USER IDEA 1]
1920
+ 2. [USER IDEA 2]
1921
+ 3. [USER IDEA 3]
1922
+ [etc.]
1923
+
1924
+ **Insights Discovered:**
1925
+
1926
+ - [INSIGHT 1]
1927
+ - [INSIGHT 2]
1928
+
1929
+ **Notable Connections:**
1930
+
1931
+ - [CONNECTION OR PATTERN IDENTIFIED]
1932
+
1933
+ ---
1934
+
1935
+ ### [TECHNIQUE NAME 2] - [DURATION]
1936
+
1937
+ [Repeat format for each technique used]
1938
+
1939
+ ---
1940
+
1941
+ ## Idea Categorization
1942
+
1943
+ ### Immediate Opportunities
1944
+
1945
+ *Ideas ready to implement now*
1946
+
1947
+ 1. **[IDEA NAME]**
1948
+ - Description: [BRIEF DESCRIPTION]
1949
+ - Why immediate: [RATIONALE]
1950
+ - Resources needed: [BASIC REQUIREMENTS]
1951
+
1952
+ ### Future Innovations
1953
+
1954
+ *Ideas requiring development/research*
1955
+
1956
+ 1. **[IDEA NAME]**
1957
+ - Description: [BRIEF DESCRIPTION]
1958
+ - Development needed: [WHAT'S REQUIRED]
1959
+ - Timeline estimate: [ROUGH TIMEFRAME]
1960
+
1961
+ ### Moonshots
1962
+
1963
+ *Ambitious, transformative concepts*
1964
+
1965
+ 1. **[IDEA NAME]**
1966
+ - Description: [BRIEF DESCRIPTION]
1967
+ - Transformative potential: [WHY IT'S A MOONSHOT]
1968
+ - Challenges to overcome: [MAJOR OBSTACLES]
1969
+
1970
+ ### Insights & Learnings
1971
+
1972
+ *Key realizations from the session*
1973
+
1974
+ - [INSIGHT 1]: [DESCRIPTION AND IMPLICATIONS]
1975
+ - [INSIGHT 2]: [DESCRIPTION AND IMPLICATIONS]
1976
+
1977
+ ---
1978
+
1979
+ ## Action Planning
1980
+
1981
+ ### Top 3 Priority Ideas
1982
+
1983
+ **#1 Priority: [IDEA NAME]**
1984
+
1985
+ - Rationale: [WHY THIS IS TOP PRIORITY]
1986
+ - Next steps: [SPECIFIC ACTIONS TO TAKE]
1987
+ - Resources needed: [WHAT'S REQUIRED]
1988
+ - Timeline: [WHEN TO START/COMPLETE]
1989
+
1990
+ **#2 Priority: [IDEA NAME]**
1991
+
1992
+ - [Same format]
1993
+
1994
+ **#3 Priority: [IDEA NAME]**
1955
1995
 
1956
- ==================== START: data#bmad-kb ====================
1996
+ - [Same format]
1997
+
1998
+ ---
1999
+
2000
+ ## Reflection & Follow-up
2001
+
2002
+ ### What Worked Well
2003
+
2004
+ - [SUCCESSFUL ASPECT 1]
2005
+ - [SUCCESSFUL ASPECT 2]
2006
+
2007
+ ### Areas for Further Exploration
2008
+
2009
+ - [AREA 1]: [WHY IT NEEDS MORE EXPLORATION]
2010
+ - [AREA 2]: [WHY IT NEEDS MORE EXPLORATION]
2011
+
2012
+ ### Recommended Follow-up Techniques
2013
+
2014
+ - [TECHNIQUE 1]: [WHY IT WOULD BE HELPFUL]
2015
+ - [TECHNIQUE 2]: [WHY IT WOULD BE HELPFUL]
2016
+
2017
+ ### Questions That Emerged
2018
+
2019
+ - [QUESTION 1]
2020
+ - [QUESTION 2]
2021
+ - [QUESTION 3]
2022
+
2023
+ ### Next Session Planning
2024
+
2025
+ - **Suggested topics:** [FOLLOW-UP TOPICS]
2026
+ - **Recommended timeframe:** [WHEN TO RECONVENE]
2027
+ - **Preparation needed:** [WHAT TO RESEARCH/PREPARE]
2028
+
2029
+ ---
2030
+
2031
+ *Session facilitated using the BMAD-METHOD brainstorming framework*
2032
+ ==================== END: .bmad-core/templates/brainstorming-output-tmpl.md ====================
2033
+
2034
+ ==================== START: .bmad-core/data/bmad-kb.md ====================
1957
2035
  # BMad Knowledge Base
1958
2036
 
1959
2037
  ## Overview
@@ -1989,13 +2067,15 @@ BMad transforms you into a "Vibe CEO" - directing a team of specialized AI agent
1989
2067
 
1990
2068
  ### The Two-Phase Approach
1991
2069
 
1992
- **Phase 1: Planning (Web UI - Cost Effective)**
2070
+ #### Phase 1: Planning (Web UI - Cost Effective)
2071
+
1993
2072
  - Use large context windows (Gemini's 1M tokens)
1994
2073
  - Generate comprehensive documents (PRD, Architecture)
1995
2074
  - Leverage multiple agents for brainstorming
1996
2075
  - Create once, use throughout development
1997
2076
 
1998
- **Phase 2: Development (IDE - Implementation)**
2077
+ #### Phase 2: Development (IDE - Implementation)
2078
+
1999
2079
  - Shard documents into manageable pieces
2000
2080
  - Execute focused SM → Dev cycles
2001
2081
  - One story at a time, sequential progress
@@ -2025,6 +2105,7 @@ BMad transforms you into a "Vibe CEO" - directing a team of specialized AI agent
2025
2105
  ### Quick Start Options
2026
2106
 
2027
2107
  #### Option 1: Web UI
2108
+
2028
2109
  **Best for**: ChatGPT, Claude, Gemini users who want to start immediately
2029
2110
 
2030
2111
  1. Navigate to `dist/teams/`
@@ -2034,6 +2115,7 @@ BMad transforms you into a "Vibe CEO" - directing a team of specialized AI agent
2034
2115
  5. Type `/help` to see available commands
2035
2116
 
2036
2117
  #### Option 2: IDE Integration
2118
+
2037
2119
  **Best for**: Cursor, Claude Code, Windsurf, Trae, Cline, Roo Code, Github Copilot users
2038
2120
 
2039
2121
  ```bash
@@ -2042,6 +2124,7 @@ npx bmad-method install
2042
2124
  ```
2043
2125
 
2044
2126
  **Installation Steps**:
2127
+
2045
2128
  - Choose "Complete installation"
2046
2129
  - Select your IDE from supported options:
2047
2130
  - **Cursor**: Native AI integration
@@ -2050,11 +2133,12 @@ npx bmad-method install
2050
2133
  - **Trae**: Built-in AI capabilities
2051
2134
  - **Cline**: VS Code extension with AI features
2052
2135
  - **Roo Code**: Web-based IDE with agent support
2053
- - **Github Copilot**: AI-powered coding assistant
2136
+ - **GitHub Copilot**: VS Code extension with AI peer programming assistant
2054
2137
 
2055
2138
  **Note for VS Code Users**: BMad-Method assumes when you mention "VS Code" that you're using it with an AI-powered extension like GitHub Copilot, Cline, or Roo. Standard VS Code without AI capabilities cannot run BMad agents. The installer includes built-in support for Cline and Roo.
2056
2139
 
2057
2140
  **Verify Installation**:
2141
+
2058
2142
  - `.bmad-core/` folder created with all agents
2059
2143
  - IDE-specific integration files created
2060
2144
  - All agent commands/rules/modes available
@@ -2064,12 +2148,14 @@ npx bmad-method install
2064
2148
  ### Environment Selection Guide
2065
2149
 
2066
2150
  **Use Web UI for**:
2151
+
2067
2152
  - Initial planning and documentation (PRD, architecture)
2068
2153
  - Cost-effective document creation (especially with Gemini)
2069
2154
  - Brainstorming and analysis phases
2070
2155
  - Multi-agent consultation and planning
2071
2156
 
2072
2157
  **Use IDE for**:
2158
+
2073
2159
  - Active development and coding
2074
2160
  - File operations and project integration
2075
2161
  - Document sharding and story management
@@ -2082,35 +2168,41 @@ npx bmad-method install
2082
2168
  **Can you do everything in IDE?** Yes, but understand the tradeoffs:
2083
2169
 
2084
2170
  **Pros of IDE-Only**:
2171
+
2085
2172
  - Single environment workflow
2086
2173
  - Direct file operations from start
2087
2174
  - No copy/paste between environments
2088
2175
  - Immediate project integration
2089
2176
 
2090
2177
  **Cons of IDE-Only**:
2178
+
2091
2179
  - Higher token costs for large document creation
2092
2180
  - Smaller context windows (varies by IDE/model)
2093
2181
  - May hit limits during planning phases
2094
2182
  - Less cost-effective for brainstorming
2095
2183
 
2096
2184
  **Using Web Agents in IDE**:
2185
+
2097
2186
  - **NOT RECOMMENDED**: Web agents (PM, Architect) have rich dependencies designed for large contexts
2098
2187
  - **Why it matters**: Dev agents are kept lean to maximize coding context
2099
2188
  - **The principle**: "Dev agents code, planning agents plan" - mixing breaks this optimization
2100
2189
 
2101
2190
  **About bmad-master and bmad-orchestrator**:
2191
+
2102
2192
  - **bmad-master**: CAN do any task without switching agents, BUT...
2103
2193
  - **Still use specialized agents for planning**: PM, Architect, and UX Expert have tuned personas that produce better results
2104
2194
  - **Why specialization matters**: Each agent's personality and focus creates higher quality outputs
2105
2195
  - **If using bmad-master/orchestrator**: Fine for planning phases, but...
2106
2196
 
2107
2197
  **CRITICAL RULE for Development**:
2198
+
2108
2199
  - **ALWAYS use SM agent for story creation** - Never use bmad-master/orchestrator
2109
2200
  - **ALWAYS use Dev agent for implementation** - Never use bmad-master/orchestrator
2110
2201
  - **Why this matters**: SM and Dev agents are specifically optimized for the development workflow
2111
2202
  - **No exceptions**: Even if using bmad-master for everything else, switch to SM → Dev for implementation
2112
2203
 
2113
2204
  **Best Practice for IDE-Only**:
2205
+
2114
2206
  1. Use PM/Architect/UX agents for planning (better than bmad-master)
2115
2207
  2. Create documents directly in project
2116
2208
  3. Shard immediately after creation
@@ -2134,17 +2226,20 @@ This configuration file acts as a map for BMad agents, telling them exactly wher
2134
2226
  ### Key Configuration Areas
2135
2227
 
2136
2228
  #### PRD Configuration
2229
+
2137
2230
  - **prdVersion**: Tells agents if PRD follows v3 or v4 conventions
2138
2231
  - **prdSharded**: Whether epics are embedded (false) or in separate files (true)
2139
2232
  - **prdShardedLocation**: Where to find sharded epic files
2140
2233
  - **epicFilePattern**: Pattern for epic filenames (e.g., `epic-{n}*.md`)
2141
2234
 
2142
2235
  #### Architecture Configuration
2236
+
2143
2237
  - **architectureVersion**: v3 (monolithic) or v4 (sharded)
2144
2238
  - **architectureSharded**: Whether architecture is split into components
2145
2239
  - **architectureShardedLocation**: Where sharded architecture files live
2146
2240
 
2147
2241
  #### Developer Files
2242
+
2148
2243
  - **devLoadAlwaysFiles**: List of files the dev agent loads for every task
2149
2244
  - **devDebugLog**: Where dev agent logs repeated failures
2150
2245
  - **agentCoreDump**: Export location for chat conversations
@@ -2159,6 +2254,7 @@ This configuration file acts as a map for BMad agents, telling them exactly wher
2159
2254
  ### Common Configurations
2160
2255
 
2161
2256
  **Legacy V3 Project**:
2257
+
2162
2258
  ```yaml
2163
2259
  prdVersion: v3
2164
2260
  prdSharded: false
@@ -2167,6 +2263,7 @@ architectureSharded: false
2167
2263
  ```
2168
2264
 
2169
2265
  **V4 Optimized Project**:
2266
+
2170
2267
  ```yaml
2171
2268
  prdVersion: v4
2172
2269
  prdSharded: true
@@ -2232,18 +2329,21 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing
2232
2329
  #### IDE-Specific Syntax
2233
2330
 
2234
2331
  **Agent Loading by IDE**:
2332
+
2235
2333
  - **Claude Code**: `/agent-name` (e.g., `/bmad-master`)
2236
2334
  - **Cursor**: `@agent-name` (e.g., `@bmad-master`)
2237
2335
  - **Windsurf**: `@agent-name` (e.g., `@bmad-master`)
2238
2336
  - **Trae**: `@agent-name` (e.g., `@bmad-master`)
2239
2337
  - **Roo Code**: Select mode from mode selector (e.g., `bmad-bmad-master`)
2240
- - **Github Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
2338
+ - **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
2241
2339
 
2242
2340
  **Chat Management Guidelines**:
2341
+
2243
2342
  - **Claude Code, Cursor, Windsurf, Trae**: Start new chats when switching agents
2244
2343
  - **Roo Code**: Switch modes within the same conversation
2245
2344
 
2246
2345
  **Common Task Commands**:
2346
+
2247
2347
  - `*help` - Show available commands
2248
2348
  - `*status` - Show current context/progress
2249
2349
  - `*exit` - Exit the agent mode
@@ -2252,6 +2352,7 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing
2252
2352
  - `*create` - Run create-next-story task (SM agent)
2253
2353
 
2254
2354
  **In Web UI**:
2355
+
2255
2356
  ```text
2256
2357
  /pm create-doc prd
2257
2358
  /architect review system design
@@ -2265,16 +2366,19 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing
2265
2366
  ### Pre-Built Teams
2266
2367
 
2267
2368
  #### Team All
2369
+
2268
2370
  - **Includes**: All 10 agents + orchestrator
2269
2371
  - **Use Case**: Complete projects requiring all roles
2270
2372
  - **Bundle**: `team-all.txt`
2271
2373
 
2272
2374
  #### Team Fullstack
2375
+
2273
2376
  - **Includes**: PM, Architect, Developer, QA, UX Expert
2274
2377
  - **Use Case**: End-to-end web/mobile development
2275
2378
  - **Bundle**: `team-fullstack.txt`
2276
2379
 
2277
2380
  #### Team No-UI
2381
+
2278
2382
  - **Includes**: PM, Architect, Developer, QA (no UX Expert)
2279
2383
  - **Use Case**: Backend services, APIs, system development
2280
2384
  - **Bundle**: `team-no-ui.txt`
@@ -2288,22 +2392,26 @@ The BMad-Method is built around a modular architecture centered on the `bmad-cor
2288
2392
  ### Key Architectural Components
2289
2393
 
2290
2394
  #### 1. Agents (`bmad-core/agents/`)
2395
+
2291
2396
  - **Purpose**: Each markdown file defines a specialized AI agent for a specific Agile role (PM, Dev, Architect, etc.)
2292
2397
  - **Structure**: Contains YAML headers specifying the agent's persona, capabilities, and dependencies
2293
2398
  - **Dependencies**: Lists of tasks, templates, checklists, and data files the agent can use
2294
2399
  - **Startup Instructions**: Can load project-specific documentation for immediate context
2295
2400
 
2296
2401
  #### 2. Agent Teams (`bmad-core/agent-teams/`)
2402
+
2297
2403
  - **Purpose**: Define collections of agents bundled together for specific purposes
2298
2404
  - **Examples**: `team-all.yaml` (comprehensive bundle), `team-fullstack.yaml` (full-stack development)
2299
2405
  - **Usage**: Creates pre-packaged contexts for web UI environments
2300
2406
 
2301
2407
  #### 3. Workflows (`bmad-core/workflows/`)
2408
+
2302
2409
  - **Purpose**: YAML files defining prescribed sequences of steps for specific project types
2303
2410
  - **Types**: Greenfield (new projects) and Brownfield (existing projects) for UI, service, and fullstack development
2304
2411
  - **Structure**: Defines agent interactions, artifacts created, and transition conditions
2305
2412
 
2306
2413
  #### 4. Reusable Resources
2414
+
2307
2415
  - **Templates** (`bmad-core/templates/`): Markdown templates for PRDs, architecture specs, user stories
2308
2416
  - **Tasks** (`bmad-core/tasks/`): Instructions for specific repeatable actions like "shard-doc" or "create-next-story"
2309
2417
  - **Checklists** (`bmad-core/checklists/`): Quality assurance checklists for validation and review
@@ -2343,6 +2451,7 @@ BMad employs a sophisticated template system with three key components:
2343
2451
  ### Technical Preferences Integration
2344
2452
 
2345
2453
  The `technical-preferences.md` file serves as a persistent technical profile that:
2454
+
2346
2455
  - Ensures consistency across all agents and projects
2347
2456
  - Eliminates repetitive technology specification
2348
2457
  - Provides personalized recommendations aligned with user preferences
@@ -2351,6 +2460,7 @@ The `technical-preferences.md` file serves as a persistent technical profile tha
2351
2460
  ### Build and Delivery Process
2352
2461
 
2353
2462
  The `web-builder.js` tool creates web-ready bundles by:
2463
+
2354
2464
  1. Reading agent or team definition files
2355
2465
  2. Recursively resolving all dependencies
2356
2466
  3. Concatenating content into single text files with clear separators
@@ -2365,11 +2475,13 @@ This architecture enables seamless operation across environments while maintaini
2365
2475
  **Ideal for cost efficiency with Gemini's massive context:**
2366
2476
 
2367
2477
  **For Brownfield Projects - Start Here!**:
2478
+
2368
2479
  1. **Upload entire project to Gemini Web** (GitHub URL, files, or zip)
2369
2480
  2. **Document existing system**: `/analyst` → `*document-project`
2370
2481
  3. **Creates comprehensive docs** from entire codebase analysis
2371
2482
 
2372
2483
  **For All Projects**:
2484
+
2373
2485
  1. **Optional Analysis**: `/analyst` - Market research, competitive analysis
2374
2486
  2. **Project Brief**: Create foundation document (Analyst or user)
2375
2487
  3. **PRD Creation**: `/pm create-doc prd` - Comprehensive product requirements
@@ -2380,12 +2492,14 @@ This architecture enables seamless operation across environments while maintaini
2380
2492
  #### Example Planning Prompts
2381
2493
 
2382
2494
  **For PRD Creation**:
2495
+
2383
2496
  ```text
2384
2497
  "I want to build a [type] application that [core purpose].
2385
2498
  Help me brainstorm features and create a comprehensive PRD."
2386
2499
  ```
2387
2500
 
2388
2501
  **For Architecture Design**:
2502
+
2389
2503
  ```text
2390
2504
  "Based on this PRD, design a scalable technical architecture
2391
2505
  that can handle [specific requirements]."
@@ -2403,7 +2517,7 @@ that can handle [specific requirements]."
2403
2517
 
2404
2518
  **Prerequisites**: Planning documents must exist in `docs/` folder
2405
2519
 
2406
- 1. **Document Sharding** (CRITICAL STEP):
2520
+ 1. **Document Sharding** (CRITICAL STEP):
2407
2521
  - Documents created by PM/Architect (in Web or IDE) MUST be sharded for development
2408
2522
  - Two methods to shard:
2409
2523
  a) **Manual**: Drag `shard-doc` task + document file into chat
@@ -2417,32 +2531,33 @@ that can handle [specific requirements]."
2417
2531
  - Source tree document and coding standards for dev agent reference
2418
2532
  - Sharded docs for SM agent story creation
2419
2533
 
2420
- **Resulting Folder Structure**:
2534
+ Resulting Folder Structure:
2535
+
2421
2536
  - `docs/prd/` - Broken down PRD sections
2422
2537
  - `docs/architecture/` - Broken down architecture sections
2423
2538
  - `docs/stories/` - Generated user stories
2424
2539
 
2425
- 3. **Development Cycle** (Sequential, one story at a time):
2540
+ 1. **Development Cycle** (Sequential, one story at a time):
2426
2541
 
2427
2542
  **CRITICAL CONTEXT MANAGEMENT**:
2428
2543
  - **Context windows matter!** Always use fresh, clean context windows
2429
2544
  - **Model selection matters!** Use most powerful thinking model for SM story creation
2430
2545
  - **ALWAYS start new chat between SM, Dev, and QA work**
2431
2546
 
2432
- **Step 1 - Story Creation**:
2547
+ **Step 1 - Story Creation**:
2433
2548
  - **NEW CLEAN CHAT** → Select powerful model → `@sm` → `*create`
2434
2549
  - SM executes create-next-story task
2435
2550
  - Review generated story in `docs/stories/`
2436
2551
  - Update status from "Draft" to "Approved"
2437
-
2438
- **Step 2 - Story Implementation**:
2552
+
2553
+ **Step 2 - Story Implementation**:
2439
2554
  - **NEW CLEAN CHAT** → `@dev`
2440
2555
  - Agent asks which story to implement
2441
2556
  - Include story file content to save dev agent lookup time
2442
2557
  - Dev follows tasks/subtasks, marking completion
2443
2558
  - Dev maintains File List of all changes
2444
2559
  - Dev marks story as "Review" when complete with all tests passing
2445
-
2560
+
2446
2561
  **Step 3 - Senior QA Review**:
2447
2562
  - **NEW CLEAN CHAT** → `@qa` → execute review-story task
2448
2563
  - QA performs senior developer code review
@@ -2450,7 +2565,7 @@ that can handle [specific requirements]."
2450
2565
  - QA appends results to story's QA Results section
2451
2566
  - If approved: Status → "Done"
2452
2567
  - If changes needed: Status stays "Review" with unchecked items for dev
2453
-
2568
+
2454
2569
  **Step 4 - Repeat**: Continue SM → Dev → QA cycle until all epic stories complete
2455
2570
 
2456
2571
  **Important**: Only 1 story in progress at a time, worked sequentially until all epic stories complete.
@@ -2458,6 +2573,7 @@ that can handle [specific requirements]."
2458
2573
  ### Status Tracking Workflow
2459
2574
 
2460
2575
  Stories progress through defined statuses:
2576
+
2461
2577
  - **Draft** → **Approved** → **InProgress** → **Done**
2462
2578
 
2463
2579
  Each status change requires user verification and approval before proceeding.
@@ -2465,6 +2581,7 @@ Each status change requires user verification and approval before proceeding.
2465
2581
  ### Workflow Types
2466
2582
 
2467
2583
  #### Greenfield Development
2584
+
2468
2585
  - Business analysis and market research
2469
2586
  - Product requirements and feature definition
2470
2587
  - System architecture and design
@@ -2478,6 +2595,7 @@ Each status change requires user verification and approval before proceeding.
2478
2595
  **Complete Brownfield Workflow Options**:
2479
2596
 
2480
2597
  **Option 1: PRD-First (Recommended for Large Codebases/Monorepos)**:
2598
+
2481
2599
  1. **Upload project to Gemini Web** (GitHub URL, files, or zip)
2482
2600
  2. **Create PRD first**: `@pm` → `*create-doc brownfield-prd`
2483
2601
  3. **Focused documentation**: `@analyst` → `*document-project`
@@ -2488,18 +2606,19 @@ Each status change requires user verification and approval before proceeding.
2488
2606
  - Avoids bloating docs with unused code
2489
2607
 
2490
2608
  **Option 2: Document-First (Good for Smaller Projects)**:
2609
+
2491
2610
  1. **Upload project to Gemini Web**
2492
2611
  2. **Document everything**: `@analyst` → `*document-project`
2493
2612
  3. **Then create PRD**: `@pm` → `*create-doc brownfield-prd`
2494
2613
  - More thorough but can create excessive documentation
2495
2614
 
2496
- 2. **Requirements Gathering**:
2615
+ 4. **Requirements Gathering**:
2497
2616
  - **Brownfield PRD**: Use PM agent with `brownfield-prd-tmpl`
2498
2617
  - **Analyzes**: Existing system, constraints, integration points
2499
2618
  - **Defines**: Enhancement scope, compatibility requirements, risk assessment
2500
2619
  - **Creates**: Epic and story structure for changes
2501
2620
 
2502
- 3. **Architecture Planning**:
2621
+ 5. **Architecture Planning**:
2503
2622
  - **Brownfield Architecture**: Use Architect agent with `brownfield-architecture-tmpl`
2504
2623
  - **Integration Strategy**: How new features integrate with existing system
2505
2624
  - **Migration Planning**: Gradual rollout and backwards compatibility
@@ -2508,10 +2627,12 @@ Each status change requires user verification and approval before proceeding.
2508
2627
  **Brownfield-Specific Resources**:
2509
2628
 
2510
2629
  **Templates**:
2630
+
2511
2631
  - `brownfield-prd-tmpl.md`: Comprehensive enhancement planning with existing system analysis
2512
2632
  - `brownfield-architecture-tmpl.md`: Integration-focused architecture for existing systems
2513
2633
 
2514
2634
  **Tasks**:
2635
+
2515
2636
  - `document-project`: Generates comprehensive documentation from existing codebase
2516
2637
  - `brownfield-create-epic`: Creates single epic for focused enhancements (when full PRD is overkill)
2517
2638
  - `brownfield-create-story`: Creates individual story for small, isolated changes
@@ -2519,18 +2640,21 @@ Each status change requires user verification and approval before proceeding.
2519
2640
  **When to Use Each Approach**:
2520
2641
 
2521
2642
  **Full Brownfield Workflow** (Recommended for):
2643
+
2522
2644
  - Major feature additions
2523
2645
  - System modernization
2524
2646
  - Complex integrations
2525
2647
  - Multiple related changes
2526
2648
 
2527
2649
  **Quick Epic/Story Creation** (Use when):
2650
+
2528
2651
  - Single, focused enhancement
2529
2652
  - Isolated bug fixes
2530
2653
  - Small feature additions
2531
2654
  - Well-documented existing system
2532
2655
 
2533
2656
  **Critical Success Factors**:
2657
+
2534
2658
  1. **Documentation First**: Always run `document-project` if docs are outdated/missing
2535
2659
  2. **Context Matters**: Provide agents access to relevant code sections
2536
2660
  3. **Integration Focus**: Emphasize compatibility and non-breaking changes
@@ -2546,6 +2670,7 @@ Each status change requires user verification and approval before proceeding.
2546
2670
  - `docs/architecture.md` - System Architecture Document
2547
2671
 
2548
2672
  **Why These Names Matter**:
2673
+
2549
2674
  - Agents automatically reference these files during development
2550
2675
  - Sharding tasks expect these specific filenames
2551
2676
  - Workflow automation depends on standard naming
@@ -2564,6 +2689,7 @@ Each status change requires user verification and approval before proceeding.
2564
2689
  Templates with Level 2 headings (`##`) can be automatically sharded:
2565
2690
 
2566
2691
  **Original PRD**:
2692
+
2567
2693
  ```markdown
2568
2694
  ## Goals and Background Context
2569
2695
  ## Requirements
@@ -2572,6 +2698,7 @@ Templates with Level 2 headings (`##`) can be automatically sharded:
2572
2698
  ```
2573
2699
 
2574
2700
  **After Sharding**:
2701
+
2575
2702
  - `docs/prd/goals-and-background-context.md`
2576
2703
  - `docs/prd/requirements.md`
2577
2704
  - `docs/prd/user-interface-design-goals.md`
@@ -2584,12 +2711,14 @@ Use the `shard-doc` task or `@kayvan/markdown-tree-parser` tool for automatic sh
2584
2711
  ### Environment-Specific Usage
2585
2712
 
2586
2713
  **Web UI Best For**:
2714
+
2587
2715
  - Initial planning and documentation phases
2588
2716
  - Cost-effective large document creation
2589
2717
  - Agent consultation and brainstorming
2590
2718
  - Multi-agent workflows with orchestrator
2591
2719
 
2592
2720
  **IDE Best For**:
2721
+
2593
2722
  - Active development and implementation
2594
2723
  - File operations and project integration
2595
2724
  - Story management and development cycles
@@ -2624,6 +2753,7 @@ Use the `shard-doc` task or `@kayvan/markdown-tree-parser` tool for automatic sh
2624
2753
  For full details, see `CONTRIBUTING.md`. Key points:
2625
2754
 
2626
2755
  **Fork Workflow**:
2756
+
2627
2757
  1. Fork the repository
2628
2758
  2. Create feature branches
2629
2759
  3. Submit PRs to `next` branch (default) or `main` for critical fixes only
@@ -2631,12 +2761,14 @@ For full details, see `CONTRIBUTING.md`. Key points:
2631
2761
  5. One feature/fix per PR
2632
2762
 
2633
2763
  **PR Requirements**:
2764
+
2634
2765
  - Clear descriptions (max 200 words) with What/Why/How/Testing
2635
2766
  - Use conventional commits (feat:, fix:, docs:)
2636
2767
  - Atomic commits - one logical change per commit
2637
2768
  - Must align with guiding principles
2638
2769
 
2639
2770
  **Core Principles** (from GUIDING-PRINCIPLES.md):
2771
+
2640
2772
  - **Dev Agents Must Be Lean**: Minimize dependencies, save context for code
2641
2773
  - **Natural Language First**: Everything in markdown, no code in core
2642
2774
  - **Core vs Expansion Packs**: Core for universal needs, packs for specialized domains
@@ -2658,12 +2790,14 @@ Expansion packs extend BMad-Method beyond traditional software development into
2658
2790
  ### Available Expansion Packs
2659
2791
 
2660
2792
  **Technical Packs**:
2793
+
2661
2794
  - **Infrastructure/DevOps**: Cloud architects, SRE experts, security specialists
2662
2795
  - **Game Development**: Game designers, level designers, narrative writers
2663
2796
  - **Mobile Development**: iOS/Android specialists, mobile UX experts
2664
2797
  - **Data Science**: ML engineers, data scientists, visualization experts
2665
2798
 
2666
2799
  **Non-Technical Packs**:
2800
+
2667
2801
  - **Business Strategy**: Consultants, financial analysts, marketing strategists
2668
2802
  - **Creative Writing**: Plot architects, character developers, world builders
2669
2803
  - **Health & Wellness**: Fitness trainers, nutritionists, habit engineers
@@ -2671,6 +2805,7 @@ Expansion packs extend BMad-Method beyond traditional software development into
2671
2805
  - **Legal Support**: Contract analysts, compliance checkers
2672
2806
 
2673
2807
  **Specialty Packs**:
2808
+
2674
2809
  - **Expansion Creator**: Tools to build your own expansion packs
2675
2810
  - **RPG Game Master**: Tabletop gaming assistance
2676
2811
  - **Life Event Planning**: Wedding planners, event coordinators
@@ -2680,11 +2815,13 @@ Expansion packs extend BMad-Method beyond traditional software development into
2680
2815
 
2681
2816
  1. **Browse Available Packs**: Check `expansion-packs/` directory
2682
2817
  2. **Get Inspiration**: See `docs/expansion-packs.md` for detailed examples and ideas
2683
- 3. **Install via CLI**:
2818
+ 3. **Install via CLI**:
2819
+
2684
2820
  ```bash
2685
2821
  npx bmad-method install
2686
2822
  # Select "Install expansion pack" option
2687
2823
  ```
2824
+
2688
2825
  4. **Use in Your Workflow**: Installed packs integrate seamlessly with existing agents
2689
2826
 
2690
2827
  ### Creating Custom Expansion Packs
@@ -2705,9 +2842,48 @@ Use the **expansion-creator** pack to build your own:
2705
2842
  - **Documentation**: Check `docs/` folder for project-specific context
2706
2843
  - **Community**: Discord and GitHub resources available for support
2707
2844
  - **Contributing**: See `CONTRIBUTING.md` for full guidelines
2708
- ==================== END: data#bmad-kb ====================
2845
+ ==================== END: .bmad-core/data/bmad-kb.md ====================
2846
+
2847
+ ==================== START: .bmad-core/data/brainstorming-techniques.md ====================
2848
+ # Brainstorming Techniques Data
2849
+
2850
+ ## Creative Expansion
2851
+
2852
+ 1. **What If Scenarios**: Ask one provocative question, get their response, then ask another
2853
+ 2. **Analogical Thinking**: Give one example analogy, ask them to find 2-3 more
2854
+ 3. **Reversal/Inversion**: Pose the reverse question, let them work through it
2855
+ 4. **First Principles Thinking**: Ask "What are the fundamentals?" and guide them to break it down
2856
+
2857
+ ## Structured Frameworks
2858
+
2859
+ 5. **SCAMPER Method**: Go through one letter at a time, wait for their ideas before moving to next
2860
+ 6. **Six Thinking Hats**: Present one hat, ask for their thoughts, then move to next hat
2861
+ 7. **Mind Mapping**: Start with central concept, ask them to suggest branches
2862
+
2863
+ ## Collaborative Techniques
2864
+
2865
+ 8. **"Yes, And..." Building**: They give idea, you "yes and" it, they "yes and" back - alternate
2866
+ 9. **Brainwriting/Round Robin**: They suggest idea, you build on it, ask them to build on yours
2867
+ 10. **Random Stimulation**: Give one random prompt/word, ask them to make connections
2868
+
2869
+ ## Deep Exploration
2870
+
2871
+ 11. **Five Whys**: Ask "why" and wait for their answer before asking next "why"
2872
+ 12. **Morphological Analysis**: Ask them to list parameters first, then explore combinations together
2873
+ 13. **Provocation Technique (PO)**: Give one provocative statement, ask them to extract useful ideas
2874
+
2875
+ ## Advanced Techniques
2876
+
2877
+ 14. **Forced Relationships**: Connect two unrelated concepts and ask them to find the bridge
2878
+ 15. **Assumption Reversal**: Challenge their core assumptions and ask them to build from there
2879
+ 16. **Role Playing**: Ask them to brainstorm from different stakeholder perspectives
2880
+ 17. **Time Shifting**: "How would you solve this in 1995? 2030?"
2881
+ 18. **Resource Constraints**: "What if you had only $10 and 1 hour?"
2882
+ 19. **Metaphor Mapping**: Use extended metaphors to explore solutions
2883
+ 20. **Question Storming**: Generate questions instead of answers first
2884
+ ==================== END: .bmad-core/data/brainstorming-techniques.md ====================
2709
2885
 
2710
- ==================== START: utils#template-format ====================
2886
+ ==================== START: .bmad-core/utils/template-format.md ====================
2711
2887
  # Template Format Conventions
2712
2888
 
2713
2889
  Templates in the BMad method use standardized markup for AI processing. These conventions ensure consistent document generation.
@@ -2734,4 +2910,4 @@ Templates in the BMad method use standardized markup for AI processing. These co
2734
2910
  - Template elements are for AI processing only
2735
2911
  - Focus on faithful template execution and clean output
2736
2912
  - All template-specific instructions are embedded within templates
2737
- ==================== END: utils#template-format ====================
2913
+ ==================== END: .bmad-core/utils/template-format.md ====================