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

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 (335) hide show
  1. package/.github/ISSUE_TEMPLATE/idea_submission.md +1 -1
  2. package/.github/scripts/discord-helpers.sh +15 -0
  3. package/.github/workflows/discord.yaml +278 -8
  4. package/.github/workflows/quality.yaml +19 -0
  5. package/.markdownlint-cli2.yaml +42 -0
  6. package/.prettierignore +3 -0
  7. package/CHANGELOG.md +95 -0
  8. package/CODE_OF_CONDUCT.md +128 -0
  9. package/bmad-method-6.0.0-alpha.14.tgz +0 -0
  10. package/docs/agent-customization-guide.md +2 -2
  11. package/docs/custom-agent-installation.md +56 -102
  12. package/docs/document-sharding-guide.md +1 -1
  13. package/eslint.config.mjs +14 -0
  14. package/example-custom-content/README.md +4 -0
  15. package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/instructions.md +4 -4
  16. package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/memories.md +1 -1
  17. package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith.agent.yaml +17 -16
  18. package/example-custom-content/custom.yaml +3 -0
  19. package/example-custom-content/workflows/quiz-master/steps/step-01-init.md +168 -0
  20. package/example-custom-content/workflows/quiz-master/steps/step-02-q1.md +155 -0
  21. package/example-custom-content/workflows/quiz-master/steps/step-03-q2.md +89 -0
  22. package/example-custom-content/workflows/quiz-master/steps/step-04-q3.md +36 -0
  23. package/example-custom-content/workflows/quiz-master/steps/step-05-q4.md +36 -0
  24. package/example-custom-content/workflows/quiz-master/steps/step-06-q5.md +36 -0
  25. package/example-custom-content/workflows/quiz-master/steps/step-07-q6.md +36 -0
  26. package/example-custom-content/workflows/quiz-master/steps/step-08-q7.md +36 -0
  27. package/example-custom-content/workflows/quiz-master/steps/step-09-q8.md +36 -0
  28. package/example-custom-content/workflows/quiz-master/steps/step-10-q9.md +36 -0
  29. package/example-custom-content/workflows/quiz-master/steps/step-11-q10.md +36 -0
  30. package/example-custom-content/workflows/quiz-master/steps/step-12-results.md +150 -0
  31. package/example-custom-content/workflows/quiz-master/templates/csv-headers.template +1 -0
  32. package/example-custom-content/workflows/quiz-master/workflow-plan-quiz-master.md +269 -0
  33. package/example-custom-content/workflows/quiz-master/workflow.md +54 -0
  34. package/example-custom-content/workflows/wassup/workflow.md +26 -0
  35. package/example-custom-module/mwm/README.md +4 -0
  36. package/example-custom-module/mwm/_module-installer/install-config.yaml +27 -0
  37. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach-sidecar/cognitive-distortions.md +47 -0
  38. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach-sidecar/thought-records.md +17 -0
  39. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach.agent.yaml +150 -0
  40. package/example-custom-module/mwm/agents/crisis-navigator.agent.yaml +137 -0
  41. package/example-custom-module/mwm/agents/meditation-guide.agent.yaml +137 -0
  42. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/insights.md +13 -0
  43. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/instructions.md +30 -0
  44. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/memories.md +13 -0
  45. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/patterns.md +17 -0
  46. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion.agent.yaml +124 -0
  47. package/example-custom-module/mwm/workflows/cbt-thought-record/README.md +31 -0
  48. package/example-custom-module/mwm/workflows/cbt-thought-record/workflow.md +45 -0
  49. package/example-custom-module/mwm/workflows/crisis-support/README.md +31 -0
  50. package/example-custom-module/mwm/workflows/crisis-support/workflow.md +45 -0
  51. package/example-custom-module/mwm/workflows/daily-checkin/README.md +32 -0
  52. package/example-custom-module/mwm/workflows/daily-checkin/workflow.md +45 -0
  53. package/example-custom-module/mwm/workflows/guided-meditation/README.md +31 -0
  54. package/example-custom-module/mwm/workflows/guided-meditation/workflow.md +45 -0
  55. package/example-custom-module/mwm/workflows/wellness-journal/README.md +31 -0
  56. package/example-custom-module/mwm/workflows/wellness-journal/workflow.md +45 -0
  57. package/package.json +9 -4
  58. package/src/core/_module-installer/install-config.yaml +5 -1
  59. package/src/core/resources/excalidraw/library-loader.md +2 -2
  60. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +1 -1
  61. package/src/core/workflows/brainstorming/workflow.md +1 -1
  62. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +0 -1
  63. package/src/core/workflows/party-mode/workflow.md +2 -3
  64. package/src/modules/bmb/README.md +1 -1
  65. package/src/modules/bmb/_module-installer/install-config.yaml +4 -9
  66. package/src/modules/bmb/_module-installer/installer.js +76 -0
  67. package/src/modules/bmb/agents/bmad-builder.agent.yaml +32 -9
  68. package/src/modules/bmb/docs/agents/agent-menu-patterns.md +5 -5
  69. package/src/modules/bmb/docs/agents/expert-agent-architecture.md +20 -20
  70. package/src/modules/bmb/docs/agents/module-agent-architecture.md +45 -45
  71. package/src/modules/bmb/docs/agents/simple-agent-architecture.md +7 -3
  72. package/src/modules/bmb/docs/workflows/architecture.md +1 -1
  73. package/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md +241 -0
  74. package/src/modules/bmb/docs/workflows/templates/step-1b-template.md +223 -0
  75. package/src/modules/bmb/{workflows/create-workflow → docs/workflows}/templates/step-file.md +4 -4
  76. package/src/modules/bmb/docs/workflows/{step-template.md → templates/step-template.md} +40 -33
  77. package/src/modules/bmb/docs/workflows/templates/workflow-template.md +104 -0
  78. package/src/modules/bmb/{workflows/create-workflow → docs/workflows}/templates/workflow.md +1 -1
  79. package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/README.md +4 -4
  80. package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +8 -8
  81. package/src/modules/bmb/reference/agents/module-examples/security-engineer.agent.yaml +6 -6
  82. package/src/modules/bmb/reference/agents/module-examples/trend-analyst.agent.yaml +7 -7
  83. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +2 -3
  84. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +10 -40
  85. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +1 -1
  86. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +1 -0
  87. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +2 -2
  88. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +2 -2
  89. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +2 -2
  90. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/workflow.md +2 -2
  91. package/src/modules/bmb/workflows/create-agent/data/info-and-installation-guide.md +16 -4
  92. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/README.md +4 -4
  93. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +7 -7
  94. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +1 -1
  95. package/src/modules/bmb/workflows/create-agent/data/validation-complete.md +3 -3
  96. package/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md +3 -3
  97. package/src/modules/bmb/workflows/create-agent/steps/step-02-discover.md +3 -3
  98. package/src/modules/bmb/workflows/create-agent/steps/step-03-persona.md +3 -3
  99. package/src/modules/bmb/workflows/create-agent/steps/step-04-commands.md +6 -6
  100. package/src/modules/bmb/workflows/create-agent/steps/step-05-name.md +2 -2
  101. package/src/modules/bmb/workflows/create-agent/steps/step-06-build.md +3 -3
  102. package/src/modules/bmb/workflows/create-agent/steps/step-07-validate.md +3 -3
  103. package/src/modules/bmb/workflows/create-agent/steps/step-08-setup.md +2 -2
  104. package/src/modules/bmb/workflows/create-agent/steps/step-09-customize.md +3 -3
  105. package/src/modules/bmb/workflows/create-agent/steps/step-10-build-tools.md +2 -2
  106. package/src/modules/bmb/workflows/create-agent/steps/step-11-celebrate.md +2 -2
  107. package/src/modules/bmb/workflows/create-agent/workflow.md +11 -11
  108. package/src/modules/bmb/workflows/create-module/steps/step-01-init.md +155 -0
  109. package/src/modules/bmb/workflows/create-module/steps/step-01b-continue.md +169 -0
  110. package/src/modules/bmb/workflows/create-module/steps/step-02-concept.md +217 -0
  111. package/src/modules/bmb/workflows/create-module/steps/step-03-components.md +267 -0
  112. package/src/modules/bmb/workflows/create-module/steps/step-04-structure.md +228 -0
  113. package/src/modules/bmb/workflows/create-module/steps/step-05-config.md +233 -0
  114. package/src/modules/bmb/workflows/create-module/steps/step-06-agents.md +296 -0
  115. package/src/modules/bmb/workflows/create-module/steps/step-07-workflows.md +228 -0
  116. package/src/modules/bmb/workflows/create-module/steps/step-08-installer.md +186 -0
  117. package/src/modules/bmb/workflows/create-module/steps/step-09-documentation.md +308 -0
  118. package/src/modules/bmb/workflows/create-module/steps/step-10-roadmap.md +336 -0
  119. package/src/modules/bmb/workflows/create-module/steps/step-11-validate.md +335 -0
  120. package/src/modules/bmb/workflows/create-module/templates/agent.template.md +317 -0
  121. package/src/modules/bmb/workflows/create-module/templates/install-config.template.yaml +53 -0
  122. package/src/modules/bmb/workflows/create-module/templates/installer.template.js +47 -0
  123. package/src/modules/bmb/workflows/create-module/templates/module-plan.template.md +5 -0
  124. package/src/modules/bmb/workflows/create-module/templates/workflow-plan-template.md +23 -0
  125. package/src/modules/bmb/workflows/create-module/validation.md +126 -0
  126. package/src/modules/bmb/workflows/create-module/workflow.md +55 -0
  127. package/src/modules/bmb/workflows/create-workflow/steps/step-01-init.md +45 -56
  128. package/src/modules/bmb/workflows/create-workflow/steps/step-02-gather.md +9 -31
  129. package/src/modules/bmb/workflows/create-workflow/steps/step-03-tools-configuration.md +250 -0
  130. package/src/modules/bmb/workflows/create-workflow/steps/step-04-plan-review.md +216 -0
  131. package/src/modules/bmb/workflows/create-workflow/steps/step-05-output-format-design.md +289 -0
  132. package/src/modules/bmb/workflows/create-workflow/steps/{step-09-design.md → step-06-design.md} +76 -44
  133. package/src/modules/bmb/workflows/create-workflow/steps/{step-11-build.md → step-07-build.md} +70 -24
  134. package/src/modules/bmb/workflows/create-workflow/steps/{step-12-review.md → step-08-review.md} +30 -16
  135. package/src/modules/bmb/workflows/create-workflow/steps/step-09-complete.md +187 -0
  136. package/src/modules/bmb/workflows/create-workflow/workflow.md +2 -2
  137. package/src/modules/bmb/workflows/edit-agent/steps/step-01-discover-intent.md +2 -2
  138. package/src/modules/bmb/workflows/edit-agent/steps/step-02-analyze-agent.md +14 -14
  139. package/src/modules/bmb/workflows/edit-agent/steps/step-03-propose-changes.md +4 -4
  140. package/src/modules/bmb/workflows/edit-agent/steps/step-04-apply-changes.md +2 -2
  141. package/src/modules/bmb/workflows/edit-agent/steps/step-05-validate.md +4 -4
  142. package/src/modules/bmb/workflows/edit-agent/workflow.md +1 -1
  143. package/src/modules/bmb/workflows/edit-workflow/steps/step-01-analyze.md +2 -6
  144. package/src/modules/bmb/workflows/edit-workflow/steps/step-03-improve.md +2 -2
  145. package/src/modules/bmb/workflows/edit-workflow/steps/step-04-validate.md +1 -1
  146. package/src/modules/bmb/workflows/edit-workflow/workflow.md +1 -1
  147. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-01-validate-goal.md +2 -2
  148. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md +5 -5
  149. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md +7 -7
  150. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md +3 -3
  151. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-05-intent-spectrum-validation.md +3 -3
  152. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-06-web-subprocess-validation.md +3 -3
  153. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md +3 -3
  154. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-08-generate-report.md +2 -2
  155. package/src/modules/bmb/workflows/workflow-compliance-check/workflow.md +1 -1
  156. package/src/modules/bmb/workflows-legacy/edit-module/checklist.md +0 -1
  157. package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +8 -8
  158. package/src/modules/bmm/_module-installer/install-config.yaml +1 -1
  159. package/src/modules/bmm/agents/analyst.agent.yaml +11 -8
  160. package/src/modules/bmm/agents/architect.agent.yaml +1 -5
  161. package/src/modules/bmm/agents/pm.agent.yaml +5 -5
  162. package/src/modules/bmm/docs/README.md +23 -1
  163. package/src/modules/bmm/docs/agents-guide.md +16 -35
  164. package/src/modules/bmm/docs/brownfield-guide.md +17 -30
  165. package/src/modules/bmm/docs/enterprise-agentic-development.md +2 -2
  166. package/src/modules/bmm/docs/faq.md +6 -39
  167. package/src/modules/bmm/docs/glossary.md +11 -24
  168. package/src/modules/bmm/docs/images/README.md +37 -0
  169. package/src/modules/bmm/docs/images/workflow-method-greenfield.excalidraw +62 -202
  170. package/src/modules/bmm/docs/images/workflow-method-greenfield.svg +3 -1
  171. package/src/modules/bmm/docs/quick-spec-flow.md +652 -0
  172. package/src/modules/bmm/docs/quick-start.md +9 -25
  173. package/src/modules/bmm/docs/test-architecture.md +6 -6
  174. package/src/modules/bmm/docs/troubleshooting.md +680 -0
  175. package/src/modules/bmm/docs/workflow-document-project-reference.md +1 -1
  176. package/src/modules/bmm/docs/workflows-implementation.md +143 -3
  177. package/src/modules/bmm/docs/workflows-solutioning.md +2 -2
  178. package/src/modules/bmm/tasks/daily-standup.xml +85 -0
  179. package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +1 -1
  180. package/src/modules/bmm/testarch/knowledge/overview.md +1 -1
  181. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-02-vision.md +2 -2
  182. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-03-users.md +2 -2
  183. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-04-metrics.md +2 -2
  184. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-05-scope.md +2 -2
  185. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.md +1 -1
  186. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +8 -8
  187. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +18 -18
  188. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +18 -18
  189. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +18 -18
  190. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +17 -17
  191. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +35 -36
  192. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +5 -6
  193. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +20 -19
  194. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +21 -20
  195. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +20 -19
  196. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +21 -20
  197. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +16 -15
  198. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +36 -37
  199. package/src/modules/bmm/workflows/1-analysis/research/research.template.md +0 -1
  200. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +8 -8
  201. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +19 -18
  202. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +20 -19
  203. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +21 -20
  204. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +19 -18
  205. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +38 -39
  206. package/src/modules/bmm/workflows/1-analysis/research/workflow.md +14 -8
  207. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +6 -0
  208. package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +7 -0
  209. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01-init.md +138 -56
  210. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01b-continue.md +93 -51
  211. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-02-discovery.md +223 -78
  212. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-03-success.md +20 -2
  213. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-04-journeys.md +18 -0
  214. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-05-domain.md +21 -0
  215. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-06-innovation.md +21 -0
  216. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-07-project-type.md +21 -0
  217. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-08-scoping.md +18 -0
  218. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-09-functional.md +18 -0
  219. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-10-nonfunctional.md +18 -0
  220. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-11-complete.md +13 -0
  221. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.md +2 -2
  222. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-03-starter.md +14 -14
  223. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-04-decisions.md +7 -7
  224. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.md +2 -1
  225. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +258 -0
  226. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +232 -0
  227. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +271 -0
  228. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +144 -0
  229. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
  230. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
  231. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-01-document-discovery.md +189 -0
  232. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-02-prd-analysis.md +177 -0
  233. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-03-epic-coverage-validation.md +178 -0
  234. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-04-ux-alignment.md +138 -0
  235. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-05-epic-quality-review.md +251 -0
  236. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-06-final-assessment.md +132 -0
  237. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/templates/readiness-report-template.md +4 -0
  238. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.md +54 -0
  239. package/src/modules/{bmgd/workflows/4-production → bmm/workflows/4-implementation}/code-review/checklist.md +2 -1
  240. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml +51 -3
  241. package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +1 -1
  242. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.xml +32 -2
  243. package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +3 -3
  244. package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +19 -21
  245. package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +10 -10
  246. package/src/modules/bmm/workflows/4-implementation/sprint-status/instructions.md +174 -0
  247. package/src/modules/bmm/workflows/4-implementation/sprint-status/workflow.yaml +35 -0
  248. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/instructions.md +104 -7
  249. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/workflow.yaml +4 -0
  250. package/src/modules/bmm/workflows/document-project/instructions.md +1 -1
  251. package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +2 -2
  252. package/src/modules/bmm/workflows/generate-project-context/workflow.md +1 -1
  253. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +1 -1
  254. package/src/modules/bmm/workflows/testarch/ci/checklist.md +1 -1
  255. package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +36 -3
  256. package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +25 -4
  257. package/src/modules/bmm/workflows/testarch/ci/instructions.md +2 -2
  258. package/src/modules/bmm/workflows/testarch/test-review/instructions.md +1 -1
  259. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +1 -6
  260. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +1 -6
  261. package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +1 -6
  262. package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +1 -7
  263. package/tools/cli/README.md +3 -3
  264. package/tools/cli/commands/build.js +9 -184
  265. package/tools/cli/commands/install.js +1 -6
  266. package/tools/cli/installers/lib/core/config-collector.js +70 -10
  267. package/tools/cli/installers/lib/core/installer.js +153 -388
  268. package/tools/cli/installers/lib/core/manifest-generator.js +91 -30
  269. package/tools/cli/installers/lib/core/post-install-sidecar-replacement.js +79 -0
  270. package/tools/cli/installers/lib/custom/handler.js +266 -0
  271. package/tools/cli/installers/lib/ide/_base-ide.js +10 -0
  272. package/tools/cli/installers/lib/ide/auggie.js +19 -7
  273. package/tools/cli/installers/lib/ide/crush.js +19 -6
  274. package/tools/cli/installers/lib/ide/cursor.js +29 -13
  275. package/tools/cli/installers/lib/ide/gemini.js +49 -1
  276. package/tools/cli/installers/lib/ide/iflow.js +20 -1
  277. package/tools/cli/installers/lib/ide/kiro-cli.js +327 -0
  278. package/tools/cli/installers/lib/ide/opencode.js +3 -3
  279. package/tools/cli/installers/lib/ide/roo.js +120 -184
  280. package/tools/cli/installers/lib/ide/rovo-dev.js +1 -1
  281. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +8 -2
  282. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +34 -19
  283. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +18 -14
  284. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -1
  285. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
  286. package/tools/cli/installers/lib/modules/manager.js +486 -53
  287. package/tools/cli/lib/agent/compiler.js +54 -5
  288. package/tools/cli/lib/agent/installer.js +127 -27
  289. package/tools/cli/lib/config.js +2 -1
  290. package/tools/cli/lib/ui.js +65 -4
  291. package/tools/cli/lib/yaml-xml-builder.js +0 -15
  292. package/tools/schema/agent.js +149 -89
  293. package/tools/validate-svg-changes.sh +356 -0
  294. package/custom/src/agents/commit-poet/installation-guide.md +0 -36
  295. package/custom/src/agents/toolsmith/installation-guide.md +0 -36
  296. package/src/modules/bmb/docs/workflows/workflow-template.md +0 -152
  297. package/src/modules/bmb/workflows/create-workflow/steps/step-03-tools-overview.md +0 -127
  298. package/src/modules/bmb/workflows/create-workflow/steps/step-04-core-tools.md +0 -145
  299. package/src/modules/bmb/workflows/create-workflow/steps/step-05-memory-requirements.md +0 -136
  300. package/src/modules/bmb/workflows/create-workflow/steps/step-06-external-tools.md +0 -154
  301. package/src/modules/bmb/workflows/create-workflow/steps/step-07-installation-guidance.md +0 -159
  302. package/src/modules/bmb/workflows/create-workflow/steps/step-08-tools-summary.md +0 -167
  303. package/src/modules/bmb/workflows/create-workflow/steps/step-10-plan-review.md +0 -215
  304. package/src/modules/bmb/workflows/create-workflow/templates/build-summary.md +0 -36
  305. package/src/modules/bmb/workflows/create-workflow/templates/completion-section.md +0 -39
  306. package/src/modules/bmb/workflows/create-workflow/templates/content-template.md +0 -21
  307. package/src/modules/bmb/workflows/create-workflow/templates/design-section.md +0 -53
  308. package/src/modules/bmb/workflows/create-workflow/templates/project-info.md +0 -18
  309. package/src/modules/bmb/workflows/create-workflow/templates/requirements-section.md +0 -47
  310. package/src/modules/bmb/workflows/create-workflow/templates/review-section.md +0 -56
  311. package/src/modules/bmb/workflows/create-workflow/templates/workflow-plan.md +0 -54
  312. package/src/modules/bmb/workflows-legacy/create-module/README.md +0 -229
  313. package/src/modules/bmb/workflows-legacy/create-module/brainstorm-context.md +0 -137
  314. package/src/modules/bmb/workflows-legacy/create-module/checklist.md +0 -235
  315. package/src/modules/bmb/workflows-legacy/create-module/installer-templates/install-config.yaml +0 -92
  316. package/src/modules/bmb/workflows-legacy/create-module/installer-templates/installer.js +0 -231
  317. package/src/modules/bmb/workflows-legacy/create-module/instructions.md +0 -577
  318. package/src/modules/bmb/workflows-legacy/create-module/module-structure.md +0 -400
  319. package/src/modules/bmb/workflows-legacy/create-module/workflow.yaml +0 -52
  320. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/epics-template.md +0 -80
  321. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/instructions.md +0 -387
  322. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.yaml +0 -53
  323. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/checklist.md +0 -169
  324. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/instructions.md +0 -332
  325. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/template.md +0 -146
  326. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.yaml +0 -64
  327. package/tools/cli/commands/agent-install.js +0 -409
  328. package/tools/cli/commands/cleanup.js +0 -141
  329. /package/{custom/src → example-custom-content}/agents/commit-poet/commit-poet.agent.yaml +0 -0
  330. /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/bundlers.md +0 -0
  331. /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/deploy.md +0 -0
  332. /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +0 -0
  333. /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +0 -0
  334. /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +0 -0
  335. /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/tests.md +0 -0
