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-creator-tools/folder/filename.md ====================`
12
+ - `==================== END: .bmad-creator-tools/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-creator-tools/personas/analyst.md`, `.bmad-creator-tools/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-creator-tools/utils/template-format.md ====================`
33
+ - `tasks: create-story` → Look for `==================== START: .bmad-creator-tools/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#bmad-the-creator ====================
41
+
42
+ ==================== START: .bmad-creator-tools/agents/bmad-the-creator.md ====================
42
43
  # bmad-the-creator
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:
@@ -92,9 +93,9 @@ dependencies:
92
93
  - agent-tmpl
93
94
  - expansion-pack-plan-tmpl
94
95
  ```
95
- ==================== END: agents#bmad-the-creator ====================
96
+ ==================== END: .bmad-creator-tools/agents/bmad-the-creator.md ====================
96
97
 
97
- ==================== START: tasks#create-agent ====================
98
+ ==================== START: .bmad-creator-tools/tasks/create-agent.md ====================
98
99
  # Create Agent Task
99
100
 
100
101
  This task guides you through creating a new BMad agent following the standard template.
@@ -295,9 +296,9 @@ dependencies:
295
296
  - Test thoroughly before distribution
296
297
  - Follow existing agent patterns for consistency
297
298
  - Remember: No task = agent can't do it, No template = agent can't create it
298
- ==================== END: tasks#create-agent ====================
299
+ ==================== END: .bmad-creator-tools/tasks/create-agent.md ====================
299
300
 
300
- ==================== START: tasks#generate-expansion-pack ====================
301
+ ==================== START: .bmad-creator-tools/tasks/generate-expansion-pack.md ====================
301
302
  # Create Expansion Pack Task
302
303
 
303
304
  This task helps you create a sophisticated BMad expansion pack with advanced agent orchestration, template systems, and quality assurance patterns based on proven best practices.
@@ -1318,9 +1319,9 @@ Embedded knowledge (automatic):
1318
1319
  - [ ] Template conditional content tested with different scenarios
1319
1320
  - [ ] Workflow decision trees validated with sample use cases
1320
1321
  - [ ] Character interactions tested for consistency and professional authenticity
1321
- ==================== END: tasks#generate-expansion-pack ====================
1322
+ ==================== END: .bmad-creator-tools/tasks/generate-expansion-pack.md ====================
1322
1323
 
1323
- ==================== START: tasks#advanced-elicitation ====================
1324
+ ==================== START: .bmad-creator-tools/tasks/advanced-elicitation.md ====================
1324
1325
  # Advanced Elicitation Task
1325
1326
 
1326
1327
  ## Purpose
@@ -1328,94 +1329,119 @@ Embedded knowledge (automatic):
1328
1329
  - Provide optional reflective and brainstorming actions to enhance content quality
1329
1330
  - Enable deeper exploration of ideas through structured elicitation techniques
1330
1331
  - Support iterative refinement through multiple analytical perspectives
1332
+ - Usable during template-driven document creation or any chat conversation
1331
1333
 
1332
- ## Task Instructions
1334
+ ## Usage Scenarios
1333
1335
 
1334
- ### 1. Section Context and Review
1336
+ ### Scenario 1: Template Document Creation
1335
1337
 
1336
- [[LLM: When invoked after outputting a section:
1338
+ After outputting a section during document creation:
1337
1339
 
1338
- 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.")
1340
+ 1. **Section Review**: Ask user to review the drafted section
1341
+ 2. **Offer Elicitation**: Present 9 carefully selected elicitation methods
1342
+ 3. **Simple Selection**: User types a number (0-8) to engage method, or 9 to proceed
1343
+ 4. **Execute & Loop**: Apply selected method, then re-offer choices until user proceeds
1339
1344
 
1340
- 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.")
1345
+ ### Scenario 2: General Chat Elicitation
1341
1346
 
1342
- 3. If the section contains multiple distinct items (like multiple components, multiple patterns, etc.), inform the user they can apply elicitation actions to:
1347
+ User can request advanced elicitation on any agent output:
1343
1348
 
1344
- - The entire section as a whole
1345
- - Individual items within the section (specify which item when selecting an action)
1349
+ - User says "do advanced elicitation" or similar
1350
+ - Agent selects 9 relevant methods for the context
1351
+ - Same simple 0-9 selection process
1346
1352
 
1347
- 4. Then present the action list as specified below.]]
1353
+ ## Task Instructions
1348
1354
 
1349
- ### 2. Ask for Review and Present Action List
1355
+ ### 1. Intelligent Method Selection
1350
1356
 
1351
- [[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.]]
1357
+ **Context Analysis**: Before presenting options, analyze:
1352
1358
 
1353
- **Present the numbered list (0-9) with this exact format:**
1359
+ - **Content Type**: Technical specs, user stories, architecture, requirements, etc.
1360
+ - **Complexity Level**: Simple, moderate, or complex content
1361
+ - **Stakeholder Needs**: Who will use this information
1362
+ - **Risk Level**: High-impact decisions vs routine items
1363
+ - **Creative Potential**: Opportunities for innovation or alternatives
1354
1364
 
1355
- ```text
1356
- **Advanced Reflective, Elicitation & Brainstorming Actions**
1357
- Choose an action (0-9 - 9 to bypass - HELP for explanation of these options):
1358
-
1359
- 0. Expand or Contract for Audience
1360
- 1. Explain Reasoning (CoT Step-by-Step)
1361
- 2. Critique and Refine
1362
- 3. Analyze Logical Flow and Dependencies
1363
- 4. Assess Alignment with Overall Goals
1364
- 5. Identify Potential Risks and Unforeseen Issues
1365
- 6. Challenge from Critical Perspective (Self or Other Persona)
1366
- 7. Explore Diverse Alternatives (ToT-Inspired)
1367
- 8. Hindsight is 20/20: The 'If Only...' Reflection
1368
- 9. Proceed / No Further Actions
1369
- ```
1365
+ **Method Selection Strategy**:
1366
+
1367
+ 1. **Always Include Core Methods** (choose 3-4):
1368
+ - Expand or Contract for Audience
1369
+ - Critique and Refine
1370
+ - Identify Potential Risks
1371
+ - Assess Alignment with Goals
1370
1372
 
1371
- ### 2. Processing Guidelines
1373
+ 2. **Context-Specific Methods** (choose 4-5):
1374
+ - **Technical Content**: Tree of Thoughts, ReWOO, Meta-Prompting
1375
+ - **User-Facing Content**: Agile Team Perspective, Stakeholder Roundtable
1376
+ - **Creative Content**: Innovation Tournament, Escape Room Challenge
1377
+ - **Strategic Content**: Red Team vs Blue Team, Hindsight Reflection
1372
1378
 
1373
- **Do NOT show:**
1379
+ 3. **Always Include**: "Proceed / No Further Actions" as option 9
1374
1380
 
1375
- - The full protocol text with `[[LLM: ...]]` instructions
1376
- - Detailed explanations of each option unless executing or the user asks, when giving the definition you can modify to tie its relevance
1377
- - Any internal template markup
1381
+ ### 2. Section Context and Review
1378
1382
 
1379
- **After user selection from the list:**
1383
+ When invoked after outputting a section:
1380
1384
 
1381
- - Execute the chosen action according to the protocol instructions below
1382
- - Ask if they want to select another action or proceed with option 9 once complete
1383
- - Continue until user selects option 9 or indicates completion
1385
+ 1. **Provide Context Summary**: Give a brief 1-2 sentence summary of what the user should look for in the section just presented
1384
1386
 
1385
- ## Action Definitions
1387
+ 2. **Explain Visual Elements**: If the section contains diagrams, explain them briefly before offering elicitation options
1386
1388
 
1387
- 0. Expand or Contract for Audience
1388
- [[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.]]
1389
+ 3. **Clarify Scope Options**: If the section contains multiple distinct items, inform the user they can apply elicitation actions to:
1390
+ - The entire section as a whole
1391
+ - Individual items within the section (specify which item when selecting an action)
1389
1392
 
1390
- 1. Explain Reasoning (CoT Step-by-Step)
1391
- [[LLM: Explain the step-by-step thinking process, characteristic of your role, that you used to arrive at the current proposal for this content.]]
1393
+ ### 3. Present Elicitation Options
1392
1394
 
1393
- 2. Critique and Refine
1394
- [[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.]]
1395
+ **Review Request Process:**
1395
1396
 
1396
- 3. Analyze Logical Flow and Dependencies
1397
- [[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.]]
1397
+ - Ask the user to review the drafted section
1398
+ - In the SAME message, inform them they can suggest direct changes OR select an elicitation method
1399
+ - Present 9 intelligently selected methods (0-8) plus "Proceed" (9)
1400
+ - Keep descriptions short - just the method name
1401
+ - Await simple numeric selection
1398
1402
 
1399
- 4. Assess Alignment with Overall Goals
1400
- [[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.]]
1403
+ **Action List Presentation Format:**
1401
1404
 
1402
- 5. Identify Potential Risks and Unforeseen Issues
1403
- [[LLM: Based on your role's expertise, brainstorm potential risks, overlooked edge cases, or unintended consequences related to the current content or proposal.]]
1405
+ ```text
1406
+ **Advanced Elicitation Options**
1407
+ Choose a number (0-8) or 9 to proceed:
1408
+
1409
+ 0. [Method Name]
1410
+ 1. [Method Name]
1411
+ 2. [Method Name]
1412
+ 3. [Method Name]
1413
+ 4. [Method Name]
1414
+ 5. [Method Name]
1415
+ 6. [Method Name]
1416
+ 7. [Method Name]
1417
+ 8. [Method Name]
1418
+ 9. Proceed / No Further Actions
1419
+ ```
1404
1420
 
1405
- 6. Challenge from Critical Perspective (Self or Other Persona)
1406
- [[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.]]
1421
+ **Response Handling:**
1407
1422
 
1408
- 7. Explore Diverse Alternatives (ToT-Inspired)
1409
- [[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.]]
1423
+ - **Numbers 0-8**: Execute the selected method, then re-offer the choice
1424
+ - **Number 9**: Proceed to next section or continue conversation
1425
+ - **Direct Feedback**: Apply user's suggested changes and continue
1410
1426
 
1411
- 8. Hindsight is 20/20: The 'If Only...' Reflection
1412
- [[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?]]
1427
+ ### 4. Method Execution Framework
1413
1428
 
1414
- 9. Proceed / No Further Actions
1415
- [[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.]]
1416
- ==================== END: tasks#advanced-elicitation ====================
1429
+ **Execution Process:**
1430
+
1431
+ 1. **Retrieve Method**: Access the specific elicitation method from the elicitation-methods data file
1432
+ 2. **Apply Context**: Execute the method from your current role's perspective
1433
+ 3. **Provide Results**: Deliver insights, critiques, or alternatives relevant to the content
1434
+ 4. **Re-offer Choice**: Present the same 9 options again until user selects 9 or gives direct feedback
1435
+
1436
+ **Execution Guidelines:**
1437
+
1438
+ - **Be Concise**: Focus on actionable insights, not lengthy explanations
1439
+ - **Stay Relevant**: Tie all elicitation back to the specific content being analyzed
1440
+ - **Identify Personas**: For multi-persona methods, clearly identify which viewpoint is speaking
1441
+ - **Maintain Flow**: Keep the process moving efficiently
1442
+ ==================== END: .bmad-creator-tools/tasks/advanced-elicitation.md ====================
1417
1443
 
1418
- ==================== START: tasks#create-deep-research-prompt ====================
1444
+ ==================== START: .bmad-creator-tools/tasks/create-deep-research-prompt.md ====================
1419
1445
  # Create Deep Research Prompt Task
1420
1446
 
1421
1447
  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.
@@ -1717,9 +1743,9 @@ Present these numbered options to the user:
1717
1743
  - Balance comprehensiveness with focus
1718
1744
  - Document assumptions and limitations clearly
1719
1745
  - Plan for iterative refinement based on initial findings
1720
- ==================== END: tasks#create-deep-research-prompt ====================
1746
+ ==================== END: .bmad-creator-tools/tasks/create-deep-research-prompt.md ====================
1721
1747
 
1722
- ==================== START: templates#agent-tmpl ====================
1748
+ ==================== START: .bmad-creator-tools/templates/agent-tmpl.md ====================
1723
1749
  # [AGENT_ID]
1724
1750
 
1725
1751
  [[LLM: This is an agent definition template. When creating a new agent:
@@ -1863,9 +1889,9 @@ dependencies:
1863
1889
  utils:
1864
1890
  - template-format
1865
1891
  ```
