bmad-method 6.0.0-alpha.5 → 6.0.0-alpha.6

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 (161) hide show
  1. package/.claude/agents/bmad-analysis/api-documenter.md +102 -0
  2. package/.claude/agents/bmad-analysis/codebase-analyzer.md +82 -0
  3. package/.claude/agents/bmad-analysis/data-analyst.md +101 -0
  4. package/.claude/agents/bmad-analysis/pattern-detector.md +84 -0
  5. package/.claude/agents/bmad-planning/dependency-mapper.md +83 -0
  6. package/.claude/agents/bmad-planning/epic-optimizer.md +81 -0
  7. package/.claude/agents/bmad-planning/requirements-analyst.md +61 -0
  8. package/.claude/agents/bmad-planning/technical-decisions-curator.md +168 -0
  9. package/.claude/agents/bmad-planning/trend-spotter.md +115 -0
  10. package/.claude/agents/bmad-planning/user-journey-mapper.md +123 -0
  11. package/.claude/agents/bmad-planning/user-researcher.md +72 -0
  12. package/.claude/agents/bmad-research/market-researcher.md +51 -0
  13. package/.claude/agents/bmad-research/tech-debt-auditor.md +106 -0
  14. package/.claude/agents/bmad-review/document-reviewer.md +102 -0
  15. package/.claude/agents/bmad-review/technical-evaluator.md +68 -0
  16. package/.claude/agents/bmad-review/test-coverage-analyzer.md +108 -0
  17. package/.claude/commands/bmad/bmm/workflows/README.md +2 -2
  18. package/.claude/commands/bmad/bmm/workflows/prd.md +1 -1
  19. package/.claude/commands/bmad/bmm/workflows/tech-spec.md +3 -3
  20. package/.claude/commands/bmad/core/workflows/README.md +0 -10
  21. package/.claude/settings.local.json +3 -4
  22. package/CONTRIBUTING.md +1 -13
  23. package/bmad/_cfg/agent-manifest.csv +0 -6
  24. package/bmad/_cfg/files-manifest.csv +26 -78
  25. package/bmad/_cfg/ides/claude-code.yaml +4 -3
  26. package/bmad/_cfg/manifest.yaml +3 -5
  27. package/bmad/_cfg/task-manifest.csv +0 -4
  28. package/bmad/_cfg/tool-manifest.csv +0 -1
  29. package/bmad/_cfg/workflow-manifest.csv +2 -8
  30. package/bmad/bmb/config.yaml +2 -2
  31. package/bmad/bmb/workflows/audit-workflow/instructions.md +1 -1
  32. package/bmad/bmm/config.yaml +4 -3
  33. package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +1 -19
  34. package/bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +10 -9
  35. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +23 -34
  36. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +105 -331
  37. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +23 -11
  38. package/bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +23 -38
  39. package/bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +1 -1
  40. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +38 -16
  41. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +1 -19
  42. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +35 -32
  43. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +2 -2
  44. package/bmad/bmm/workflows/3-solutioning/architecture/instructions.md +7 -18
  45. package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +1 -18
  46. package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +6 -6
  47. package/bmad/bmm/workflows/techdoc/documentation-standards.md +24 -1
  48. package/bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
  49. package/bmad/core/config.yaml +2 -2
  50. package/package.json +1 -1
  51. package/src/modules/bmm/_module-installer/install-config.yaml +5 -0
  52. package/src/modules/bmm/docs/README.md +10 -9
  53. package/src/modules/bmm/docs/agents-guide.md +1 -1
  54. package/src/modules/bmm/docs/brownfield-guide.md +5 -6
  55. package/src/modules/bmm/docs/enterprise-agentic-development.md +3 -3
  56. package/src/modules/bmm/docs/faq.md +6 -6
  57. package/src/modules/bmm/docs/glossary.md +8 -8
  58. package/src/modules/bmm/docs/quick-spec-flow.md +3 -3
  59. package/src/modules/bmm/docs/quick-start.md +5 -5
  60. package/src/modules/bmm/docs/scale-adaptive-system.md +1 -1
  61. package/src/modules/bmm/docs/test-architecture.md +329 -0
  62. package/src/modules/bmm/docs/troubleshooting.md +6 -6
  63. package/src/modules/bmm/docs/workflows-analysis.md +64 -28
  64. package/src/modules/bmm/docs/workflows-implementation.md +196 -1670
  65. package/src/modules/bmm/docs/workflows-planning.md +74 -35
  66. package/src/modules/bmm/docs/workflows-solutioning.md +46 -16
  67. package/src/modules/bmm/workflows/techdoc/documentation-standards.md +24 -1
  68. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
  69. package/tools/cli/installers/lib/core/config-collector.js +39 -11
  70. package/tools/cli/installers/lib/core/ide-config-manager.js +3 -1
  71. package/tools/cli/installers/lib/core/installer.js +20 -9
  72. package/tools/cli/installers/lib/core/manifest-generator.js +3 -1
  73. package/tools/cli/installers/lib/core/manifest.js +6 -2
  74. package/tools/cli/installers/lib/modules/manager.js +6 -0
  75. package/tools/cli/lib/config.js +3 -1
  76. package/tools/cli/lib/ui.js +5 -5
  77. package/tools/cli/lib/yaml-format.js +2 -1
  78. package/tools/schema/agent.js +2 -0
  79. package/.claude/commands/bmad/bmm/agents/paige.md +0 -82
  80. package/.claude/commands/bmad/bmm/workflows/tech-spec-sm.md +0 -15
  81. package/bmad/_cfg/agents/bmm-paige.customize.yaml +0 -42
  82. package/bmad/_cfg/agents/cis-brainstorming-coach.customize.yaml +0 -42
  83. package/bmad/_cfg/agents/cis-creative-problem-solver.customize.yaml +0 -42
  84. package/bmad/_cfg/agents/cis-design-thinking-coach.customize.yaml +0 -42
  85. package/bmad/_cfg/agents/cis-innovation-strategist.customize.yaml +0 -42
  86. package/bmad/_cfg/agents/cis-storyteller.customize.yaml +0 -42
  87. package/bmad/bmb/agents/bmad-builder.md.bak +0 -70
  88. package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -23
  89. package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -42
  90. package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
  91. package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -40
  92. package/bmad/bmb/workflows/edit-agent/workflow.yaml.bak +0 -33
  93. package/bmad/bmb/workflows/edit-module/workflow.yaml.bak +0 -34
  94. package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -27
  95. package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -29
  96. package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -32
  97. package/bmad/bmm/README.md.bak +0 -169
  98. package/bmad/bmm/agents/analyst.md.bak +0 -67
  99. package/bmad/bmm/agents/architect.md.bak +0 -73
  100. package/bmad/bmm/agents/dev.md.bak +0 -69
  101. package/bmad/bmm/agents/paige.md.bak +0 -82
  102. package/bmad/bmm/agents/pm.md.bak +0 -76
  103. package/bmad/bmm/agents/sm.md.bak +0 -85
  104. package/bmad/bmm/agents/tea.md.bak +0 -72
  105. package/bmad/bmm/agents/ux-designer.md.bak +0 -71
  106. package/bmad/bmm/docs/README.md +0 -235
  107. package/bmad/bmm/docs/agents-guide.md +0 -1057
  108. package/bmad/bmm/docs/brownfield-guide.md +0 -759
  109. package/bmad/bmm/docs/enterprise-agentic-development.md +0 -680
  110. package/bmad/bmm/docs/faq.md +0 -589
  111. package/bmad/bmm/docs/glossary.md +0 -321
  112. package/bmad/bmm/docs/party-mode.md +0 -224
  113. package/bmad/bmm/docs/quick-spec-flow.md +0 -652
  114. package/bmad/bmm/docs/quick-start.md +0 -366
  115. package/bmad/bmm/docs/scale-adaptive-system.md +0 -599
  116. package/bmad/bmm/docs/troubleshooting.md +0 -680
  117. package/bmad/bmm/docs/workflow-architecture-reference.md +0 -371
  118. package/bmad/bmm/docs/workflow-document-project-reference.md +0 -487
  119. package/bmad/bmm/docs/workflows-analysis.md +0 -670
  120. package/bmad/bmm/docs/workflows-implementation.md +0 -1758
  121. package/bmad/bmm/docs/workflows-planning.md +0 -1086
  122. package/bmad/bmm/docs/workflows-solutioning.md +0 -726
  123. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml.bak +0 -60
  124. package/bmad/bmm/workflows/techdoc/documentation-standards.md.bak +0 -238
  125. package/bmad/bmm/workflows/workflow-status/init/workflow.yaml.bak +0 -27
  126. package/bmad/cis/README.md +0 -153
  127. package/bmad/cis/agents/README.md +0 -104
  128. package/bmad/cis/agents/brainstorming-coach.md +0 -62
  129. package/bmad/cis/agents/brainstorming-coach.md.bak +0 -62
  130. package/bmad/cis/agents/creative-problem-solver.md +0 -62
  131. package/bmad/cis/agents/creative-problem-solver.md.bak +0 -62
  132. package/bmad/cis/agents/design-thinking-coach.md +0 -62
  133. package/bmad/cis/agents/design-thinking-coach.md.bak +0 -62
  134. package/bmad/cis/agents/innovation-strategist.md +0 -62
  135. package/bmad/cis/agents/innovation-strategist.md.bak +0 -62
  136. package/bmad/cis/agents/storyteller.md +0 -59
  137. package/bmad/cis/agents/storyteller.md.bak +0 -59
  138. package/bmad/cis/config.yaml +0 -10
  139. package/bmad/cis/teams/creative-squad.yaml +0 -6
  140. package/bmad/cis/workflows/README.md +0 -139
  141. package/bmad/cis/workflows/design-thinking/README.md +0 -56
  142. package/bmad/cis/workflows/design-thinking/design-methods.csv +0 -31
  143. package/bmad/cis/workflows/design-thinking/instructions.md +0 -200
  144. package/bmad/cis/workflows/design-thinking/template.md +0 -111
  145. package/bmad/cis/workflows/design-thinking/workflow.yaml +0 -32
  146. package/bmad/cis/workflows/innovation-strategy/README.md +0 -56
  147. package/bmad/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
  148. package/bmad/cis/workflows/innovation-strategy/instructions.md +0 -274
  149. package/bmad/cis/workflows/innovation-strategy/template.md +0 -189
  150. package/bmad/cis/workflows/innovation-strategy/workflow.yaml +0 -32
  151. package/bmad/cis/workflows/problem-solving/README.md +0 -56
  152. package/bmad/cis/workflows/problem-solving/instructions.md +0 -250
  153. package/bmad/cis/workflows/problem-solving/solving-methods.csv +0 -31
  154. package/bmad/cis/workflows/problem-solving/template.md +0 -165
  155. package/bmad/cis/workflows/problem-solving/workflow.yaml +0 -32
  156. package/bmad/cis/workflows/storytelling/README.md +0 -58
  157. package/bmad/cis/workflows/storytelling/instructions.md +0 -291
  158. package/bmad/cis/workflows/storytelling/story-types.csv +0 -26
  159. package/bmad/cis/workflows/storytelling/template.md +0 -113
  160. package/bmad/cis/workflows/storytelling/workflow.yaml +0 -32
  161. package/bmad/core/agents/bmad-master.md.bak +0 -71