@@ -1,235 +0,0 @@
1
- # Build Module Validation Checklist
2
-
3
- ## Module Identity and Metadata
4
-
5
- ### Basic Information
6
-
7
- - [ ] Module code follows kebab-case convention (e.g., "rpg-toolkit")
8
- - [ ] Module name is descriptive and title-cased
9
- - [ ] Module purpose is clearly defined (1-2 sentences)
10
- - [ ] Target audience is identified
11
- - [ ] Version number follows semantic versioning (e.g., "1.0.0")
12
- - [ ] Author information is present
13
-
14
- ### Naming Consistency
15
-
16
- - [ ] Module code used consistently throughout all files
17
- - [ ] No naming conflicts with existing modules
18
- - [ ] All paths use consistent module code references
19
-
20
- ## Directory Structure
21
-
22
- ### Source Directories ({bmad_folder}/{module-code}/)
23
-
24
- - [ ] `/agents` directory created (even if empty)
25
- - [ ] `/workflows` directory created (even if empty)
26
- - [ ] `/tasks` directory exists (if tasks planned)
27
- - [ ] `/templates` directory exists (if templates used)
28
- - [ ] `/data` directory exists (if data files needed)
29
- - [ ] `/_module-installer/install-config.yaml` present (defines configuration questions)
30
- - [ ] `README.md` present with documentation
31
-
32
- ### Installed Module Structure (generated in target after installation)
33
-
34
- - [ ] `/agents` directory for compiled agents
35
- - [ ] `/workflows` directory for workflow instances
36
- - [ ] `/data` directory for user data
37
- - [ ] `config.yaml` generated from install-config.yaml during installation
38
-
39
- ## Component Planning
40
-
41
- ### Agents
42
-
43
- - [ ] At least one agent defined or planned
44
- - [ ] Agent purposes are distinct and clear
45
- - [ ] Agent types (Simple/Expert/Module) identified
46
- - [ ] No significant overlap between agents
47
- - [ ] Primary agent is identified
48
-
49
- ### Workflows
50
-
51
- - [ ] At least one workflow defined or planned
52
- - [ ] Workflow purposes are clear
53
- - [ ] Workflow types identified (Document/Action/Interactive)
54
- - [ ] Primary workflow is identified
55
- - [ ] Workflow complexity is appropriate
56
-
57
- ### Tasks (if applicable)
58
-
59
- - [ ] Tasks have single, clear purposes
60
- - [ ] Tasks don't duplicate workflow functionality
61
- - [ ] Task files follow naming conventions
62
-
63
- ## Configuration Files
64
-
65
- ### Installation Configuration (install-config.yaml)
66
-
67
- - [ ] `install-config.yaml` exists in `_module-installer`
68
- - [ ] Module metadata present (code, name, version)
69
- - [ ] Configuration questions defined for user input
70
- - [ ] Default values provided for all questions
71
- - [ ] Prompt text is clear and helpful
72
- - [ ] Result templates use proper variable substitution
73
- - [ ] Paths use proper variables ({project-root}, {value}, etc.)
74
-
75
- ### Generated Config (config.yaml in target)
76
-
77
- - [ ] Generated during installation from install-config.yaml
78
- - [ ] Contains all user-provided configuration values
79
- - [ ] Module metadata included
80
- - [ ] No config.yaml should exist in source module
81
-
82
- ## Installation Infrastructure
83
-
84
- ### Installer Files
85
-
86
- - [ ] Install configuration validates against schema
87
- - [ ] All source paths exist or are marked as templates
88
- - [ ] Destination paths use correct variables
89
- - [ ] Optional vs required steps clearly marked
90
-
91
- ### installer.js (if present)
92
-
93
- - [ ] Main `installModule` function exists
94
- - [ ] Error handling implemented
95
- - [ ] Console logging for user feedback
96
- - [ ] Exports correct function names
97
- - [ ] Placeholder code replaced with actual logic (or logged as TODO)
98
-
99
- ### External Assets (if any)
100
-
101
- - [ ] Asset files exist in assets directory
102
- - [ ] Copy destinations are valid
103
- - [ ] Permissions requirements documented
104
-
105
- ## Documentation
106
-
107
- ### README.md
108
-
109
- - [ ] Module overview section present
110
- - [ ] Installation instructions included
111
- - [ ] Component listing with descriptions
112
- - [ ] Quick start guide provided
113
- - [ ] Configuration options documented
114
- - [ ] At least one usage example
115
- - [ ] Directory structure shown
116
- - [ ] Author and date information
117
-
118
- ### Component Documentation
119
-
120
- - [ ] Each agent has purpose documentation
121
- - [ ] Each workflow has description
122
- - [ ] Tasks are documented (if present)
123
- - [ ] Examples demonstrate typical usage
124
-
125
- ### Development Roadmap
126
-
127
- - [ ] TODO.md or roadmap section exists
128
- - [ ] Planned components listed
129
- - [ ] Development phases identified
130
- - [ ] Quick commands for adding components
131
-
132
- ## Integration
133
-
134
- ### Cross-component References
135
-
136
- - [ ] Agents reference correct workflow paths
137
- - [ ] Workflows reference correct task paths
138
- - [ ] All internal paths use module variables
139
- - [ ] External dependencies declared
140
-
141
- ### Module Boundaries
142
-
143
- - [ ] Module scope is well-defined
144
- - [ ] No feature creep into other domains
145
- - [ ] Clear separation from other modules
146
-
147
- ## Quality Checks
148
-
149
- ### Completeness
150
-
151
- - [ ] At least one functional component (not all placeholders)
152
- - [ ] Core functionality is implementable
153
- - [ ] Module provides clear value
154
-
155
- ### Consistency
156
-
157
- - [ ] Formatting consistent across files
158
- - [ ] Variable naming follows conventions
159
- - [ ] Communication style appropriate for domain
160
-
161
- ### Scalability
162
-
163
- - [ ] Structure supports future growth
164
- - [ ] Component organization is logical
165
- - [ ] No hard-coded limits
166
-
167
- ## Testing and Validation
168
-
169
- ### Structural Validation
170
-
171
- - [ ] YAML files parse without errors
172
- - [ ] JSON files (if any) are valid
173
- - [ ] XML files (if any) are well-formed
174
- - [ ] No syntax errors in JavaScript files
175
-
176
- ### Path Validation
177
-
178
- - [ ] All referenced paths exist or are clearly marked as TODO
179
- - [ ] Variable substitutions are correct
180
- - [ ] No absolute paths (unless intentional)
181
-
182
- ### Installation Testing
183
-
184
- - [ ] Installation steps can be simulated
185
- - [ ] No circular dependencies
186
- - [ ] Uninstall process defined (if complex)
187
-
188
- ## Final Checks
189
-
190
- ### Ready for Use
191
-
192
- - [ ] Module can be installed without errors
193
- - [ ] At least one component is functional
194
- - [ ] User can understand how to get started
195
- - [ ] Next steps are clear
196
-
197
- ### Professional Quality
198
-
199
- - [ ] No placeholder text remains (unless marked TODO)
200
- - [ ] No obvious typos or grammar issues
201
- - [ ] Professional tone throughout
202
- - [ ] Contact/support information provided
203
-
204
- ## Issues Found
205
-
206
- ### Critical Issues
207
-
208
- <!-- List any issues that MUST be fixed before module can be used -->
209
-
210
- ### Warnings
211
-
212
- <!-- List any issues that should be addressed but won't prevent basic usage -->
213
-
214
- ### Improvements
215
-
216
- <!-- List any optional enhancements that would improve the module -->
217
-
218
- ### Missing Components
219
-
220
- <!-- List any planned components not yet implemented -->
221
-
222
- ## Module Complexity Assessment
223
-
224
- ### Complexity Rating
225
-
226
- - [ ] Simple (1-2 agents, 2-3 workflows)
227
- - [ ] Standard (3-5 agents, 5-10 workflows)
228
- - [ ] Complex (5+ agents, 10+ workflows)
229
-
230
- ### Readiness Level
231
-
232
- - [ ] Prototype (Basic structure, mostly placeholders)
233
- - [ ] Alpha (Core functionality works)
234
- - [ ] Beta (Most features complete, needs testing)
235
- - [ ] Release (Full functionality, documented)
@@ -1,92 +0,0 @@
1
- # {{MODULE_NAME}} Module Configuration
2
- # This file defines installation questions and module configuration values
3
-
4
- code: "{{MODULE_CODE}}"
5
- name: "{{MODULE_NAME}}"
6
- default_selected: "{{DEFAULT_SELECTED}}" # true if this should be selected by default
7
-
8
- # Welcome message shown during installation
9
- prompt:
10
- - "{{WELCOME_MESSAGE_LINE_1}}"
11
- - "{{WELCOME_MESSAGE_LINE_2}}"
12
- # Core config values are automatically inherited:
13
- ## user_name
14
- ## communication_language
15
- ## document_output_language
16
- ## output_folder
17
-
18
- # ============================================================================
19
- # CONFIGURATION FIELDS
20
- # ============================================================================
21
- #
22
- # Each field can be:
23
- # 1. INTERACTIVE (has 'prompt' - asks user during installation)
24
- # 2. STATIC (no 'prompt' - just uses 'result' value)
25
- #
26
- # Field structure:
27
- # field_name:
28
- # prompt: "Question to ask user" (optional - omit for static values)
29
- # default: "default_value" (optional)
30
- # result: "{value}" or "static-value"
31
- # single-select: [...] (optional - for dropdown)
32
- # multi-select: [...] (optional - for checkboxes)
33
- #
34
- # Special placeholders in result:
35
- # {value} - replaced with user's answer
36
- # {project-root} - replaced with project root path
37
- # {directory_name} - replaced with project directory name
38
- # {module_code} - replaced with this module's code
39
- # ============================================================================
40
-
41
- # EXAMPLE: Interactive text input
42
- # example_project_name:
43
- # prompt: "What is your project name?"
44
- # default: "{directory_name}"
45
- # result: "{value}"
46
-
47
- # EXAMPLE: Interactive single-select dropdown
48
- # example_skill_level:
49
- # prompt: "What is your experience level?"
50
- # default: "intermediate"
51
- # result: "{value}"
52
- # single-select:
53
- # - value: "beginner"
54
- # label: "Beginner - New to this domain"
55
- # - value: "intermediate"
56
- # label: "Intermediate - Familiar with basics"
57
- # - value: "expert"
58
- # label: "Expert - Deep knowledge"
59
-
60
- # EXAMPLE: Interactive multi-select checkboxes
61
- # example_features:
62
- # prompt:
63
- # - "Which features do you want to enable?"
64
- # - "(Select all that apply)"
65
- # result: "{value}"
66
- # multi-select:
67
- # - "Feature A"
68
- # - "Feature B"
69
- # - "Feature C"
70
-
71
- # EXAMPLE: Interactive path input
72
- # example_output_path:
73
- # prompt: "Where should outputs be saved?"
74
- # default: "output/{{MODULE_CODE}}"
75
- # result: "{project-root}/{value}"
76
-
77
- # EXAMPLE: Static value (no user prompt)
78
- # example_static_setting:
79
- # result: "hardcoded-value"
80
-
81
- # EXAMPLE: Static path
82
- # module_data_path:
83
- # result: "{project-root}/{bmad_folder}/{{MODULE_CODE}}/data"
84
-
85
- # ============================================================================
86
- # YOUR MODULE CONFIGURATION FIELDS
87
- # ============================================================================
88
- # Replace examples above with your module's actual configuration needs.
89
- # Delete this comment block and the examples when implementing.
90
- # ============================================================================
91
-
92
- # TODO: INSERT {MODULE_CONFIG_FIELDS} HERE
@@ -1,231 +0,0 @@
1
- /* eslint-disable unicorn/prefer-module, unicorn/prefer-node-protocol */
2
- /**
3
- * {{MODULE_NAME}} Module Installer
4
- * Custom installation logic for complex module setup
5
- *
6
- * This is a template - replace {{VARIABLES}} with actual values
7
- */
8
-
9
- // const fs = require('fs'); // Uncomment when implementing file operations
10
- const path = require('path');
11
-
12
- /**
13
- * Main installation function
14
- * Called by BMAD installer when processing the module
15
- */
16
- async function installModule(config) {
17
- console.log('🚀 Installing {{MODULE_NAME}} module...');
18
- console.log(` Version: ${config.version}`);
19
- console.log(` Module Code: ${config.module_code}`);
20
-
21
- try {
22
- // Step 1: Validate environment
23
- await validateEnvironment(config);
24
-
25
- // Step 2: Setup custom configurations
26
- await setupConfigurations(config);
27
-
28
- // Step 3: Initialize module-specific features
29
- await initializeFeatures(config);
30
-
31
- // Step 4: Run post-install tasks
32
- await runPostInstallTasks(config);
33
-
34
- console.log('✅ {{MODULE_NAME}} module installed successfully!');
35
- return {
36
- success: true,
37
- message: 'Module installed and configured',
38
- };
39
- } catch (error) {
40
- console.error('❌ Installation failed:', error.message);
41
- return {
42
- success: false,
43
- error: error.message,
44
- };
45
- }
46
- }
47
-
48
- /**
49
- * Validate that the environment meets module requirements
50
- */
51
- async function validateEnvironment(config) {
52
- console.log(' Validating environment...');
53
-
54
- // TODO: Add environment checks
55
- // Examples:
56
- // - Check for required tools/binaries
57
- // - Verify permissions
58
- // - Check network connectivity
59
- // - Validate API keys
60
-
61
- // Placeholder validation
62
- if (!config.project_root) {
63
- throw new Error('Project root not defined');
64
- }
65
-
66
- console.log(' ✓ Environment validated');
67
- }
68
-
69
- /**
70
- * Setup module-specific configurations
71
- */
72
- async function setupConfigurations(config) {
73
- console.log(' Setting up configurations...');
74
-
75
- // TODO: Add configuration setup
76
- // Examples:
77
- // - Create config files
78
- // - Setup environment variables
79
- // - Configure external services
80
- // - Initialize settings
81
-
82
- // Placeholder configuration
83
- const configPath = path.join(config.project_root, 'bmad', config.module_code, 'config.json');
84
-
85
- // Example of module config that would be created
86
- // const moduleConfig = {
87
- // installed: new Date().toISOString(),
88
- // settings: {
89
- // // Add default settings
90
- // }
91
- // };
92
-
93
- // Note: This is a placeholder - actual implementation would write the file
94
- console.log(` ✓ Would create config at: ${configPath}`);
95
- console.log(' ✓ Configurations complete');
96
- }
97
-
98
- /**
99
- * Initialize module-specific features
100
- */
101
- async function initializeFeatures(config) {
102
- console.log(' Initializing features...');
103
-
104
- // TODO: Add feature initialization
105
- // Examples:
106
- // - Create database schemas
107
- // - Setup cron jobs
108
- // - Initialize caches
109
- // - Register webhooks
110
- // - Setup file watchers
111
-
112
- // Module-specific initialization based on type
113
- switch (config.module_category) {
114
- case 'data': {
115
- await initializeDataFeatures(config);
116
- break;
117
- }
118
- case 'automation': {
119
- await initializeAutomationFeatures(config);
120
- break;
121
- }
122
- case 'integration': {
123
- await initializeIntegrationFeatures(config);
124
- break;
125
- }
126
- default: {
127
- console.log(' - Using standard initialization');
128
- }
129
- }
130
-
131
- console.log(' ✓ Features initialized');
132
- }
133
-
134
- /**
135
- * Initialize data-related features
136
- */
137
- async function initializeDataFeatures(/* config */) {
138
- console.log(' - Setting up data storage...');
139
- // TODO: Setup databases, data folders, etc.
140
- }
141
-
142
- /**
143
- * Initialize automation features
144
- */
145
- async function initializeAutomationFeatures(/* config */) {
146
- console.log(' - Setting up automation hooks...');
147
- // TODO: Setup triggers, watchers, schedulers
148
- }
149
-
150
- /**
151
- * Initialize integration features
152
- */
153
- async function initializeIntegrationFeatures(/* config */) {
154
- console.log(' - Setting up integrations...');
155
- // TODO: Configure APIs, webhooks, external services
156
- }
157
-
158
- /**
159
- * Run post-installation tasks
160
- */
161
- async function runPostInstallTasks(/* config */) {
162
- console.log(' Running post-install tasks...');
163
-
164
- // TODO: Add post-install tasks
165
- // Examples:
166
- // - Generate sample data
167
- // - Run initial workflows
168
- // - Send notifications
169
- // - Update registries
170
-
171
- console.log(' ✓ Post-install tasks complete');
172
- }
173
-
174
- /**
175
- * Initialize database for the module (optional)
176
- */
177
- async function initDatabase(/* config */) {
178
- console.log(' Initializing database...');
179
-
180
- // TODO: Add database initialization
181
- // This function can be called from install-config.yaml
182
-
183
- console.log(' ✓ Database initialized');
184
- }
185
-
186
- /**
187
- * Generate sample data for the module (optional)
188
- */
189
- async function generateSamples(config) {
190
- console.log(' Generating sample data...');
191
-
192
- // TODO: Create sample files, data, configurations
193
- // This helps users understand how to use the module
194
-
195
- const samplesPath = path.join(config.project_root, 'examples', config.module_code);
196
-
197
- console.log(` - Would create samples at: ${samplesPath}`);
198
- console.log(' ✓ Samples generated');
199
- }
200
-
201
- /**
202
- * Uninstall the module (cleanup)
203
- */
204
- async function uninstallModule(/* config */) {
205
- console.log('🗑️ Uninstalling {{MODULE_NAME}} module...');
206
-
207
- try {
208
- // TODO: Add cleanup logic
209
- // - Remove configurations
210
- // - Clean up databases
211
- // - Unregister services
212
- // - Backup user data
213
-
214
- console.log('✅ Module uninstalled successfully');
215
- return { success: true };
216
- } catch (error) {
217
- console.error('❌ Uninstall failed:', error.message);
218
- return {
219
- success: false,
220
- error: error.message,
221
- };
222
- }
223
- }
224
-
225
- // Export functions for BMAD installer
226
- module.exports = {
227
- installModule,
228
- initDatabase,
229
- generateSamples,
230
- uninstallModule,
231
- };