1866
- ==================== END: templates#agent-tmpl ====================
1892
+ ==================== END: .bmad-creator-tools/templates/agent-tmpl.md ====================
1867
1893
 
1868
- ==================== START: templates#expansion-pack-plan-tmpl ====================
1894
+ ==================== START: .bmad-creator-tools/templates/expansion-pack-plan-tmpl.md ====================
1869
1895
  # {Pack Name} Expansion Pack Plan
1870
1896
 
1871
1897
  ## Overview
@@ -1957,4 +1983,4 @@ Users must add these files to `bmad-core/data/`:
1957
1983
  ---
1958
1984
 
1959
1985
  **Next Steps**: Once approved, proceed with Phase 3 implementation starting with the orchestrator agent.
1960
- ==================== END: templates#expansion-pack-plan-tmpl ====================
1986
+ ==================== END: .bmad-creator-tools/templates/expansion-pack-plan-tmpl.md ====================
@@ -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-infrastructure-devops/folder/filename.md ====================`
12
+ - `==================== END: .bmad-infrastructure-devops/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-infrastructure-devops/personas/analyst.md`, `.bmad-infrastructure-devops/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-infrastructure-devops/utils/template-format.md ====================`
33
+ - `tasks: create-story` → Look for `==================== START: .bmad-infrastructure-devops/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#infra-devops-platform ====================
41
+
42
+ ==================== START: .bmad-infrastructure-devops/agents/infra-devops-platform.md ====================
42
43
  # infra-devops-platform
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:
@@ -98,9 +99,9 @@ dependencies:
98
99
  utils:
