bmad-method 4.5.1 → 4.6.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 (30) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/bmad-core/agents/bmad-orchestrator.md +55 -66
  3. package/bmad-core/agents/pm.md +0 -1
  4. package/bmad-core/tasks/doc-migration-task.md +9 -9
  5. package/bmad-core/tasks/index-docs.md +3 -7
  6. package/bmad-core/templates/front-end-spec-tmpl.md +1 -1
  7. package/bmad-core/templates/fullstack-architecture-tmpl.md +60 -60
  8. package/bmad-core/templates/prd-tmpl.md +2 -2
  9. package/bmad-core/workflows/brownfield-fullstack.yml +19 -58
  10. package/bmad-core/workflows/brownfield-service.yml +19 -58
  11. package/bmad-core/workflows/brownfield-ui.yml +20 -59
  12. package/bmad-core/workflows/greenfield-fullstack.yml +31 -77
  13. package/bmad-core/workflows/greenfield-service.yml +22 -68
  14. package/bmad-core/workflows/greenfield-ui.yml +30 -76
  15. package/dist/agents/architect.txt +60 -60
  16. package/dist/agents/bmad-master.txt +66 -70
  17. package/dist/agents/bmad-orchestrator.txt +55 -66
  18. package/dist/agents/pm.txt +2 -467
  19. package/dist/agents/ux-expert.txt +1 -1
  20. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +55 -66
  21. package/dist/expansion-packs/expansion-creator/agents/bmad-the-creator.txt +39 -32
  22. package/dist/teams/team-all.txt +368 -1099
  23. package/dist/teams/team-fullstack.txt +286 -1017
  24. package/dist/teams/team-ide-minimal.txt +55 -66
  25. package/dist/teams/team-no-ui.txt +224 -785
  26. package/docs/versioning-and-releases.md +6 -6
  27. package/expansion-packs/expansion-creator/tasks/generate-expansion-pack.md +17 -13
  28. package/package.json +1 -1
  29. package/tools/installer/package.json +1 -1
  30. package/bmad-core/templates/simple-project-prd-tmpl.md +0 -461
@@ -2137,7 +2137,7 @@ You are now operating as a Documentation Indexer. Your goal is to ensure all doc
2137
2137
 
2138
2138
  The index should be organized as follows:
2139
2139
 
2140
- `````markdown
2140
+ ```markdown
2141
2141
  # Documentation Index
2142
2142
 
2143
2143
  ## Root Documents
@@ -2170,7 +2170,7 @@ Documents within the `another-folder/` directory:
2170
2170
 
2171
2171
  Description of nested document.
2172
2172
 
2173
- ````text
2173
+ ```
2174
2174
 
2175
2175
  ### Index Entry Format
2176
2176
 
@@ -2180,10 +2180,7 @@ Each entry should follow this format:
2180
2180
  ### [Document Title](relative/path/to/file.md)
2181
2181
 
2182
2182
  Brief description of the document's purpose and contents.
2183
- ````
2184
- `````
2185
-
2186
- ````
2183
+ ```
2187
2184
 
2188
2185
  ### Rules of Operation
2189
2186
 
@@ -2261,7 +2258,6 @@ Please provide:
2261
2258
  5. Whether to include hidden files/folders (starting with `.`)
2262
2259
 
2263
2260
  Would you like to proceed with documentation indexing? Please provide the required input above.
2264
- ````
2265
2261
  ==================== END: tasks#index-docs ====================
2266
2262
 
2267
2263
  ==================== START: tasks#shard-doc ====================
@@ -4607,7 +4603,7 @@ Create subsections for each major flow. After presenting all flows, apply `tasks
4607
4603
 
4608
4604
  ```mermaid
4609
4605
  {{flow_diagram}}
4610
- ```text
4606
+ ```
4611
4607
 
4612
4608
  **Edge Cases & Error Handling:**
4613
4609
 
@@ -4974,7 +4970,7 @@ Document the choice and key services that will be used.]]
4974
4970
 
4975
4971
  ### Repository Structure
4976
4972
 
4977
- [[LLM: Define the repository approach based on PRD requirements and platform choice:
4973
+ [[LLM: Define the repository approach based on PRD requirements and platform choice, explain your rationale or ask quetsions to the user if unsure:
4978
4974
 
4979
4975
  1. For modern fullstack apps, monorepo is often preferred
4980
4976
  2. Consider tooling (Nx, Turborepo, Lerna, npm workspaces)
@@ -4999,9 +4995,9 @@ Document the choice and key services that will be used.]]
4999
4995
 
5000
4996
  Use appropriate diagram type for clarity.]]
5001
4997
 
5002
- ````mermaid
4998
+ ```mermaid
5003
4999
  {{architecture_diagram}}