@@ -1,7 +1,5 @@
1
1
  # BMM Analysis Workflows (Phase 1)
2
2
 
3
- **Reading Time:** ~12 minutes
4
-
5
3
  ## Overview
6
4
 
7
5
  Phase 1 (Analysis) workflows are **optional** exploration and discovery tools that help you understand your project space before committing to detailed planning. These workflows facilitate creative thinking, market validation, and strategic alignment.
@@ -17,17 +15,61 @@ Phase 1 (Analysis) workflows are **optional** exploration and discovery tools th
17
15
 
18
16
  - Continuing an existing project with clear requirements
19
17
  - Working on well-defined features with known solutions
20
- - Operating under strict time constraints where discovery is complete
18
+ - Working under strict constraints where discovery is complete
19
+
20
+ ---
21
+
22
+ ## Phase 1 Workflow Map
23
+
24
+ ```mermaid
25
+ %%{init: {'theme':'base', 'themeVariables': { 'primaryColor':'#fff','primaryTextColor':'#000','primaryBorderColor':'#000','lineColor':'#000','fontSize':'16px','fontFamily':'arial'}}}%%
26
+ graph TB
27
+ subgraph Creative["<b>CREATIVE EXPLORATION</b>"]
28
+ direction TB
29
+ BrainstormProject["<b>Analyst: brainstorm-project</b><br/>Multi-track solution exploration"]
30
+ BrainstormGame["<b>Analyst: brainstorm-game</b><br/>Game concept generation"]
31
+ end
32
+
33
+ subgraph Strategic["<b>STRATEGIC PLANNING</b>"]
34
+ direction TB
35
+ ProductBrief["<b>Analyst: product-brief</b><br/>Product vision and strategy"]
36
+ GameBrief["<b>Game Designer: game-brief</b><br/>Game vision capture"]
37
+ end
38
+
39
+ subgraph Research["<b>RESEARCH AND INVESTIGATION</b>"]
40
+ direction TB
41
+ ResearchWF["<b>Analyst: research</b><br/>Market, technical, competitive analysis"]
42
+ end
43
+
44
+ Creative -.->|Software projects| ProductBrief
45
+ Creative -.->|Game projects| GameBrief
46
+ BrainstormProject -.->|May inform| ResearchWF
47
+ BrainstormGame -.->|May inform| ResearchWF
48
+ ResearchWF -.->|Feeds into| ProductBrief
49
+ ResearchWF -.->|Feeds into| GameBrief
50
+
51
+ style Creative fill:#e1f5fe,stroke:#01579b,stroke-width:3px,color:#000
52
+ style Strategic fill:#f3e5f5,stroke:#4a148c,stroke-width:3px,color:#000
53
+ style Research fill:#fff9c4,stroke:#f57f17,stroke-width:3px,color:#000
54
+
55
+ style BrainstormProject fill:#81d4fa,stroke:#0277bd,stroke-width:2px,color:#000
56
+ style BrainstormGame fill:#81d4fa,stroke:#0277bd,stroke-width:2px,color:#000
57
+ style ProductBrief fill:#ce93d8,stroke:#6a1b9a,stroke-width:2px,color:#000
58
+ style GameBrief fill:#ce93d8,stroke:#6a1b9a,stroke-width:2px,color:#000
59
+ style ResearchWF fill:#fff59d,stroke:#f57f17,stroke-width:2px,color:#000
60
+ ```
61
+
62
+ ---
21
63
 