99
100
  - template-format
100
101
  ```
101
- ==================== END: agents#infra-devops-platform ====================
102
+ ==================== END: .bmad-infrastructure-devops/agents/infra-devops-platform.md ====================
102
103
 
103
- ==================== START: tasks#create-doc ====================
104
+ ==================== START: .bmad-infrastructure-devops/tasks/create-doc.md ====================
104
105
  # Create Document from Template Task
105
106
 
106
107
  ## Purpose
@@ -120,7 +121,7 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
120
121
 
121
122
  [[LLM: Check if plan tracking is enabled in core-config.yaml]]
122
123
 
123
- - If `workflow.trackProgress: true`, check for active plan using utils#plan-management
124
+ - If `workflow.trackProgress: true`, check for active plan using .bmad-infrastructure-devops/utils/plan-management.md
124
125
  - If plan exists and this document creation is part of the plan:
125
126
  - Verify this is the expected next step
126
127
  - If out of sequence and `enforceSequence: true`, warn user and halt without user override
@@ -129,7 +130,7 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
129
130
 
130
131
  ### 1. Identify Template
131
132
 
132
- - Load from `templates#*` or `{root}/templates directory`
133
+ - Load from `.bmad-infrastructure-devops/templates/*.md` or `.bmad-infrastructure-devops/templates directory`
133
134
  - Agent-specific templates are listed in agent's dependencies