5004
- ```text
5000
+ ```
5005
5001
 
5006
5002
  ### Architectural Patterns
5007
5003
 
@@ -5112,7 +5108,7 @@ After presenting all data models, apply `tasks#advanced-elicitation` protocol]]
5112
5108
  model_interface;
5113
5109
  }
5114
5110
  }
5115
- ````
5111
+ ```
5116
5112
 
5117
5113
  **Relationships:**
5118
5114
 
@@ -5136,7 +5132,7 @@ After presenting all data models, apply `tasks#advanced-elicitation` protocol]]
5136
5132
 
5137
5133
  **TypeScript Interface:**
5138
5134
 
5139
- ````typescript
5135
+ ```typescript
5140
5136
  interface User {
5141
5137
  id: string;
5142
5138
  email: string;
@@ -5152,7 +5148,7 @@ interface UserProfile {
5152
5148
  bio?: string;
5153
5149
  preferences: Record<string, any>;
5154
5150
  }
5155
- ```text
5151
+ ```
5156
5152
 
5157
5153
  **Relationships:**
5158
5154
 
@@ -5190,16 +5186,16 @@ servers:
5190
5186
  '[object Object]': null
5191
5187
  description:
5192
5188
  '[object Object]': null
5193
- ````
5189
+ ```
5194
5190
 
5195
5191
  ^^/CONDITION: has_rest_api^^
5196
5192
 
5197
5193
  ^^CONDITION: has_graphql_api^^
5198
5194
 
5199
- ````graphql
5195
+ ```graphql
5200
5196
  # GraphQL Schema
5201
5197
  {{graphql_schema}}
5202
- ```text
5198
+ ```
5203
5199
 
5204
5200
  ^^/CONDITION: has_graphql_api^^
5205
5201
 
@@ -5212,7 +5208,7 @@ servers:
5212
5208
  trpc_routers;
5213
5209
  }
5214
5210
  }
5215
- ````
5211
+ ```
5216
5212
 
5217
5213
  ^^/CONDITION: has_trpc_api^^
5218
5214
 
@@ -5357,19 +5353,19 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5357
5353
 
5358
5354
  **Component Organization:**
5359
5355
 
5360
- `````text
5361
- {{component_structure}}
5362
5356
  ```text
5357
+ {{component_structure}}
5358
+ ```
5363
5359
 
5364
5360
  **Component Template:**
5365
5361
 
5366
- ````typescript
5362
+ ```typescript
5367
5363
  {
5368
5364
  {
5369
5365
  component_template;
5370
5366
  }
5371
5367
  }
5372
- ```text
5368
+ ```
5373
5369
 
5374
5370
  ### State Management Architecture
5375
5371
 
@@ -5383,7 +5379,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5383
5379
  state_structure;
5384
5380
  }
5385
5381
  }
5386
- `````
5382
+ ```
5387
5383
 
5388
5384
  **State Management Patterns:**
5389
5385
 
@@ -5398,17 +5394,17 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5398
5394
 
5399
5395
  ```text
5400
5396
  {{route_structure}}
5401
- ```text
5397
+ ```
5402
5398
 
5403
5399
  **Protected Route Pattern:**
5404
5400
 
5405
- ````typescript
5401
+ ```typescript
5406
5402
  {
5407
5403
  {
5408
5404
  protected_route_example;
5409
5405
  }
5410
5406
  }
5411
- ```text
5407
+ ```
5412
5408
 
5413
5409
  ### Frontend Services Layer
5414
5410
 
@@ -5422,17 +5418,17 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5422
5418
  api_client_setup;
5423
5419
  }
5424
5420
  }
5425
- ````
5421
+ ```
5426
5422
 
5427
5423
  **Service Example:**
5428
5424
 
5429
- ````typescript
5425
+ ```typescript
5430
5426
  {
5431
5427
  {
5432
5428
  service_example;
5433
5429
  }
5434
5430
  }
5435
- ```text
5431
+ ```
5436
5432
 
5437
5433
  ## Backend Architecture
5438
5434
 
@@ -5447,11 +5443,11 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5447
5443
  ^^CONDITION: serverless^^