22
64
  ## Quick Reference
23
65
 
24
- | Workflow | Agent | Duration | Required | Purpose |
25
- | ------------------ | ------- | --------- | ----------- | ----------------------------------------------------------- |
26
- | brainstorm-project | Analyst | 30-60 min | No | Explore solution approaches and architectures |
27
- | brainstorm-game | Analyst | 45-90 min | No | Generate game concepts using creative techniques |
28
- | product-brief | PM | 60-90 min | Recommended | Define product vision and strategy |
29
- | game-brief | PM | 60-90 min | Recommended | Capture game vision before GDD |
30
- | research | Analyst | Varies | No | Multi-type research system (market, technical, competitive) |
66
+ | Workflow | Agent | Required | Purpose |
67
+ | ------------------ | ------------- | ----------- | ----------------------------------------------------------- |
68
+ | brainstorm-project | Analyst | No | Explore solution approaches and architectures |
69
+ | brainstorm-game | Analyst | No | Generate game concepts using creative techniques |
70
+ | product-brief | Analyst | Recommended | Define product vision and strategy |
71
+ | game-brief | Game Designer | Recommended | Capture game vision before GDD |
72
+ | research | Analyst | No | Multi-type research system (market, technical, competitive) |
31
73
 
32
74
  ---
33
75
 
