bmad-method 5.0.0-beta.2 → 5.0.1

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 (131) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.md +3 -3
  2. package/.github/ISSUE_TEMPLATE/feature_request.md +3 -3
  3. package/.github/workflows/discord.yaml +11 -2
  4. package/.github/workflows/format-check.yaml +42 -0
  5. package/.github/workflows/manual-release.yaml +173 -0
  6. package/.husky/pre-commit +3 -0
  7. package/.vscode/settings.json +26 -1
  8. package/CHANGELOG.md +0 -11
  9. package/README.md +2 -0
  10. package/bmad-core/agent-teams/team-all.yaml +1 -1
  11. package/bmad-core/agents/bmad-orchestrator.md +1 -1
  12. package/bmad-core/agents/dev.md +4 -4
  13. package/bmad-core/data/bmad-kb.md +1 -1
  14. package/bmad-core/data/test-levels-framework.md +12 -12
  15. package/bmad-core/tasks/facilitate-brainstorming-session.md +1 -1
  16. package/bmad-core/tasks/nfr-assess.md +10 -10
  17. package/bmad-core/tasks/qa-gate.md +23 -23
  18. package/bmad-core/tasks/review-story.md +18 -18
  19. package/bmad-core/tasks/risk-profile.md +25 -25
  20. package/bmad-core/tasks/test-design.md +9 -9
  21. package/bmad-core/tasks/trace-requirements.md +21 -21
  22. package/bmad-core/templates/architecture-tmpl.yaml +49 -49
  23. package/bmad-core/templates/brainstorming-output-tmpl.yaml +5 -5
  24. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +31 -31
  25. package/bmad-core/templates/brownfield-prd-tmpl.yaml +13 -13
  26. package/bmad-core/templates/competitor-analysis-tmpl.yaml +19 -6
  27. package/bmad-core/templates/front-end-architecture-tmpl.yaml +21 -9
  28. package/bmad-core/templates/front-end-spec-tmpl.yaml +24 -24
  29. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +122 -104
  30. package/bmad-core/templates/market-research-tmpl.yaml +2 -2
  31. package/bmad-core/templates/prd-tmpl.yaml +9 -9
  32. package/bmad-core/templates/project-brief-tmpl.yaml +4 -4
  33. package/bmad-core/templates/qa-gate-tmpl.yaml +9 -9
  34. package/bmad-core/templates/story-tmpl.yaml +12 -12
  35. package/bmad-core/workflows/brownfield-fullstack.yaml +9 -9
  36. package/bmad-core/workflows/brownfield-service.yaml +1 -1
  37. package/bmad-core/workflows/brownfield-ui.yaml +1 -1
  38. package/bmad-core/workflows/greenfield-fullstack.yaml +1 -1
  39. package/bmad-core/workflows/greenfield-service.yaml +1 -1
  40. package/bmad-core/workflows/greenfield-ui.yaml +1 -1
  41. package/common/utils/bmad-doc-template.md +5 -5
  42. package/dist/agents/analyst.txt +28 -15
  43. package/dist/agents/architect.txt +220 -190
  44. package/dist/agents/bmad-master.txt +298 -255
  45. package/dist/agents/bmad-orchestrator.txt +1 -1
  46. package/dist/agents/pm.txt +20 -20
  47. package/dist/agents/po.txt +11 -11
  48. package/dist/agents/qa.txt +275 -618
  49. package/dist/agents/sm.txt +11 -11
  50. package/dist/agents/ux-expert.txt +23 -23
  51. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +109 -109
  52. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +75 -77
  53. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +41 -41
  54. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +483 -474
  55. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +1 -1
  56. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +149 -149
  57. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +20 -20
  58. package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +371 -358
  59. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +25 -25
  60. package/dist/teams/team-all.txt +581 -881
  61. package/dist/teams/team-fullstack.txt +316 -273
  62. package/dist/teams/team-ide-minimal.txt +276 -619
  63. package/dist/teams/team-no-ui.txt +281 -238
  64. package/docs/versioning-and-releases.md +114 -44
  65. package/eslint.config.mjs +119 -0
  66. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.4 Deployment Configuration/1.4.2 - cloudbuild.yaml +26 -26
  67. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +4 -4
  68. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +1 -1
  69. package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +26 -28
  70. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.yaml +50 -50
  71. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.yaml +23 -23
  72. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.yaml +24 -24
  73. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.yaml +42 -42
  74. package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.yaml +65 -65
  75. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yaml +5 -5
  76. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yaml +1 -1
  77. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.md +3 -3
  78. package/expansion-packs/bmad-2d-unity-game-dev/data/bmad-kb.md +1 -1
  79. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-brief-tmpl.yaml +23 -23
  80. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-design-doc-tmpl.yaml +63 -63
  81. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-story-tmpl.yaml +20 -20
  82. package/expansion-packs/bmad-2d-unity-game-dev/templates/level-design-doc-tmpl.yaml +65 -65
  83. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-dev-greenfield.yaml +5 -5
  84. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-prototype.yaml +1 -1
  85. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.yaml +20 -20
  86. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.yaml +7 -7
  87. package/package.json +62 -39
  88. package/prettier.config.mjs +32 -0
  89. package/release_notes.md +30 -0
  90. package/tools/bmad-npx-wrapper.js +10 -10
  91. package/tools/builders/web-builder.js +124 -130
  92. package/tools/bump-all-versions.js +42 -33
  93. package/tools/bump-expansion-version.js +23 -16
  94. package/tools/cli.js +10 -12
  95. package/tools/flattener/aggregate.js +10 -10
  96. package/tools/flattener/binary.js +44 -17
  97. package/tools/flattener/discovery.js +19 -18
  98. package/tools/flattener/files.js +6 -6
  99. package/tools/flattener/ignoreRules.js +125 -125
  100. package/tools/flattener/main.js +201 -304
  101. package/tools/flattener/projectRoot.js +75 -73
  102. package/tools/flattener/prompts.js +9 -9
  103. package/tools/flattener/stats.helpers.js +131 -67
  104. package/tools/flattener/stats.js +3 -3
  105. package/tools/flattener/test-matrix.js +201 -193
  106. package/tools/flattener/xml.js +33 -31
  107. package/tools/installer/bin/bmad.js +130 -89
  108. package/tools/installer/config/ide-agent-config.yaml +1 -1
  109. package/tools/installer/config/install.config.yaml +2 -2
  110. package/tools/installer/lib/config-loader.js +46 -42
  111. package/tools/installer/lib/file-manager.js +91 -113
  112. package/tools/installer/lib/ide-base-setup.js +57 -56
  113. package/tools/installer/lib/ide-setup.js +375 -343
  114. package/tools/installer/lib/installer.js +875 -714
  115. package/tools/installer/lib/memory-profiler.js +54 -53
  116. package/tools/installer/lib/module-manager.js +19 -15
  117. package/tools/installer/lib/resource-locator.js +26 -28
  118. package/tools/installer/package.json +19 -19
  119. package/tools/lib/dependency-resolver.js +26 -30
  120. package/tools/lib/yaml-utils.js +7 -7
  121. package/tools/preview-release-notes.js +66 -0
  122. package/tools/shared/bannerArt.js +3 -3
  123. package/tools/sync-installer-version.js +7 -9
  124. package/tools/update-expansion-version.js +14 -15
  125. package/tools/upgraders/v3-to-v4-upgrader.js +203 -294
  126. package/tools/version-bump.js +41 -26
  127. package/tools/yaml-format.js +56 -43
  128. package/.github/workflows/promote-to-stable.yml +0 -144
  129. package/.github/workflows/release.yaml +0 -60
  130. package/.releaserc.json +0 -21
  131. package/tools/semantic-release-sync-installer.js +0 -30