5448
5444
  **Function Organization:**
5449
5445
 
5450
- ````
5446
+ ```text
5451
5447
 
5452
5448
  {{function_structure}}
5453
5449
 
5454
- ````text
5450
+ ```
5455
5451
 
5456
5452
  **Function Template:**
5457
5453
 
@@ -5461,26 +5457,26 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5461
5457
  function_template;
5462
5458
  }
5463
5459
  }
5464
- ````
5460
+ ```
5465
5461
 
5466
5462
  ^^/CONDITION: serverless^^
5467
5463
 
5468
5464
  ^^CONDITION: traditional_server^^
5469
5465
  **Controller/Route Organization:**
5470
5466
 
5471
- `````text
5472
- {{controller_structure}}
5473
5467
  ```text
5468
+ {{controller_structure}}
5469
+ ```
5474
5470
 
5475
5471
  **Controller Template:**
5476
5472
 
5477
- ````typescript
5473
+ ```typescript
5478
5474
  {
5479
5475
  {
5480
5476
  controller_template;
5481
5477
  }
5482
5478
  }
5483
- ```text
5479
+ ```
5484
5480
 
5485
5481
  ^^/CONDITION: traditional_server^^
5486
5482
 
@@ -5492,17 +5488,17 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5492
5488
 
5493
5489
  ```sql
5494
5490
  {{database_schema}}
5495
- `````
5491
+ ```
5496
5492
 
5497
5493
  **Data Access Layer:**
5498
5494
 
5499
- ````typescript
5495
+ ```typescript
5500
5496
  {
5501
5497
  {
5502
5498
  repository_pattern;
5503
5499
  }
5504
5500
  }
5505
- ```text
5501
+ ```
5506
5502
 
5507
5503
  ### Authentication and Authorization
5508
5504
 
@@ -5512,17 +5508,17 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5512
5508
 
5513
5509
  ```mermaid
5514
5510
  {{auth_flow_diagram}}
5515
- ````
5511
+ ```
5516
5512
 
5517
5513
  **Middleware/Guards:**
5518
5514
 
5519
- ````typescript
5515
+ ```typescript
5520
5516
  {
5521
5517
  {
5522
5518
  auth_middleware;
5523
5519
  }
5524
5520
  }
5525
- ```text
5521
+ ```
5526
5522
 
5527
5523
  ## Unified Project Structure
5528
5524
 
@@ -5582,7 +5578,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5582
5578
  ├── package.json # Root package.json
5583
5579
  ├── {{monorepo_config}} # Monorepo configuration
5584
5580
  └── README.md
5585
- ````
5581
+ ```
5586
5582
 
5587
5583
  @{example: vercel_structure}
5588
5584
  apps/
@@ -5604,19 +5600,19 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5604
5600
 
5605
5601
  **Prerequisites:**
5606
5602
 
5607
- ````bash
5603
+ ```bash
5608
5604
  {{prerequisites_commands}}
5609
- ```text
5605
+ ```
5610
5606
 
5611
5607
  **Initial Setup:**
5612
5608
 
5613
5609
  ```bash
5614
5610
  {{setup_commands}}
5615
- ````
5611
+ ```
5616
5612
 
5617
5613
  **Development Commands:**
5618
5614
 
5619
- ````bash
5615
+ ```bash
5620
5616
  # Start all services
5621
5617
  {{start_all_command}}
5622
5618
 
@@ -5628,7 +5624,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5628
5624
 
5629
5625
  # Run tests
5630
5626
  {{test_commands}}
5631
- ```text
5627
+ ```
5632
5628
 
5633
5629
  ### Environment Configuration
5634
5630
 
@@ -5643,7 +5639,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5643
5639
 
5644
5640
  # Shared
5645
5641
  {{shared_env_vars}}
5646
- ````
5642
+ ```
5647
5643
 
5648
5644
  ## Deployment Architecture
5649
5645
 
@@ -5666,9 +5662,9 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5666
5662
 
5667
5663
  ### CI/CD Pipeline
5668
5664
 
5669
- ````yaml
5665
+ ```yaml
5670
5666
  '[object Object]': null
5671
- ```text
5667
+ ```
5672
5668
 
5673
5669
  ### Environments
5674
5670
 
@@ -5726,7 +5722,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5726
5722
 
5727
5723
  ### Testing Pyramid
5728
5724
 
5729
- ````
5725
+ ```text
5730
5726
 