@@ -40,7 +82,6 @@ Generate multiple solution approaches for software projects through parallel ide
40
82
  **Agent:** Analyst
41
83
  **Phase:** 1 (Analysis)
42
84
  **Required:** No
43
- **Typical Duration:** 30-60 minutes
44
85
 
45
86
  ### When to Use
46
87
 
@@ -125,7 +166,6 @@ Generate and refine game concepts through systematic creative exploration using
125
166
  **Agent:** Analyst
126
167
  **Phase:** 1 (Analysis)
127
168
  **Required:** No
128
- **Typical Duration:** 45-90 minutes
129
169
 
130
170
  ### When to Use
131
171
 
@@ -196,10 +236,9 @@ Each method generates distinct artifacts that are then evaluated against design
196
236
 
197
237
  Interactive product brief creation that guides users through defining their product vision with multiple input sources and conversational collaboration.
198
238
 
199
- **Agent:** PM
239
+ **Agent:** Analyst
200
240
  **Phase:** 1 (Analysis)
201
241
  **Required:** Recommended (skip only if PRD already exists)
202
- **Typical Duration:** 60-90 minutes (Interactive), 20-30 minutes (YOLO)
203
242
 
204
243
  ### When to Use
205
244
 
@@ -222,13 +261,13 @@ Interactive product brief creation that guides users through defining their prod
222
261
  - Step-by-step collaborative development