@@ -12,7 +12,7 @@ workflow:
12
12
  elicitation: advanced-elicitation
13
13
 
14
14
  agent_config:
15
- editable_sections:
15
+ editable_sections:
16
16
  - Status
17
17
  - Story
18
18
  - Acceptance Criteria
@@ -29,7 +29,7 @@ sections:
29
29
  instruction: Select the current status of the story
30
30
  owner: scrum-master
31
31
  editors: [scrum-master, dev-agent]
32
-
32
+
33
33
  - id: story
34
34
  title: Story
35
35
  type: template-text
@@ -41,7 +41,7 @@ sections:
41
41
  elicit: true
42
42
  owner: scrum-master
43
43
  editors: [scrum-master]
44
-
44
+
45
45
  - id: acceptance-criteria
46
46
  title: Acceptance Criteria
47
47
  type: numbered-list
@@ -49,7 +49,7 @@ sections:
49
49
  elicit: true
50
50
  owner: scrum-master
51
51
  editors: [scrum-master]
52
-
52
+
53
53
  - id: tasks-subtasks
54
54
  title: Tasks / Subtasks
55
55
  type: bullet-list
@@ -66,7 +66,7 @@ sections:
66
66
  elicit: true
67
67
  owner: scrum-master
68
68
  editors: [scrum-master, dev-agent]
