bmad-method 4.27.2 → 4.27.4

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.
@@ -189,7 +189,6 @@ dependencies:
189
189
  utils:
190
190
  - plan-management.md
191
191
  - workflow-management.md
192
- - template-format.md
193
192
  ```
194
193
  ==================== END: .bmad-core/agents/bmad-orchestrator.md ====================
195
194
 
@@ -1666,17 +1665,10 @@ The BMad-Method is built around a modular architecture centered on the `bmad-cor
1666
1665
 
1667
1666
  BMad employs a sophisticated template system with three key components:
1668
1667
 
1669
- 1. **Template Format** (`utils/template-format.md`): Defines markup language for variable substitution and AI processing directives
1670
- 2. **Document Creation** (`tasks/create-doc.md`): Orchestrates template selection and user interaction
1668
+ 1. **Template Format** (`utils/bmad-doc-template.md`): Defines markup language for variable substitution and AI processing directives from yaml templates
1669
+ 2. **Document Creation** (`tasks/create-doc.md`): Orchestrates template selection and user interaction to transform yaml spec to final markdown output
1671
1670
  3. **Advanced Elicitation** (`tasks/advanced-elicitation.md`): Provides interactive refinement through structured brainstorming
1672
1671
 
1673
- **Template Features**:
1674
-
1675
- - **Self-contained**: Templates embed both output structure and processing instructions
1676
- - **Variable Substitution**: `{{placeholders}}` for dynamic content
1677
- - **AI Processing Directives**: `[[LLM: instructions]]` for AI-only processing
1678
- - **Interactive Refinement**: Built-in elicitation processes for quality improvement
1679
-
1680
1672
  ### Technical Preferences Integration
1681
1673
 
1682
1674
  The `technical-preferences.md` file serves as a persistent technical profile that:
@@ -2504,35 +2496,6 @@ Handle conditional paths by asking clarifying questions when needed.
2504
2496
  Agents should be workflow-aware: know active workflow, their role, access artifacts, understand expected outputs.
2505
2497
  ==================== END: .bmad-core/utils/workflow-management.md ====================
2506
2498
 
2507
- ==================== START: .bmad-core/utils/template-format.md ====================
2508
- # Template Format Conventions
2509
-
2510
- Templates in the BMad method use standardized markup for AI processing. These conventions ensure consistent document generation.
2511
-
2512
- ## Template Markup Elements
2513
-
2514
- - **{{placeholders}}**: Variables to be replaced with actual content
2515
- - **[[LLM: instructions]]**: Internal processing instructions for AI agents (never shown to users)
2516
- - **REPEAT** sections: Content blocks that may be repeated as needed
2517
- - **^^CONDITION^^** blocks: Conditional content included only if criteria are met
2518
- - **@{examples}**: Example content for guidance (never output to users)
2519
-
2520
- ## Processing Rules
2521
-
2522
- - Replace all {{placeholders}} with project-specific content
2523
- - Execute all [[LLM: instructions]] internally without showing users
2524
- - Process conditional and repeat blocks as specified
2525
- - Use examples for guidance but never include them in final output
2526
- - Present only clean, formatted content to users
2527
-
2528
- ## Critical Guidelines
2529
-
2530
- - **NEVER display template markup, LLM instructions, or examples to users**
2531
- - Template elements are for AI processing only
2532
- - Focus on faithful template execution and clean output
2533
- - All template-specific instructions are embedded within templates
2534
- ==================== END: .bmad-core/utils/template-format.md ====================
2535
-
2536
2499
  ==================== START: .bmad-core/tasks/facilitate-brainstorming-session.md ====================
2537
2500
  ---
2538
2501
  docOutputLocation: docs/brainstorming-session-results.md
@@ -5145,9 +5108,9 @@ sections:
5145
5108
  - id: next-steps
5146
5109
  title: Next Steps
5147
5110
  sections:
5148
- - id: design-architect-prompt
5149
- title: Design Architect Prompt
5150
- instruction: This section will contain the prompt for the Design Architect, keep it short and to the point to initiate create architecture mode using this document as input.
5111
+ - id: ux-expert-prompt
5112
+ title: UX Expert Prompt
5113
+ instruction: This section will contain the prompt for the UX Expert, keep it short and to the point to initiate create architecture mode using this document as input.
5151
5114
  - id: architect-prompt
5152
5115
  title: Architect Prompt
5153
5116
  instruction: This section will contain the prompt for the Architect, keep it short and to the point to initiate create architecture mode using this document as input.
@@ -6637,7 +6600,6 @@ sections:
6637
6600
  After completing the architecture:
6638
6601
 
6639
6602
  1. If project has UI components:
6640
- - Recommend engaging Design Architect agent
6641
6603
  - Use "Frontend Architecture Mode"
6642
6604
  - Provide this document as input
6643
6605
 
@@ -6648,22 +6610,15 @@ sections:
6648
6610
 
6649
6611
  3. Include specific prompts for next agents if needed
6650
6612
  sections:
6651
- - id: design-architect-prompt
6652
- title: Design Architect Prompt
6613
+ - id: architect-prompt
6614
+ title: Architect Prompt
6653
6615
  condition: Project has UI components
6654
6616
  instruction: |
6655
- Create a brief prompt to hand off to Design Architect for Frontend Architecture creation. Include:
6617
+ Create a brief prompt to hand off to Architect for Frontend Architecture creation. Include:
6656
6618
  - Reference to this architecture document
6657
6619
  - Key UI requirements from PRD
6658
6620
  - Any frontend-specific decisions made here
6659
6621
  - Request for detailed frontend architecture
6660
- - id: developer-handoff
6661
- title: Developer Handoff
6662
- instruction: |
6663
- Create a brief prompt for developers starting implementation. Include:
6664
- - Reference to this architecture and coding standards
6665
- - First epic/story to implement
6666
- - Key technical decisions to follow
6667
6622
  ==================== END: .bmad-core/templates/architecture-tmpl.yaml ====================
6668
6623
 
6669
6624
  ==================== START: .bmad-core/templates/front-end-architecture-tmpl.yaml ====================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.27.2",
3
+ "version": "4.27.4",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.27.2",
3
+ "version": "4.27.4",
4
4
  "description": "BMad Method installer - AI-powered Agile development framework",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {
@@ -1,26 +0,0 @@
1
- # Template Format Conventions
2
-
3
- Templates in the BMad method use standardized markup for AI processing. These conventions ensure consistent document generation.
4
-
5
- ## Template Markup Elements
6
-
7
- - **{{placeholders}}**: Variables to be replaced with actual content
8
- - **[[LLM: instructions]]**: Internal processing instructions for AI agents (never shown to users)
9
- - **REPEAT** sections: Content blocks that may be repeated as needed
10
- - **^^CONDITION^^** blocks: Conditional content included only if criteria are met
11
- - **@{examples}**: Example content for guidance (never output to users)
12
-
13
- ## Processing Rules
14
-
15
- - Replace all {{placeholders}} with project-specific content
16
- - Execute all [[LLM: instructions]] internally without showing users
17
- - Process conditional and repeat blocks as specified
18
- - Use examples for guidance but never include them in final output
19
- - Present only clean, formatted content to users
20
-
21
- ## Critical Guidelines
22
-
23
- - **NEVER display template markup, LLM instructions, or examples to users**
24
- - Template elements are for AI processing only
25
- - Focus on faithful template execution and clean output
26
- - All template-specific instructions are embedded within templates