134
135
  - If agent has `templates: [prd-tmpl, architecture-tmpl]` for example, then offer to create "PRD" and "Architecture" documents
135
136
 
@@ -147,14 +148,14 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
147
148
 
148
149
  ### 4. Key Execution Patterns
149
150
 
150
- **When you see:** `[[LLM: Draft X and immediately execute tasks#advanced-elicitation]]`
151
+ **When you see:** `[[LLM: Draft X and immediately execute .bmad-infrastructure-devops/tasks/advanced-elicitation.md]]`
151
152
 
152
153
  - Draft the content
153
154
  - Present it to user
154
155
  - IMMEDIATELY execute the task
155
156
  - Wait for completion before continuing
156
157
 
157
- **When you see:** `[[LLM: After section completion, apply tasks#Y]]`
158
+ **When you see:** `[[LLM: After section completion, apply .bmad-infrastructure-devops/tasks/Y.md]]`
158
159
 
159
160
  - Finish the section
160
161
  - STOP and execute the task
@@ -192,9 +193,9 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
192
193
  ## Remember
193
194
 
194
195
  Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
195
- ==================== END: tasks#create-doc ====================
196
+ ==================== END: .bmad-infrastructure-devops/tasks/create-doc.md ====================
196
197
 
197
- ==================== START: tasks#review-infrastructure ====================
198
+ ==================== START: .bmad-infrastructure-devops/tasks/review-infrastructure.md ====================
198
199
  # Infrastructure Review Task
199
200
 
200
201
  ## Purpose
@@ -355,9 +356,9 @@ Present the user with the following list of 'Advanced Reflective, Elicitation &
355
356
  After I perform the selected action, we can discuss the outcome and decide on any further revisions for this section."
356
357
 