69
-
69
+
70
70
  - id: dev-notes
71
71
  title: Dev Notes
72
72
  instruction: |
@@ -90,7 +90,7 @@ sections:
90
90
  elicit: true
91
91
  owner: scrum-master
92
92
  editors: [scrum-master]
93
-
93
+
94
94
  - id: change-log
95
95
  title: Change Log
96
96
  type: table
@@ -98,7 +98,7 @@ sections:
98
98
  instruction: Track changes made to this story document
99
99
  owner: scrum-master
100
100
  editors: [scrum-master, dev-agent, qa-agent]
101
-
101
+
102
102
  - id: dev-agent-record
103
103
  title: Dev Agent Record
104
104
  instruction: This section is populated by the development agent during implementation
@@ -111,27 +111,27 @@ sections:
111
111
  instruction: Record the specific AI agent model and version used for development
112
112
  owner: dev-agent
113
113
  editors: [dev-agent]
114
-
114
+
115
115
  - id: debug-log-references
116
116
  title: Debug Log References
117
117
  instruction: Reference any debug logs or traces generated during development
118
118
  owner: dev-agent
119
119
  editors: [dev-agent]
120
-
120
+
121
121
  - id: completion-notes
122
122
  title: Completion Notes List
123
123
  instruction: Notes about the completion of tasks and any issues encountered
124
124
  owner: dev-agent
125
125
  editors: [dev-agent]
126
-
126
+
127
127
  - id: file-list
128
128
  title: File List
129
129
  instruction: List all files created, modified, or affected during story implementation
130
130
  owner: dev-agent
131
131
  editors: [dev-agent]
132
-
132
+
133
133
  - id: qa-results
134
134
  title: QA Results
135
135
  instruction: Results from QA Agent QA review of the completed story implementation
136
136
  owner: qa-agent
137
- editors: [qa-agent]
137
+ editors: [qa-agent]
@@ -20,7 +20,7 @@ workflow:
20
20
  - Single story (< 4 hours) → Use brownfield-create-story task
21
21
  - Small feature (1-3 stories) → Use brownfield-create-epic task
22
22
  - Major enhancement (multiple epics) → Continue with full workflow
23
-
23
+
24
24
  Ask user: "Can you describe the enhancement scope? Is this a small fix, a feature addition, or a major enhancement requiring architectural changes?"
25
25
 
26
26
  - step: routing_decision
@@ -181,7 +181,7 @@ workflow:
181
181
  notes: |
182
182
  All stories implemented and reviewed!
183
183
  Project development phase complete.
184
-
184
+
185
185
  Reference: {root}/data/bmad-kb.md#IDE Development Workflow
186
186
 
187
187
  flow_diagram: |
@@ -265,33 +265,33 @@ workflow:
265
265
  {{if single_story}}: Proceeding with brownfield-create-story task for immediate implementation.
266
266
  {{if small_feature}}: Creating focused epic with brownfield-create-epic task.
267
267
  {{if major_enhancement}}: Continuing with comprehensive planning workflow.
268
-
268
+
269
269
  documentation_assessment: |
270
270
  Documentation assessment complete:
271
271
  {{if adequate}}: Existing documentation is sufficient. Proceeding directly to PRD creation.
272
272
  {{if inadequate}}: Running document-project to capture current system state before PRD.
273
-
273
+
274
274
  document_project_to_pm: |
275
275
  Project analysis complete. Key findings documented in:
276
276
  - {{document_list}}
277
277
  Use these findings to inform PRD creation and avoid re-analyzing the same aspects.
278
-
278
+
279
279
  pm_to_architect_decision: |
280
280
  PRD complete and saved as docs/prd.md.
281
281
  Architectural changes identified: {{yes/no}}
282
282
  {{if yes}}: Proceeding to create architecture document for: {{specific_changes}}
283
283
  {{if no}}: No architectural changes needed. Proceeding to validation.
284
-
284
+
285
285
  architect_to_po: "Architecture complete. Save it as docs/architecture.md. Please validate all artifacts for integration safety."
286
-
286
+
287
287
  po_to_sm: |
288
288
  All artifacts validated.
289
289
  Documentation type available: {{sharded_prd / brownfield_docs}}
290
290
  {{if sharded}}: Use standard create-next-story task.
291
291
  {{if brownfield}}: Use create-brownfield-story task to handle varied documentation formats.
292
-
292
+
293
293
  sm_story_creation: |
294
294
  Creating story from {{documentation_type}}.
295
295
  {{if missing_context}}: May need to gather additional context from user during story creation.
