bmad-method 6.0.0-alpha.14 → 6.0.0-alpha.15

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 (79) hide show
  1. package/.coderabbit.yaml +36 -0
  2. package/{CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md} +4 -4
  3. package/CHANGELOG.md +136 -408
  4. package/README.md +4 -1
  5. package/docs/custom-content-installation.md +245 -0
  6. package/docs/index.md +2 -2
  7. package/docs/installers-bundlers/installers-modules-platforms-reference.md +6 -5
  8. package/docs/web-bundles-gemini-gpt-guide.md +1 -1
  9. package/example-custom-content/README.md +4 -0
  10. package/example-custom-content/agents/commit-poet/commit-poet.agent.yaml +1 -1
  11. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/instructions.md +1 -1
  12. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +1 -1
  13. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +1 -1
  14. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +2 -2
  15. package/example-custom-content/agents/toolsmith/toolsmith.agent.yaml +1 -1
  16. package/example-custom-content/{custom.yaml → module.yaml} +1 -0
  17. package/example-custom-content/workflows/quiz-master/steps/step-01-init.md +2 -2
  18. package/example-custom-content/workflows/quiz-master/steps/step-02-q1.md +1 -1
  19. package/example-custom-content/workflows/quiz-master/steps/step-03-q2.md +1 -1
  20. package/example-custom-content/workflows/quiz-master/steps/step-04-q3.md +1 -1
  21. package/example-custom-content/workflows/quiz-master/steps/step-05-q4.md +1 -1
  22. package/example-custom-content/workflows/quiz-master/steps/step-06-q5.md +1 -1
  23. package/example-custom-content/workflows/quiz-master/steps/step-07-q6.md +1 -1
  24. package/example-custom-content/workflows/quiz-master/steps/step-08-q7.md +1 -1
  25. package/example-custom-content/workflows/quiz-master/steps/step-09-q8.md +1 -1
  26. package/example-custom-content/workflows/quiz-master/steps/step-10-q9.md +1 -1
  27. package/example-custom-content/workflows/quiz-master/steps/step-11-q10.md +1 -1
  28. package/example-custom-content/workflows/quiz-master/steps/step-12-results.md +1 -1
  29. package/example-custom-content/workflows/quiz-master/workflow.md +1 -1
  30. package/example-custom-module/mwm/README.md +5 -0
  31. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach.agent.yaml +1 -0
  32. package/example-custom-module/mwm/agents/crisis-navigator.agent.yaml +3 -2
  33. package/example-custom-module/mwm/agents/meditation-guide.agent.yaml +3 -2
  34. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion.agent.yaml +1 -0
  35. package/example-custom-module/mwm/{_module-installer/install-config.yaml → module.yaml} +1 -0
  36. package/package.json +1 -1
  37. package/src/core/_module-installer/installer.js +1 -1
  38. package/src/modules/bmb/_module-installer/installer.js +1 -1
  39. package/src/modules/bmb/docs/agents/index.md +1 -1
  40. package/src/modules/bmb/workflows/create-module/steps/step-04-structure.md +3 -3
  41. package/src/modules/bmb/workflows/create-module/steps/step-05-config.md +1 -1
  42. package/src/modules/bmb/workflows/create-module/steps/step-08-installer.md +8 -8
  43. package/src/modules/bmb/workflows/create-module/steps/step-09-documentation.md +2 -1
  44. package/src/modules/bmb/workflows/create-module/steps/step-10-roadmap.md +3 -2
  45. package/src/modules/bmb/workflows/create-module/steps/step-11-validate.md +3 -3
  46. package/src/modules/bmb/workflows/create-module/templates/installer.template.js +1 -1
  47. package/src/modules/bmb/workflows/create-module/validation.md +3 -3
  48. package/src/modules/bmb/workflows/create-workflow/steps/step-01-init.md +1 -1
  49. package/src/modules/bmb/workflows/create-workflow/steps/step-07-build.md +1 -1
  50. package/src/modules/bmgd/README.md +2 -1
  51. package/src/modules/bmm/_module-installer/installer.js +1 -1
  52. package/src/modules/bmm/_module-installer/platform-specifics/claude-code.js +1 -1
  53. package/src/modules/bmm/_module-installer/platform-specifics/windsurf.js +1 -1
  54. package/src/modules/cis/_module-installer/installer.js +1 -1
  55. package/tools/cli/README.md +4 -4
  56. package/tools/cli/installers/lib/core/config-collector.js +16 -8
  57. package/tools/cli/installers/lib/core/custom-module-cache.js +239 -0
  58. package/tools/cli/installers/lib/core/detector.js +8 -4
  59. package/tools/cli/installers/lib/core/installer.js +815 -23
  60. package/tools/cli/installers/lib/core/manifest-generator.js +176 -13
  61. package/tools/cli/installers/lib/core/manifest.js +47 -0
  62. package/tools/cli/installers/lib/custom/handler.js +150 -20
  63. package/tools/cli/installers/lib/modules/manager.js +78 -32
  64. package/tools/cli/lib/agent/compiler.js +3 -11
  65. package/tools/cli/lib/agent/installer.js +2 -1
  66. package/tools/cli/lib/cli-utils.js +21 -4
  67. package/tools/cli/lib/ui.js +499 -11
  68. package/tools/maintainer/review-pr-README.md +55 -0
  69. package/tools/maintainer/review-pr.md +242 -0
  70. package/tools/migrate-custom-module-paths.js +124 -0
  71. package/bmad-method-6.0.0-alpha.14.tgz +0 -0
  72. package/docs/custom-agent-installation.md +0 -137
  73. package/example-custom-content/workflows/quiz-master/workflow-plan-quiz-master.md +0 -269
  74. /package/src/core/{_module-installer/install-config.yaml → module.yaml} +0 -0
  75. /package/src/modules/bmb/{_module-installer/install-config.yaml → module.yaml} +0 -0
  76. /package/src/modules/bmb/workflows/create-module/templates/{install-config.template.yaml → module.template.yaml} +0 -0
  77. /package/src/modules/bmgd/{_module-installer/install-config.yaml → module.yaml} +0 -0
  78. /package/src/modules/bmm/{_module-installer/install-config.yaml → module.yaml} +0 -0
  79. /package/src/modules/cis/{_module-installer/install-config.yaml → module.yaml} +0 -0