357
358
  REPEAT by Asking the user if they would like to perform another Reflective, Elicitation & Brainstorming Action UNTIL the user indicates it is time to proceed to the next section (or selects #8)
358
- ==================== END: tasks#review-infrastructure ====================
359
+ ==================== END: .bmad-infrastructure-devops/tasks/review-infrastructure.md ====================
359
360
 
360
- ==================== START: tasks#validate-infrastructure ====================
361
+ ==================== START: .bmad-infrastructure-devops/tasks/validate-infrastructure.md ====================
361
362
  # Infrastructure Validation Task
362
363
 
363
364
  ## Purpose
@@ -512,9 +513,9 @@ Present the user with the following list of 'Advanced Reflective, Elicitation &
512
513
  After I perform the selected action, we can discuss the outcome and decide on any further revisions for this section."
513
514
 
514
515
  REPEAT by Asking the user if they would like to perform another Reflective, Elicitation & Brainstorming Action UNTIL the user indicates it is time to proceed to the next section (or selects #8)
515
- ==================== END: tasks#validate-infrastructure ====================
516
+ ==================== END: .bmad-infrastructure-devops/tasks/validate-infrastructure.md ====================
516
517
 
517
- ==================== START: templates#infrastructure-architecture-tmpl ====================
518
+ ==================== START: .bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.md ====================
518
519
  # {{Project Name}} Infrastructure Architecture
519
520
 
520
521
  [[LLM: Initial Setup
@@ -930,9 +931,9 @@ Define specific criteria for validating correct implementation:
930
931
  _Document Version: 1.0_
931
932
  _Last Updated: {{current_date}}_
932
933
  _Next Review: {{review_date}}_
933
- ==================== END: templates#infrastructure-architecture-tmpl ====================
934
+ ==================== END: .bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.md ====================
934
935
 
935
- ==================== START: templates#infrastructure-platform-from-arch-tmpl ====================
936
+ ==================== START: .bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.md ====================
936
937
  # {{Project Name}} Platform Infrastructure Implementation
937
938
 
938
939
  [[LLM: Initial Setup
@@ -1548,9 +1549,9 @@ _Platform Version: 1.0_
1548
1549
  _Implementation Date: {{implementation_date}}_
1549
1550
  _Next Review: {{review_date}}_
1550
1551
  _Approved by: {{architect_name}} (Architect), {{devops_name}} (DevOps/Platform Engineer)_
1551
- ==================== END: templates#infrastructure-platform-from-arch-tmpl ====================
1552
+ ==================== END: .bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.md ====================
1552
1553
 
1553
- ==================== START: checklists#infrastructure-checklist ====================
1554
+ ==================== START: .bmad-infrastructure-devops/checklists/infrastructure-checklist.md ====================
1554
1555
  # Infrastructure Change Validation Checklist
1555
1556
 
1556
1557
  This checklist serves as a comprehensive framework for validating infrastructure changes before deployment to production. The DevOps/Platform Engineer should systematically work through each item, ensuring the infrastructure is secure, compliant, resilient, and properly implemented according to organizational standards.
@@ -2035,15 +2036,15 @@ This checklist serves as a comprehensive framework for validating infrastructure
2035
2036
  - [ ] Local development environment compatibility verified
2036
2037
  - [ ] Platform component integration validated
2037
2038
  - [ ] Cross-platform functionality tested and verified
2038
- ==================== END: checklists#infrastructure-checklist ====================
2039
+ ==================== END: .bmad-infrastructure-devops/checklists/infrastructure-checklist.md ====================
2039
2040
 
2040
- ==================== START: data#technical-preferences ====================
2041
+ ==================== START: .bmad-infrastructure-devops/data/technical-preferences.md ====================
2041
2042
  # User-Defined Preferred Patterns and Preferences
2042
2043
 
2043
2044
  None Listed
2044
- ==================== END: data#technical-preferences ====================
2045
+ ==================== END: .bmad-infrastructure-devops/data/technical-preferences.md ====================
2045
2046
 
2046
- ==================== START: utils#template-format ====================
2047
+ ==================== START: .bmad-infrastructure-devops/utils/template-format.md ====================
2047
2048
  # Template Format Conventions
2048
2049
 
2049
2050
  Templates in the BMad method use standardized markup for AI processing. These conventions ensure consistent document generation.
@@ -2070,4 +2071,4 @@ Templates in the BMad method use standardized markup for AI processing. These co
2070
2071
  - Template elements are for AI processing only
2071
2072
  - Focus on faithful template execution and clean output
2072
2073
  - All template-specific instructions are embedded within templates
2073
- ==================== END: utils#template-format ====================
2074
+ ==================== END: .bmad-infrastructure-devops/utils/template-format.md ====================