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,577 +0,0 @@
1
- # Build Module - Interactive Module Builder Instructions
2
-
3
- <critical>The workflow execution engine is governed by: {project-root}/{bmad_folder}/core/tasks/workflow.xml</critical>
4
- <critical>You MUST have already loaded and processed: {project-root}/{bmad_folder}/bmb/workflows/create-module/workflow.yaml</critical>
5
- <critical>Study existing modules in: {project-root}/{bmad_folder}/ for patterns</critical>
6
- <critical>Communicate in {communication_language} throughout the module creation process</critical>
7
- <critical>⚠️ ABSOLUTELY NO TIME ESTIMATES - NEVER mention hours, days, weeks, months, or ANY time-based predictions. AI has fundamentally changed development speed - what once took teams weeks/months can now be done by one person in hours. DO NOT give ANY time estimates whatsoever.</critical>
8
-
9
- <workflow>
10
-
11
- <step n="-1" goal="Optional brainstorming for module ideas" optional="true">
12
- <ask>Do you want to brainstorm module ideas first? [y/n]</ask>
13
-
14
- <check if="yes">
15
- <action>Invoke brainstorming workflow: {brainstorming_workflow}</action>
16
- <action>Pass context data: {brainstorming_context}</action>
17
- <action>Wait for brainstorming session completion</action>
18
- <action>Use brainstorming output to inform module concept, agent lineup, and workflow portfolio in following steps</action>
19
- </check>
20
-
21
- <check if="no">
22
- <action>Proceed directly to Step 0</action>
23
- </check>
24
-
25
- <template-output>brainstorming_results</template-output>
26
- </step>
27
-
28
- <step n="0" goal="Check for module brief" optional="true">
29
- <ask>Do you have a module brief or should we create one? [have/create/skip]</ask>
30
-
31
- <check if="create">
32
- <action>Invoke module-brief workflow: {project-root}/{bmad_folder}/bmb/workflows/module-brief/workflow.yaml</action>
33
- <action>Wait for module brief completion</action>
34
- <action>Load the module brief to use as blueprint</action>
35
- </check>
36
-
37
- <check if="have">
38
- <ask>Provide path to module brief document</ask>
39
- <action>Load the module brief and use it to pre-populate all planning sections</action>
40
- </check>
41
-
42
- <check if="skip">
43
- <action>Proceed directly to Step 1</action>
44
- </check>
45
-
46
- <template-output>module_brief</template-output>
47
- </step>
48
-
49
- <step n="1" goal="Define module concept and scope">
50
- <critical>Load and study the complete module structure guide</critical>
51
- <action>Load module structure guide: {module_structure_guide}</action>
52
- <action>Understand module types (Simple/Standard/Complex)</action>
53
- <action>Review directory structures and component guidelines</action>
54
- <action>Study the installation infrastructure patterns</action>
55
-
56
- <action>If brainstorming or module brief was completed, reference those results to guide the conversation</action>
57
-
58
- <action>Guide user to articulate their module's vision, exploring its purpose, what it will help with, and who will use it</action>
59
-
60
- <action>Based on their description, intelligently propose module details:</action>
61
-
62
- **Module Identity Development:**
63
-
64
- 1. **Module name** - Extract from their description with proper title case
65
- 2. **Module code** - Generate kebab-case from name following patterns:
66
- - Multi-word descriptive names → shortened kebab-case
67
- - Domain-specific terms → recognizable abbreviations
68
- - Present suggested code and confirm it works for paths like {bmad_folder}/{{code}}/agents/
69
- 3. **Module purpose** - Refine their description into 1-2 clear sentences
70
- 4. **Target audience** - Infer from context or ask if unclear
71
-
72
- **Module Theme Reference Categories:**
73
-
74
- - Domain-Specific (Legal, Medical, Finance, Education)
75
- - Creative (RPG/Gaming, Story Writing, Music Production)
76
- - Technical (DevOps, Testing, Architecture, Security)
77
- - Business (Project Management, Marketing, Sales)
78
- - Personal (Journaling, Learning, Productivity)
79
-
80
- <critical>Determine output location:</critical>
81
-
82
- - Module will be created at {installer_output_folder}
83
-
84
- <action>Store module identity for scaffolding</action>
85
-
86
- <template-output>module_identity</template-output>
87
- </step>
88
-
89
- <step n="2" goal="Plan module components">
90
- <action>Based on the module purpose, intelligently propose an initial component architecture</action>
91
-
92
- **Agents Planning:**
93
-
94
- <action>Suggest agents based on module purpose, considering agent types (Simple/Expert/Module) appropriate to each role</action>
95
-
96
- **Example Agent Patterns by Domain:**
97
-
98
- - Data/Analytics: Analyst, Designer, Builder roles
99
- - Gaming/Creative: Game Master, Generator, Storytelling roles
100
- - Team/Business: Manager, Facilitator, Documentation roles
101
-
102
- <action>Present suggested agent list with types, explaining we can start with core ones and add others later</action>
103
- <action>Confirm which agents resonate with their vision</action>
104
-
105
- **Workflows Planning:**
106
-
107
- <action>Intelligently suggest workflows that complement the proposed agents</action>
108
-
109
- **Example Workflow Patterns by Domain:**
110
-
111
- - Data/Analytics: analyze-dataset, create-dashboard, generate-report
112
- - Gaming/Creative: session-prep, generate-encounter, world-building
113
- - Team/Business: planning, facilitation, documentation workflows
114
-
115
- <action>For each workflow, note whether it should be Document, Action, or Interactive type</action>
116
- <action>Confirm which workflows are most important to start with</action>
117
- <action>Determine which to create now vs placeholder</action>
118
-
119
- **Tasks Planning (optional):**
120
- <ask>Any special tasks that don't warrant full workflows?</ask>
121
-
122
- <action if="tasks needed">For each task, capture name, purpose, and whether standalone or supporting</action>
123
-
124
- <template-output>module_components</template-output>
125
- </step>
126
-
127
- <step n="2b" goal="Determine module complexity">
128
- <action>Based on components, intelligently determine module type using criteria:</action>
129
-
130
- **Simple Module Criteria:**
131
-
132
- - 1-2 agents, all Simple type
133
- - 1-3 workflows
134
- - No complex integrations
135
-
136
- **Standard Module Criteria:**
137
-
138
- - 2-4 agents with mixed types
139
- - 3-8 workflows
140
- - Some shared resources
141
-
142
- **Complex Module Criteria:**
143
-
144
- - 4+ agents or multiple Module-type agents
145
- - 8+ workflows
146
- - Complex interdependencies
147
- - External integrations
148
-
149
- <action>Present determined module type with explanation of what structure will be set up</action>
150
-
151
- <template-output>module_type</template-output>
152
- </step>
153
-
154
- <step n="3" goal="Create module directory structure">
155
- <critical>Use module path determined in Step 1:</critical>
156
- - The module base path is {{module_path}}
157
-
158
- <action>Create base module directories at the determined path:</action>
159
-
160
- ```
161
- {{module_code}}/
162
- ├── agents/ # Agent definitions
163
- ├── workflows/ # Workflow folders
164
- ├── tasks/ # Task files (if any)
165
- ├── templates/ # Shared templates
166
- ├── data/ # Module data files
167
- ├── _module-installer/ # Installation configuration
168
- │ └── install-config.yaml # Configuration questions (config.yaml generated at install time)
169
- └── README.md # Module documentation
170
- ```
171
-
172
- <action>Create installer directory:</action>
173
-
174
- **INSTALLED MODULE STRUCTURE** (generated in target project after installation):
175
-
176
- ```
177
- {{module_code}}/
178
- ├── agents/ # Compiled agents
179
- ├── workflows/ # Workflow instances
180
- ├── config.yaml # Generated from install-config.yaml during installation
181
- └── data/ # User data directory
182
- ```
183
-
184
- **SOURCE MODULE** (module-installer is for installation only, not copied to target):
185
-
186
- ```
187
- {{module_code}}/
188
- ├── _module-installer/
189
- │ ├── install-config.yaml # Configuration questions
190
- │ ├── installer.js # Optional custom installation logic
191
- │ └── assets/ # Files to copy during install
192
- ```
193
-
194
- <template-output>directory_structure</template-output>
195
- </step>
196
-
197
- <step n="4" goal="Plan module configuration fields">
198
- <action>Based on the module purpose and components, determine what configuration settings the module needs</action>
199
-
200
- **Configuration Field Planning:**
201
-
202
- <ask>Does your module need any user-configurable settings during installation?</ask>
203
-
204
- **Common configuration patterns:**
205
-
206
- - Output/data paths (where module saves files)
207
- - Feature toggles (enable/disable functionality)
208
- - Integration settings (API keys, external services)
209
- - Behavior preferences (automation level, detail level)
210
- - User skill level or experience settings
211
-
212
- <action>For each configuration field needed, determine:</action>
213
-
214
- 1. Field name (snake_case)
215
- 2. Whether it's INTERACTIVE (asks user) or STATIC (hardcoded)
216
- 3. Prompt text (if interactive)
217
- 4. Default value
218
- 5. Type: text input, single-select, or multi-select
219
- 6. Result template (how the value gets stored)
220
-
221
- <action>Store planned configuration fields for installer generation in step 7</action>
222
-
223
- <template-output>module_config_fields</template-output>
224
- </step>
225
-
226
- <step n="5" goal="Create first agent" optional="true">
227
- <ask>Create your first agent now? [yes/no]</ask>
228
-
229
- <check if="yes">
230
- <action>Invoke agent builder workflow: {agent_builder}</action>
231
- <action>Pass module_components as context input</action>
232
- <action>Guide them to create the primary agent for the module</action>
233
-
234
- <critical>Save to module's agents folder:</critical>
235
-
236
- - Save to {{module_path}}/agents/
237
- </check>
238
-
239
- <check if="no">
240
- <action>Create placeholder file in agents folder with TODO notes including agent name, purpose, and type</action>
241
- </check>
242
-
243
- <template-output>first_agent</template-output>
244
- </step>
245
-
246
- <step n="6" goal="Create first workflow" optional="true">
247
- <ask>Create your first workflow now? [yes/no]</ask>
248
-
249
- <check if="yes">
250
- <action>Invoke workflow builder: {workflow_builder}</action>
251
- <action>Pass module_components as context input</action>
252
- <action>Guide them to create the primary workflow</action>
253
-
254
- <critical>Save to module's workflows folder:</critical>
255
-
256
- - Save to {{module_path}}/workflows/
257
- </check>
258
-
259
- <check if="no">
260
- <action>Create placeholder workflow folder structure with TODO notes for workflow.yaml, instructions.md, and template.md if document workflow</action>
261
- </check>
262
-
263
- <template-output>first_workflow</template-output>
264
- </step>
265
-
266
- <step n="7" goal="Setup module installer">
267
- <action>Load installer template from: {installer_templates}/install-config.yaml</action>
268
-
269
- <critical>IMPORTANT: Create install-config.yaml NOT install-config.yaml</critical>
270
- <critical>This is the STANDARD format that BMAD installer uses</critical>
271
-
272
- Create module-installer/install-config.yaml:
273
-
274
- ```yaml
275
- # {{module_name}} Module Configuration
276
- # This file defines installation questions and module configuration values
277
-
278
- code: {{module_code}}
279
- name: "{{module_name}}"
280
- default_selected: false # Set to true if this should be selected by default
281
-
282
- # Welcome message shown during installation
283
- prompt:
284
- - "Thank you for choosing {{module_name}}!"
285
- - "{{brief_module_description}}"
286
-
287
- # Core config values are automatically inherited:
288
- ## user_name
289
- ## communication_language
290
- ## document_output_language
291
- ## output_folder
292
-
293
- # ============================================================================
294
- # CONFIGURATION FIELDS (from step 4 planning)
295
- # ============================================================================
296
- # Each field can be:
297
- # 1. INTERACTIVE (has 'prompt' - asks user during installation)
298
- # 2. STATIC (no 'prompt' - just uses 'result' value)
299
- # ============================================================================
300
-
301
- # EXAMPLE Interactive text input:
302
- # output_path:
303
- # prompt: "Where should {{module_code}} save outputs?"
304
- # default: "output/{{module_code}}"
305
- # result: "{project-root}/{value}"
306
-
307
- # EXAMPLE Interactive single-select:
308
- # detail_level:
309
- # prompt: "How detailed should outputs be?"
310
- # default: "standard"
311
- # result: "{value}"
312
- # single-select:
313
- # - value: "minimal"
314
- # label: "Minimal - Brief summaries only"
315
- # - value: "standard"
316
- # label: "Standard - Balanced detail"
317
- # - value: "detailed"
318
- # label: "Detailed - Comprehensive information"
319
-
320
- # EXAMPLE Static value:
321
- # module_version:
322
- # result: "1.0.0"
323
-
324
- # EXAMPLE Static path:
325
- # data_path:
326
- # result: "{project-root}/{bmad_folder}/{{module_code}}/data"
327
-
328
- {{generated_config_fields_from_step_4}}
329
- ```
330
-
331
- <critical>Save location:</critical>
332
-
333
- - Save to {{module_path}}/module-installer/install-config.yaml
334
-
335
- <ask>Does your module need custom installation logic (database setup, API registration, etc.)?</ask>
336
-
337
- <check if="yes, create installer.js">
338
- ```javascript
339
- // {{module_name}} Module Installer
340
- // Custom installation logic
341
-
342
- - @param {Object} options - Installation options
343
- - @param {string} options.projectRoot - Project root directory
344
- - @param {Object} options.config - Module configuration from install-config.yaml
345
- - @param {Array} options.installedIDEs - List of IDE codes being configured
346
- - @param {Object} options.logger - Logger instance (log, warn, error methods)
347
- - @returns {boolean} - true if successful, false to abort installation
348
-
349
- async function install(options) {
350
- const { projectRoot, config, installedIDEs, logger } = options;
351
-
352
- logger.log('Running {{module_name}} custom installer...');
353
-
354
- // TODO: Add custom installation logic here
355
- // Examples:
356
- // - Create database tables
357
- // - Download external assets
358
- // - Configure API connections
359
- // - Initialize data files
360
- // - Set up webhooks or integrations
361
-
362
- logger.log('{{module_name}} custom installation complete!');
363
- return true;
364
-
365
- }
366
-
367
- module.exports = { install };
368
-
369
- `````
370
-
371
- <critical>Save location:</critical>
372
-
373
- - Save to {{module_path}}/module-installer/installer.js
374
- </check>
375
-
376
- <check if="no">
377
- <action>Skip installer.js creation - the standard installer will handle everything</action>
378
- </check>
379
-
380
- <template-output>installer_config</template-output>
381
- </step>
382
-
383
- <step n="8" goal="Create module documentation">
384
- Generate comprehensive README.md:
385
-
386
- ````markdown
387
- # {{module_name}}
388
-
389
- {{module_purpose}}
390
-
391
- ## Overview
392
-
393
- This module provides:
394
- {{component_summary}}
395
-
396
- ## Installation
397
-
398
- ```bash
399
- bmad install {{module_code}}
400
- `````
401
-
402
- ````
403
-
404
- ## Components
405
-
406
- ### Agents ({{agent_count}})
407
-
408
- {{agent_documentation}}
409
-
410
- ### Workflows ({{workflow_count}})
411
-
412
- {{workflow_documentation}}
413
-
414
- ### Tasks ({{task_count}})
415
-
416
- {{task_documentation}}
417
-
418
- ## Quick Start
419
-
420
- 1. **Load the main agent:**
421
-
422
- ```
423
- agent {{primary_agent}}
424
- ```
425
-
426
- 2. **View available commands:**
427
-
428
- ```
429
- *help
430
- ```
431
-
432
- 3. **Run the main workflow:**
433
- ```
434
- workflow {{primary_workflow}}
435
- ```
436
-
437
- ## Module Structure
438
-
439
- ```
440
- {{directory_tree}}
441
- ```
442
-
443
- ## Configuration
444
-
445
- The module can be configured in `{bmad_folder}/{{module_code}}/config.yaml`
446
-
447
- Key settings:
448
- {{configuration_options}}
449
-
450
- ## Examples
451
-
452
- ### Example 1: {{example_use_case}}
453
-
454
- {{example_walkthrough}}
455
-
456
- ## Development Roadmap
457
-
458
- - [ ] {{roadmap_item_1}}
459
- - [ ] {{roadmap_item_2}}
460
- - [ ] {{roadmap_item_3}}
461
-
462
- ## Contributing
463
-
464
- To extend this module:
465
-
466
- 1. Add new agents using `create-agent` workflow
467
- 2. Add new workflows using `create-workflow` workflow
468
- 3. Submit improvements via pull request
469
-
470
- ## Author
471
-
472
- Created by {{user_name}} on {{date}}
473
-
474
- ````
475
-
476
- <template-output>module_readme</template-output>
477
- </step>
478
-
479
- <step n="9" goal="Generate component roadmap">
480
- Create a development roadmap for remaining components:
481
-
482
- **TODO.md file:**
483
-
484
- ```markdown
485
- # {{module_name}} Development Roadmap
486
-
487
- ## Phase 1: Core Components
488
-
489
- {{phase1_tasks}}
490
-
491
- ## Phase 2: Enhanced Features
492
-
493
- {{phase2_tasks}}
494
-
495
- ## Phase 3: Polish and Integration
496
-
497
- {{phase3_tasks}}
498
-
499
- ## Quick Commands
500
-
501
- Create new agent:
502
- ```
503
-
504
- workflow create-agent
505
-
506
- ```
507
-
508
- Create new workflow:
509
- ```
510
-
511
- workflow create-workflow
512
-
513
- ```
514
-
515
- ## Notes
516
- {{development_notes}}
517
- ```
518
-
519
- Ask if user wants to:
520
-
521
- 1. Continue building more components now
522
- 2. Save roadmap for later development
523
- 3. Test what's been built so far
524
-
525
- <template-output>development_roadmap</template-output>
526
- </step>
527
-
528
- <step n="10" goal="Validate and finalize module">
529
- <action>Run validation checks:</action>
530
-
531
- **Structure validation:**
532
-
533
- - All required directories created
534
- - Config files properly formatted
535
- - Installer configuration valid
536
-
537
- **Component validation:**
538
-
539
- - At least one agent or workflow exists (or planned)
540
- - All references use correct paths
541
- - Module code consistent throughout
542
-
543
- **Documentation validation:**
544
-
545
- - README.md complete
546
- - Installation instructions clear
547
- - Examples provided
548
-
549
- <action>Present summary to {user_name}:</action>
550
-
551
- - Module name and code
552
- - Location path
553
- - Agent count (created vs planned)
554
- - Workflow count (created vs planned)
555
- - Task count
556
- - Installer status
557
-
558
- <action>Provide next steps guidance:</action>
559
-
560
- 1. Complete remaining components using roadmap
561
- 2. Run the BMAD Method installer to this project location
562
- 3. Select 'Compile Agents' option after confirming folder
563
- 4. Module will be compiled and available for use
564
- 5. Test with bmad install command
565
- 6. Share or integrate with existing system
566
-
567
- <ask>Would you like to:
568
-
569
- - Create another component now?
570
- - Test the module installation?
571
- - Exit and continue later?
572
- </ask>
573
-
574
- <template-output>module_summary</template-output>
575
- </step>
576
-
577
- </workflow>