5731
5727
  E2E Tests
5732
5728
  / \
@@ -5735,17 +5731,17 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5735
5731
  / \
5736
5732
  Frontend Unit Backend Unit
5737
5733
 
5738
- ```text
5734
+ ```
5739
5735
 
5740
5736
  ### Test Organization
5741
5737
 
5742
5738
  **Frontend Tests:**
5743
5739
 
5744
- ```
5740
+ ```text
5745
5741
 
5746
5742
  {{frontend_test_structure}}
5747
5743
 
5748
- ````text
5744
+ ```
5749
5745
 
5750
5746
  **Backend Tests:**
5751
5747
 
@@ -5753,15 +5749,15 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5753
5749
 
5754
5750
  {{backend_test_structure}}
5755
5751
 
5756
- ```text
5752
+ ```
5757
5753
 
5758
5754
  **E2E Tests:**
5759
5755
 
5760
- ````
5756
+ ```text
5761
5757
 
5762
5758
  {{e2e_test_structure}}
5763
5759
 
5764
- ````text
5760
+ ```
5765
5761
 
5766
5762
  ### Test Examples
5767
5763
 
@@ -5773,17 +5769,17 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5773
5769
  frontend_test_example;
5774
5770
  }
5775
5771
  }
5776
- ````
5772
+ ```
5777
5773
 
5778
5774
  **Backend API Test:**
5779
5775
 
5780
- ````typescript
5776
+ ```typescript
5781
5777
  {
5782
5778
  {
5783
5779
  backend_test_example;
5784
5780
  }
5785
5781
  }
5786
- ```text
5782
+ ```
5787
5783
 
5788
5784
  **E2E Test:**
5789
5785
 
@@ -5793,7 +5789,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5793
5789
  e2e_test_example;
5794
5790
  }
5795
5791
  }
5796
- ````
5792
+ ```
5797
5793
 
5798
5794
  ## Coding Standards
5799
5795
 
@@ -5834,9 +5830,9 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
5834
5830
 
5835
5831
  ### Error Flow
5836
5832
 
5837
- ````mermaid
5833
+ ```mermaid
5838
5834
  {{error_flow_diagram}}
5839
- ```text
5835
+ ```
5840
5836
 
5841
5837
  ### Error Response Format
5842
5838
 
@@ -5850,17 +5846,17 @@ interface ApiError {
5850
5846
  requestId: string;
5851
5847
  };
5852
5848
  }
5853
- ````
5849
+ ```
5854
5850
 
5855
5851
  ### Frontend Error Handling
5856
5852
 
5857
- ````typescript
5853
+ ```typescript
5858
5854
  {
5859
5855
  {
5860
5856
  frontend_error_handler;
5861
5857
  }
5862
5858
  }
5863
- ```text
5859
+ ```
5864
5860
 
5865
5861
  ### Backend Error Handling
5866
5862
 
@@ -5870,7 +5866,7 @@ interface ApiError {
5870
5866
  backend_error_handler;
5871
5867
  }
5872
5868
  }
5873
- ````
5869
+ ```
5874
5870
 
5875
5871
  ## Monitoring and Observability
5876
5872
 
@@ -6289,7 +6285,7 @@ These replace the standard elicitation options when working on market research d
6289
6285
  CRITICAL: Epics MUST be logically sequential following agile best practices:
6290
6286
 
6291
6287
  - Each epic should deliver a significant, end-to-end, fully deployable increment of testable functionality
6292
- - Epic 1 must establish foundational project infrastructure (app setup, Git, CI/CD, core services) unless we are adding new functionality to an existing app, while also delivering an initial piece of functionality, even as simple as a health-check route or display of a simple canary page
6288
+ - Epic 1 must establish foundational project infrastructure (app setup, Git, CI/CD, core services) unless we are adding new functionality to an existing app, while also delivering an initial piece of functionality, even as simple as a health-check route or display of a simple canary page - remember this when we produce the stories for the first epic!
6293
6289
  - Each subsequent epic builds upon previous epics' functionality delivering major blocks of functionality that provide tangible value to users or business when deployed
6294
6290
  - Not every project needs multiple epics, an epic needs to deliver value. For example, an API completed can deliver value even if a UI is not complete and planned for a separate epic.
6295
6291
  - Err on the side of less epics, but let the user know your rationale and offer options for splitting them if it seems some are too large or focused on disparate things.