296
-
296
+
297
297
  complete: "All planning artifacts validated and development can begin. Stories will be created based on available documentation format."
@@ -127,7 +127,7 @@ workflow:
127
127
  notes: |
128
128
  All stories implemented and reviewed!
129
129
  Project development phase complete.
130
-
130
+
131
131
  Reference: {root}/data/bmad-kb.md#IDE Development Workflow
132
132
 
133
133
  flow_diagram: |
@@ -134,7 +134,7 @@ workflow:
134
134
  notes: |
135
135
  All stories implemented and reviewed!
136
136
  Project development phase complete.
137
-
137
+
138
138
  Reference: {root}/data/bmad-kb.md#IDE Development Workflow
139
139
 
140
140
  flow_diagram: |
@@ -159,7 +159,7 @@ workflow:
159
159
  notes: |
160
160
  All stories implemented and reviewed!
161
161
  Project development phase complete.
162
-
162
+
163
163
  Reference: {root}/data/bmad-kb.md#IDE Development Workflow
164
164
 
165
165
  flow_diagram: |
@@ -135,7 +135,7 @@ workflow:
135
135
  notes: |
136
136
  All stories implemented and reviewed!
137
137
  Service development phase complete.
138
-
138
+
139
139
  Reference: {root}/data/bmad-kb.md#IDE Development Workflow
140
140
 
141
141
  flow_diagram: |
@@ -154,7 +154,7 @@ workflow:
154
154
  notes: |
155
155
  All stories implemented and reviewed!
156
156
  Project development phase complete.
157
-
157
+
158
158
  Reference: {root}/data/bmad-kb.md#IDE Development Workflow
159
159
 
160
160
  flow_diagram: |
@@ -14,7 +14,7 @@ template:
14
14
  output:
15
15
  format: markdown
16
16
  filename: default-path/to/{{filename}}.md
17
- title: "{{variable}} Document Title"
17
+ title: '{{variable}} Document Title'
18
18
 
19
19
  workflow:
20
20
  mode: interactive
@@ -108,8 +108,8 @@ sections:
108
108
  Use `{{variable_name}}` in titles, templates, and content:
109
109
 
110
110
  ```yaml
111
- title: "Epic {{epic_number}} {{epic_title}}"
112
- template: "As a {{user_type}}, I want {{action}}, so that {{benefit}}."
111
+ title: 'Epic {{epic_number}} {{epic_title}}'
112
+ template: 'As a {{user_type}}, I want {{action}}, so that {{benefit}}.'
113
113
  ```
114
114
 
115
115
  ### Conditional Sections
@@ -212,7 +212,7 @@ choices:
212
212
  - id: criteria
213
213
  title: Acceptance Criteria
214
214
  type: numbered-list
215
- item_template: "{{criterion_number}}: {{criteria}}"
215
+ item_template: '{{criterion_number}}: {{criteria}}'
216
216
  repeatable: true
217
217
  ```
218
218
 
@@ -220,7 +220,7 @@ choices:
220
220
 
221
221
  ````yaml
222
222
  examples:
223
- - "FR6: The system must authenticate users within 2 seconds"
223
+ - 'FR6: The system must authenticate users within 2 seconds'
224
224
  - |
225
225
  ```mermaid
226
226
  sequenceDiagram
@@ -106,7 +106,7 @@ dependencies:
106
106
  ==================== START: .bmad-core/tasks/facilitate-brainstorming-session.md ====================
107
107
  ---
108
108
  docOutputLocation: docs/brainstorming-session-results.md
109
- template: ".bmad-core/templates/brainstorming-output-tmpl.yaml"
109
+ template: '.bmad-core/templates/brainstorming-output-tmpl.yaml'
110
110
  ---
111
111
 
112
112
  # Facilitate Brainstorming Session Task
@@ -1124,12 +1124,12 @@ sections:
1124
1124
  - id: introduction
1125
1125
  instruction: |
1126
1126
  This template guides creation of a comprehensive Project Brief that serves as the foundational input for product development.
1127
-
1127
+
1128
1128
  Start by asking the user which mode they prefer:
1129
-
1129
+
1130
1130
  1. **Interactive Mode** - Work through each section collaboratively
1131
1131
  2. **YOLO Mode** - Generate complete draft for review and refinement
1132
-
1132
+
1133
1133
  Before beginning, understand what inputs are available (brainstorming results, market research, competitive analysis, initial ideas) and gather project context.
1134
1134
 
1135
1135
  - id: executive-summary
@@ -1450,7 +1450,7 @@ sections:
1450
1450
  instruction: Map the end-to-end customer experience for primary segments