223
262
  - Probing questions to refine thinking
224
263
  - Deep exploration of problem/solution fit
225
- - 60-90 minutes with high-quality output
264
+ - High-quality output with thorough exploration
226
265
 
227
266
  **YOLO Mode**:
228
267
 
229
268
  - AI generates complete draft from initial context
230
269
  - User reviews and refines sections iteratively
231
- - 20-30 minutes for rapid draft
270
+ - Faster for rapid draft generation
232
271
  - Best for time-constrained situations or when you have clear vision
233
272
 
234
273
  ### Process Overview
@@ -317,10 +356,9 @@ Interactive product brief creation that guides users through defining their prod
317
356
 
318
357
  Lightweight, interactive brainstorming and planning session that captures game vision before diving into detailed Game Design Documents.
319
358
 
320
- **Agent:** PM
359
+ **Agent:** Game Designer
321
360
  **Phase:** 1 (Analysis)
322
361
  **Required:** Recommended for game projects
323
- **Typical Duration:** 60-90 minutes
324
362
 
325
363
  ### When to Use
326
364
 
@@ -338,15 +376,14 @@ Lightweight, interactive brainstorming and planning session that captures game v
338
376
 
339
377
  ### Comparison: Game Brief vs GDD
340
378
 
341
- | Aspect | Game Brief | GDD |
342
- | --------------- | --------------------------- | ------------------------- |
343
- | Purpose | Validate concept | Design for implementation |
344
- | Detail Level | High-level vision | Detailed specifications |
345
- | Time Investment | 1-2 hours | 4-10 hours |
346
- | Audience | Self, team, stakeholders | Development team |
347
- | Scope | Concept validation | Implementation roadmap |
348
- | Format | Conversational, exploratory | Structured, comprehensive |
349
- | Output | 3-5 pages | 10-30+ pages |
379
+ | Aspect | Game Brief | GDD |
380
+ | ------------ | --------------------------- | ------------------------- |
381
+ | Purpose | Validate concept | Design for implementation |
382
+ | Detail Level | High-level vision | Detailed specifications |
383
+ | Audience | Self, team, stakeholders | Development team |
384
+ | Scope | Concept validation | Implementation roadmap |
385
+ | Format | Conversational, exploratory | Structured, comprehensive |
386
+ | Output | Concise vision document | Comprehensive design doc |
350
387
 
351
388
  ### Comparison: Game Brief vs Product Brief
352
389
 
@@ -441,7 +478,6 @@ Comprehensive, adaptive multi-type research system that consolidates various res
441
478
  **Agent:** Analyst
442
479
  **Phase:** 1 (Analysis)
443
480
  **Required:** No
444
- **Typical Duration:** Varies by type (Quick: 30-60 min, Standard: 2-4 hours, Comprehensive: 4-8 hours)
445
481
 
446
482
  ### Research Types
447
483