@@ -6321,7 +6317,7 @@ CRITICAL: Epics MUST be logically sequential following agile best practices:
6321
6317
  [[LLM: CRITICAL STORY SEQUENCING REQUIREMENTS:
6322
6318
 
6323
6319
  - Stories within each epic MUST be logically sequential
6324
- - Each story should be a "vertical slice" delivering complete functionality
6320
+ - Each story should be a "vertical slice" delivering complete functionality aside from early enabler stories for project foundation
6325
6321
  - No story should depend on work from a later story or epic
6326
6322
  - Identify and note any direct prerequisite stories
6327
6323
  - Focus on "what" and "why" not "how" (leave technical implementation to Architect) yet be precise enough to support a logical sequential order of operations from story to story.
@@ -63,72 +63,68 @@ persona:
63
63
  - When embodied, specialized persona's principles take precedence
64
64
  - Be explicit about active persona and current task
65
65
  - Always use numbered lists for choices
66
- - Process (*) commands immediately
66
+ - Process commands starting with * immediately
67
+ - Always remind users that commands require * prefix
67
68
  startup:
68
- - Announce: Hey! I'm BMad, your BMAD-METHOD orchestrator. I can become any specialized agent, suggest workflows, explain setup, or help with any BMAD task. Type *help for options.
69
+ - Announce: Introduce yourself as the BMAD Orchestrator, explain you can coordinate agents and workflows
70
+ - IMPORTANT: Tell users that all commands start with * (e.g., *help, *agent, *workflow)
71
+ - Mention *help shows all available commands and options
69
72
  - Assess user goal against available agents and workflows in this bundle
70
- - If clear match to an agent's expertise, suggest transformation
71
- - If project-oriented, explore available workflows and guide selection
72
- - Load resources only when needed
73
- commands:
74
- - '*help" - Show commands/workflows/agents'
75
- - '*chat-mode" - Conversational mode with advanced-elicitation'
76
- - '*kb-mode" - Load knowledge base for full BMAD help'
77
- - '*status" - Show current context/agent/progress'
78
- - '*agent {name}" - Transform into agent (list if unspecified)'
79
- - '*exit" - Return to BMad or exit (confirm if exiting BMad)'
80
- - '*task {name}" - Run task (list if unspecified)'
81
- - '*workflow {type}" - Start/list workflows'
82
- - '*workflow-guidance" - Get help selecting the right workflow for your project'
83
- - '*checklist {name}" - Execute checklist (list if unspecified)'
84
- - '*yolo" - Toggle skip confirmations'
85
- - '*party-mode" - Group chat with all agents'
86
- - '*doc-out" - Output full document'
87
- help-format:
88
- - When *help is called, focus on agent capabilities and what each can do
89
- - List actual agent names with their specializations and deliverables
90
- - List actual workflow names with descriptions
91
- - DO NOT list individual tasks/checklists (these belong to specific agents)
92
- - Emphasize that users should switch to an agent to access its specific capabilities
93
- - Format examples:
94
- - "*agent game-designer: Game Design Specialist"
95
- - " Specializes in: Game concepts, mechanics, level design"
96
- - " Can create: Game design documents, level designs, game briefs"
73
+ - If clear match to an agent's expertise, suggest transformation with *agent command
74
+ - If project-oriented, suggest *workflow-guidance to explore options
75
+ - Load resources only when needed - never pre-load
76
+ commands: # All commands require * prefix when used (e.g., *help, *agent pm)
77
+ help: Show this guide with available agents and workflows
78
+ chat-mode: Start conversational mode for detailed assistance
79
+ kb-mode: Load full BMAD knowledge base
80
+ status: Show current context, active agent, and progress
81
+ agent: Transform into a specialized agent (list if name not specified)
82
+ exit: Return to BMad or exit session
83
+ task: Run a specific task (list if name not specified)
84
+ workflow: Start a specific workflow (list if name not specified)
85
+ workflow-guidance: Get personalized help selecting the right workflow
86
+ checklist: Execute a checklist (list if name not specified)
87
+ yolo: Toggle skip confirmations mode
88
+ party-mode: Group chat with all agents
89
+ doc-out: Output full document
97
90
  help-display-template: |
98
- 🎭 BMad Orchestrator - Your Gateway to Specialized Agents
91
+ === BMAD Orchestrator Commands ===
92
+ All commands must start with * (asterisk)
99
93
 
100
- I coordinate specialized agents for different tasks. Tell me what you need, and I'll connect you with the right expert!
94
+ Core Commands:
95
+ *help ............... Show this guide
96
+ *chat-mode .......... Start conversational mode for detailed assistance
97
+ *kb-mode ............ Load full BMAD knowledge base
98
+ *status ............. Show current context, active agent, and progress
99
+ *exit ............... Return to BMad or exit session
101
100
 
102
- Orchestrator Commands:
103
- *help: Show this guide
104
- *chat-mode: Start conversational mode for detailed assistance
105
- *kb-mode: Load full BMAD knowledge base
106
- *status: Show current context, active agent, and progress
107
- *yolo: Toggle skip confirmations mode
108
- *party-mode: Group chat with all agents
109
- *doc-out: Output full document
110
- *exit: Return to BMad or exit session
111
-
112
- Agent Management:
113
- *agent {name}: Transform into a specialized agent
114
- *task {name}: Run a specific task (when in an agent)
115
- *checklist {name}: Execute a checklist (when in an agent)
101
+ Agent & Task Management:
102
+ *agent [name] ....... Transform into specialized agent (list if no name)
103
+ *task [name] ........ Run specific task (list if no name, requires agent)
104
+ *checklist [name] ... Execute checklist (list if no name, requires agent)
116
105
 
117
106
  Workflow Commands:
118
- *workflow {name}: Start a specific workflow directly
119
- *workflow-guidance: Get personalized help selecting the right workflow for your project
107
+ *workflow [name] .... Start specific workflow (list if no name)
108
+ *workflow-guidance .. Get personalized help selecting the right workflow
109
+
110
+ Other Commands:
111
+ *yolo ............... Toggle skip confirmations mode
112
+ *party-mode ......... Group chat with all agents
113
+ *doc-out ............ Output full document
120
114
 
121
- Available Specialist Agents:
122
- [For each agent in bundle, show:
123
- *agent {name}: {role/title}
124
- Specializes in: {key capabilities from agent's whenToUse}
125
- Can create: {list of documents/deliverables this agent produces}]
115
+ === Available Specialist Agents ===
116
+ [Dynamically list each agent in bundle with format:
117
+ *agent {id}: {title}
118
+ When to use: {whenToUse}
119
+ Key deliverables: {main outputs/documents}]
126
120
 
127
- Available Workflows:
128
- [For each workflow in bundle, show:
129
- *workflow {name}: {workflow description}]
121
+ === Available Workflows ===
122
+ [Dynamically list each workflow in bundle with format:
123
+ *workflow {id}: {name}
124
+ Purpose: {description}]
130
125
 
131
- 💡 Tip: Each agent has their own tasks, templates, and checklists. Switch to an agent to see what they can do!
126
+ 💡 Tip: Each agent has unique tasks, templates, and checklists. Switch to an agent to access their capabilities!
127
+
132
128
  fuzzy-matching:
133
129
  - 85% confidence threshold
134
130
  - Show numbered list if unsure
@@ -139,24 +135,17 @@ transformation:
139
135
  loading:
140
136
  - KB: Only for *kb-mode or BMAD questions
141
137
  - Agents: Only when transforming
142
- - 'Templates/Tasks: Only when executing'
138
+ - Templates/Tasks: Only when executing
143
139
  - Always indicate loading
144
140
  workflow-guidance:
145
141
  - Discover available workflows in the bundle at runtime
146
142
  - Understand each workflow's purpose, options, and decision points
147
143
  - Ask clarifying questions based on the workflow's structure
148
144
  - Guide users through workflow selection when multiple options exist
149
- - For workflows with divergent paths (e.g., simple vs complex), help users choose the right path
145
+ - For workflows with divergent paths, help users choose the right path
150
146
  - Adapt questions to the specific domain (e.g., game dev vs infrastructure vs web dev)
151
147
  - Only recommend workflows that actually exist in the current bundle
152
- workflow-guidance-command:
153
- - When *workflow-guidance is called, start an interactive session
154
- - First, list all available workflows with brief descriptions
155
- - Ask about the user's project goals and constraints
156
- - Based on answers, recommend the most suitable workflow
157
- - If a workflow has multiple paths, help choose between them (e.g., complex vs simple project flow)
158
- - Explain what documents will be created and which agents will be involved
159
- - Offer to start the recommended workflow immediately
148
+ - When *workflow-guidance is called, start an interactive session and list all available workflows with brief descriptions
160
149
  dependencies:
161
150
  tasks:
162
151
  - advanced-elicitation