1451
1451
  template: |
1452
1452
  For primary customer segment:
1453
-
1453
+
1454
1454
  1. **Awareness:** {{discovery_process}}
1455
1455
  2. **Consideration:** {{evaluation_criteria}}
1456
1456
  3. **Purchase:** {{decision_triggers}}
@@ -1651,7 +1651,7 @@ sections:
1651
1651
  title: Competitor Prioritization Matrix
1652
1652
  instruction: |
1653
1653
  Help categorize competitors by market share and strategic threat level
1654
-
1654
+
1655
1655
  Create a 2x2 matrix:
1656
1656
  - Priority 1 (Core Competitors): High Market Share + High Threat
1657
1657
  - Priority 2 (Emerging Threats): Low Market Share + High Threat
@@ -1716,7 +1716,14 @@ sections:
1716
1716
  title: Feature Comparison Matrix
1717
1717
  instruction: Create a detailed comparison table of key features across competitors
1718
1718
  type: table
1719
- columns: ["Feature Category", "{{your_company}}", "{{competitor_1}}", "{{competitor_2}}", "{{competitor_3}}"]
1719
+ columns:
1720
+ [
1721
+ "Feature Category",
1722
+ "{{your_company}}",
1723
+ "{{competitor_1}}",
1724
+ "{{competitor_2}}",
1725
+ "{{competitor_3}}",
1726
+ ]
1720
1727
  rows:
1721
1728
  - category: "Core Functionality"
1722
1729
  items:
@@ -1728,7 +1735,13 @@ sections:
1728
1735
  - ["Onboarding Time", "{{time}}", "{{time}}", "{{time}}", "{{time}}"]
1729
1736
  - category: "Integration & Ecosystem"
1730
1737
  items:
1731
- - ["API Availability", "{{availability}}", "{{availability}}", "{{availability}}", "{{availability}}"]
1738
+ - [
1739
+ "API Availability",
1740
+ "{{availability}}",
1741
+ "{{availability}}",
1742
+ "{{availability}}",
1743
+ "{{availability}}",
1744
+ ]
1732
1745
  - ["Third-party Integrations", "{{number}}", "{{number}}", "{{number}}", "{{number}}"]
1733
1746
  - category: "Pricing & Plans"
1734
1747
  items:
@@ -1755,7 +1768,7 @@ sections:
1755
1768
  title: Positioning Map
1756
1769
  instruction: |
1757
1770
  Describe competitor positions on key dimensions
1758
-
1771
+
1759
1772
  Create a positioning description using 2 key dimensions relevant to the market, such as:
1760
1773
  - Price vs. Features
1761
1774
  - Ease of Use vs. Power
@@ -1790,7 +1803,7 @@ sections:
1790
1803
  title: Blue Ocean Opportunities
1791
1804
  instruction: |
1792
1805
  Identify uncontested market spaces
1793
-
1806
+
1794
1807
  List opportunities to create new market space:
1795
1808
  - Underserved segments
1796
1809
  - Unaddressed use cases
@@ -1894,11 +1907,11 @@ sections:
1894
1907
  - id: summary-details
1895
1908
  template: |
1896
1909
  **Topic:** {{session_topic}}
1897
-
1910
+
1898
1911
  **Session Goals:** {{stated_goals}}
1899
-
1912
+
1900
1913
  **Techniques Used:** {{techniques_list}}
1901
-
1914
+
1902
1915
  **Total Ideas Generated:** {{total_ideas}}
1903
1916
  - id: key-themes
1904
1917
  title: "Key Themes Identified:"
@@ -2023,7 +2036,7 @@ sections:
2023
2036
  - id: footer
2024
2037
  content: |
2025
2038
  ---
2026
-
2039
+
2027
2040
  *Session facilitated using the BMAD-METHOD brainstorming framework*
2028
2041
  ==================== END: .bmad-core/templates/brainstorming-output-tmpl.yaml ====================
2029
2042
 
@@ -2328,7 +2341,7 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing
2328
2341
 
2329
2342
  - **Claude Code**: `/agent-name` (e.g., `/bmad-master`)
2330
2343
  - **Cursor**: `@agent-name` (e.g., `@bmad-master`)
2331
- - **Windsurf**: `@agent-name` (e.g., `@bmad-master`)
2344
+ - **Windsurf**: `/agent-name` (e.g., `/bmad-master`)
2332
2345
  - **Trae**: `@agent-name` (e.g., `@bmad-master`)
2333
2346
  - **Roo Code**: Select mode from mode selector (e.g., `bmad-master`)
2334
2347
  - **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.