@@ -1,269 +0,0 @@
1
- ---
2
- stepsCompleted: [1, 2, 3, 4, 5, 6, 7]
3
- ---
4
-
5
- ## Build Summary
6
-
7
- **Date:** 2025-12-04
8
- **Status:** Build Complete
9
-
10
- ### Files Generated
11
-
12
- **Main Workflow:**
13
-
14
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/workflow.md`
15
-
16
- **Step Files (12 total):**
17
-
18
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-01-init.md` - Game setup and mode selection
19
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-02-q1.md` - Question 1 (Level 1)
20
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-03-q2.md` - Question 2 (Level 2)
21
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-04-q3.md` - Question 3 (Level 3)
22
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-05-q4.md` - Question 4 (Level 4)
23
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-06-q5.md` - Question 5 (Level 5)
24
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-07-q6.md` - Question 6 (Level 6)
25
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-08-q7.md` - Question 7 (Level 7)
26
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-09-q8.md` - Question 8 (Level 8)
27
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-10-q9.md` - Question 9 (Level 9)
28
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-11-q10.md` - Question 10 (Level 10)
29
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/steps/step-12-results.md` - Final results and celebration
30
-
31
- **Templates:**
32
-
33
- - `/Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master/templates/csv-headers.template` - CSV column headers
34
-
35
- ### Key Features Implemented
36
-
37
- 1. **Dual Game Modes:**
38
- - Mode 1: Sudden Death (game over on first wrong answer)
39
- - Mode 2: Marathon (complete all 10 questions)
40
-
41
- 2. **CSV History Tracking:**
42
- - 44 columns including DateTime, Category, GameMode, all questions/answers, FinalScore
43
- - Automatic CSV creation with headers
44
- - Real-time updates after each question
45
-
46
- 3. **Gameshow Persona:**
47
- - Energetic, dramatic host presentation
48
- - Progressive difficulty from Level 1-10
49
- - Immediate feedback and celebration
50
-
51
- 4. **Flow Control:**
52
- - Automatic CSV routing based on game mode
53
- - Play again or quit options at completion
54
-
55
- ### Next Steps for Testing
56
-
57
- 1. Run the workflow: `/bmad:bmb:workflows:quiz-master`
58
- 2. Test both game modes
59
- 3. Verify CSV file creation and updates
60
- 4. Check question progression and difficulty
61
- 5. Validate final score calculation
62
-
63
- ## Plan Review Summary
64
-
65
- - **Plan reviewed by:** User
66
- - **Date:** 2025-12-04
67
- - **Status:** Approved without modifications
68
- - **Ready for design phase:** Yes
69
- - **Output Documents:** CSV history file (BMad-quiz-results.csv)
70
-
71
- # Workflow Creation Plan: quiz-master
72
-
73
- ## Initial Project Context
74
-
75
- - **Module:** stand-alone
76
- - **Target Location:** /Users/brianmadison/dev/BMAD-METHOD/.bmad/custom/src/workflows/quiz-master
77
- - **Created:** 2025-12-04
78
-
79
- ## Detailed Requirements
80
-
81
- ### 1. Workflow Purpose and Scope
82
-
83
- - **Primary Goal:** Entertainment-based interactive trivia quiz
84
- - **Structure:** Always exactly 10 questions (1 per difficulty level 1-10)
85
- - **Format:** Multiple choice with 4 options (A, B, C, D)
86
- - **Progression:** Linear progression through all 10 levels regardless of correct/incorrect answers
87
- - **Scoring:** Track correct answers for final score
88
-
89
- ### 2. Workflow Type Classification
90
-
91
- - **Type:** Interactive Workflow with Linear structure
92
- - **Interaction Style:** High interactivity with user input for each question
93
- - **Flow:** Step 1 (Init) → Step 2 (Quiz Questions) → Step 3 (Results) → Step 4 (History Save)
94
-
95
- ### 3. Workflow Flow and Step Structure
96
-
97
- **Step 1 - Game Initialization:**
98
-
99
- - Read user_name from config.yaml
100
- - Present suggested categories OR accept freeform category input
101
- - Create CSV file if not exists with proper headers
102
- - Start new row for current game session
103
-
104
- **Step 2 - Quiz Game Loop:**
105
-
106
- - Loop through 10 questions (levels 1-10)
107
- - Each question has 4 multiple-choice options
108
- - User enters A, B, C, or D
109
- - Provide immediate feedback on correctness
110
- - Continue to next level regardless of answer
111
-
112
- **Step 3 - Results Display:**
113
-
114
- - Show final score (e.g., "You got 7 out of 10!")
115
- - Provide entertaining commentary based on performance
116
-
117
- **Step 4 - History Management:**
118
-
119
- - Append complete game data to CSV
120
- - Columns: DateTime, Category, Q1-Question, Q1-Choices, Q1-UserAnswer, Q1-Correct, Q2-Question, ... Q10-Correct, FinalScore
121
-
122
- ### 4. User Interaction Style
123
-
124
- - **Persona:** Over-the-top gameshow host (enthusiastic, dramatic, celebratory)
125
- - **Instruction Style:** Intent-based with gameshow flair
126
- - **Language:** Energetic, encouraging, theatrical
127
- - **Feedback:** Immediate, celebratory for correct, encouraging for incorrect
128
-
129
- ### 5. Input Requirements
130
-
131
- - **From config:** user_name (BMad)
132
- - **From user:** Category selection (suggested list or freeform)
133
- - **From user:** 10 answers (A/B/C/D)
134
-
135
- ### 6. Output Specifications
136
-
137
- - **Primary:** Interactive quiz experience with gameshow atmosphere
138
- - **Secondary:** CSV history file named: BMad-quiz-results.csv
139
- - **CSV Structure:**
140
- - Row per game session
141
- - Headers: DateTime, Category, Q1-Question, Q1-Choices, Q1-UserAnswer, Q1-Correct, ..., Q10-Correct, FinalScore
142
-
143
- ### 7. Success Criteria
144
-
145
- - User completes all 10 questions
146
- - Gameshow atmosphere maintained throughout
147
- - CSV file properly created/updated
148
- - User receives final score with entertaining feedback
149
- - All question data and answers recorded accurately
150
-
151
- ### 8. Special Considerations
152
-
153
- - Always assume fresh chat/new game
154
- - CSV file creation in Step 1 if missing
155
- - Freeform categories allowed (any topic)
156
- - No need to display previous history during game
157
- - Focus on entertainment over assessment
158
- - After user enters A/B/C/D, automatically continue to next question (no "Continue" prompts)
159
- - Streamlined experience without advanced elicitation or party mode tools
160
-
161
- ## Tools Configuration
162
-
163
- ### Core BMAD Tools
164
-
165
- - **Party-Mode**: Excluded - Want streamlined quiz flow without interruptions
166
- - **Advanced Elicitation**: Excluded - Quiz format is straightforward without need for complex analysis
167
- - **Brainstorming**: Excluded - Categories can be suggested directly or entered freeform
168
-
169
- ### LLM Features
170
-
171
- - **Web-Browsing**: Excluded - Quiz questions can be generated from existing knowledge
172
- - **File I/O**: Included - Essential for CSV history file management (reading/writing quiz results)
173
- - **Sub-Agents**: Excluded - Single gameshow host persona is sufficient
174
- - **Sub-Processes**: Excluded - Linear quiz flow doesn't require parallel processing
175
-
176
- ### Memory Systems
177
-
178
- - **Sidecar File**: Excluded - Each quiz session is independent (always assume fresh chat)
179
-
180
- ### External Integrations
181
-
182
- - None required for this workflow
183
-
184
- ### Installation Requirements
185
-
186
- - None - All required tools (File I/O) are core features with no additional setup needed
187
-
188
- ## Workflow Design
189
-
190
- ### Step Structure
191
-
192
- **Total Steps: 12**
193
-
194
- 1. Step 01 - Init: Mode selection, category choice, CSV setup
195
- 2. Steps 02-11: Individual questions (1-10) with CSV updates
196
- 3. Step 12 - Results: Final score display and celebration
197
-
198
- ### Game Modes
199
-
200
- - **Mode 1 - Sudden Death**: Game over on first wrong answer
201
- - **Mode 2 - Marathon**: Continue through all 10 questions
202
-
203
- ### CSV Structure (44 columns)
204
-
205
- Headers: DateTime,Category,GameMode,Q1-Question,Q1-Choices,Q1-UserAnswer,Q1-Correct,...,Q10-Correct,FinalScore
206
-
207
- ### Flow Logic
208
-
209
- - Step 01: Create row with DateTime, Category, GameMode
210
- - Steps 02-11: Update CSV with question data
211
- - Mode 1: IF incorrect → jump to Step 12
212
- - Mode 2: Always continue
213
- - Step 12: Update FinalScore, display results
214
-
215
- ### Gameshow Persona
216
-
217
- - Energetic, dramatic host
218
- - Celebratory feedback for correct answers
219
- - Encouraging messages for incorrect
220
-
221
- ### File Structure
222
-
223
- ```
224
- quiz-master/
225
- ├── workflow.md
226
- ├── steps/
227
- │ ├── step-01-init.md
228
- │ ├── step-02-q1.md
229
- │ ├── ...
230
- │ └── step-12-results.md
231
- └── templates/
232
- └── csv-headers.template
233
- ```
234
-
235
- ## Output Format Design
236
-
237
- **Format Type**: Strict Template
238
-
239
- **Output Requirements**:
240
-
241
- - Document type: CSV data file
242
- - File format: CSV (UTF-8 encoding)
243
- - Frequency: Append one row per quiz session
244
-
245
- **Structure Specifications**:
246
-
247
- - Exact 43 columns with specific headers
248
- - Headers: DateTime,Category,Q1-Question,Q1-Choices,Q1-UserAnswer,Q1-Correct,...,Q10-Correct,FinalScore
249
- - Data formats:
250
- - DateTime: ISO 8601 (YYYY-MM-DDTHH:MM:SS)
251
- - Category: Text
252
- - QX-Question: Text
253
- - QX-Choices: (A)Opt1|(B)Opt2|(C)Opt3|(D)Opt4
254
- - QX-UserAnswer: A/B/C/D
255
- - QX-Correct: TRUE/FALSE
256
- - FinalScore: Number (0-10)
257
-
258
- **Template Information**:
259
-
260
- - Template source: Created based on requirements
261
- - Template file: CSV with fixed column structure
262
- - Placeholders: None - strict format required
263
-
264
- **Special Considerations**:
265
-
266
- - CSV commas within text must be quoted
267
- - Newlines in questions replaced with spaces
268
- - Headers created only if file doesn't exist
269
- - Append mode for all subsequent quiz sessions