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
@@ -70,7 +70,7 @@ For a visual representation of the complete workflow, see: [workflow-method-gree
70
70
  Stories move through these states in the sprint status file:
71
71
 
72
72
  1. **TODO** - Story identified but not started
73
- 2. **IN PROGRESS** - Story being implemented (create-story → story-context → dev-story)
73
+ 2. **IN PROGRESS** - Story being implemented (create-story → dev-story)
74
74
  3. **READY FOR REVIEW** - Implementation complete, awaiting code review
75
75
  4. **DONE** - Accepted and complete
76
76
 
@@ -108,7 +108,8 @@ Stories move through these states in the sprint status file:
108
108
 
109
109
  **As Needed:**
110
110
 
111
- - Run `workflow-status` anytime to check progress
111
+ - Run `sprint-status` anytime in Phase 4 to inspect sprint-status.yaml and get the next implementation command
112
+ - Run `workflow-status` for cross-phase routing and project-level paths
112
113
  - Run `correct-course` if significant changes needed
113
114
 
114
115
  ---
@@ -132,6 +133,7 @@ The `sprint-status.yaml` file is the single source of truth for all implementati
132
133
  ### (BMad Method / Enterprise)
133
134
 
134
135
  ```
136
+ <<<<<<< Updated upstream
135
137
  PRD (PM) → Architecture (Architect)
136
138
  → create-epics-and-stories (PM) ← V6: After architecture!
137
139
  → implementation-readiness (Architect)
@@ -140,6 +142,144 @@ PRD (PM) → Architecture (Architect)
140
142
  → story loop (SM/DEV)
141
143
  → retrospective (SM)
142
144
  → [Next Epic]
145
+ =======
146
+ Current Phase: 4 (Implementation)
147
+ Current Epic: Epic 1 (Authentication)
148
+ Current Sprint: Sprint 1
149
+
150
+ Next Story: Story 1.3 (Email Verification)
151
+ Status: TODO
152
+ Dependencies: Story 1.2 (DONE) ✅
153
+
154
+ **Recommendation:** Run `create-story` to generate Story 1.3
155
+
156
+ After create-story:
157
+ 1. Run story-context
158
+ 2. Run dev-story
159
+ 3. Run code-review
160
+ 4. Run story-done
161
+ ```
162
+
163
+ See: [workflow-status instructions](../workflows/workflow-status/instructions.md)
164
+
165
+ ---
166
+
167
+ ### document-project
168
+
169
+ **Purpose:** Analyze and document brownfield projects by scanning codebase, architecture, and patterns.
170
+
171
+ **Agent:** Analyst
172
+ **Duration:** 1-3 hours
173
+ **When to Use:** Brownfield projects without documentation
174
+
175
+ **How It Works:**
176
+
177
+ 1. Scans codebase structure
178
+ 2. Identifies architecture patterns
179
+ 3. Documents technology stack
180
+ 4. Creates reference documentation
181
+ 5. Generates PRD-like document from existing code
182
+
183
+ **Output:** `project-documentation-{date}.md`
184
+
185
+ **When to Run:**
186
+
187
+ - Before starting work on legacy project
188
+ - When inheriting undocumented codebase
189
+ - Creating onboarding documentation
190
+
191
+ See: [document-project reference](./workflow-document-project-reference.md)
192
+
193
+ ---
194
+
195
+ ## Story Lifecycle Visualization
196
+
197
+ ```
198
+ ┌─────────────────────────────────────────────────────────────┐
199
+ │ PHASE 4: IMPLEMENTATION (Iterative Story Lifecycle) │
200
+ └─────────────────────────────────────────────────────────────┘
201
+
202
+ ┌─────────────────┐
203
+ │ Sprint Planning │ → Creates sprint-status.yaml
204
+ └────────┬────────┘ Defines story queue
205
+
206
+ ├──────────────────────────────────────────┐
207
+ │ │
208
+ ▼ │
209
+ ┌─────────────────────┐ │
210
+ │ Epic Tech Context │ → Optional per epic │
211
+ │ (Once per epic) │ Provides technical │
212
+ └─────────────────────┘ guidance │
213
+ │ │
214
+ ▼ │
215
+ ┌─────────────────────────────────────────────────┤
216
+ │ FOR EACH STORY IN QUEUE: │
217
+ ├─────────────────────────────────────────────────┤
218
+ │ │
219
+ ▼ │
220
+ ┌─────────────────┐ │
221
+ │ Create Story │ → Generates story file │
222
+ │ (TODO → IN PROGRESS) │
223
+ └────────┬────────┘ │
224
+ │ │
225
+ ▼ │
226
+ ┌─────────────────┐ │
227
+ │ Story Context │ → Assembles focused context │
228
+ └────────┬────────┘ │
229
+ │ │
230
+ ▼ │
231
+ ┌─────────────────┐ │
232
+ │ Dev Story │ → Implements + tests │
233
+ │ (IN PROGRESS) │ │
234
+ └────────┬────────┘ │
235
+ │ │
236
+ ▼ │
237
+ ┌─────────────────┐ │
238
+ │ Code Review │ → Senior dev review │
239
+ │ (IN PROGRESS → │ │
240
+ │ READY FOR REVIEW) │
241
+ └────────┬────────┘ │
242
+ │ │
243
+ ┌────┴────┐ │
244
+ │ Result? │ │
245
+ └────┬────┘ │
246
+ │ │
247
+ ┌────┼────────────────────┐ │
248
+ │ │ │ │
249
+ ▼ ▼ ▼ │
250
+ APPROVED APPROVED REQUEST │
251
+ WITH COMMENTS CHANGES │
252
+ │ │ │ │
253
+ └─────────┴───────────────────┘ │
254
+ │ │
255
+ ▼ │
256
+ ┌─────────────────┐ │
257
+ │ Story Done │ → READY FOR REVIEW → DONE│
258
+ └────────┬────────┘ │
259
+ │ │
260
+ ├─────────────────────────────────────┘
261
+ │ More stories?
262
+
263
+
264
+ ┌────────────────┐
265
+ │ Epic Complete? │
266
+ └────────┬───────┘
267
+
268
+ ┌────┼────┐
269
+ │ │
270
+ Yes No
271
+ │ └──> Continue to next story
272
+
273
+
274
+ ┌─────────────────┐
275
+ │ Retrospective │ → Review epic, lessons learned
276
+ └─────────────────┘
277
+
278
+
279
+ All epics done?
280
+
281
+ Yes → PROJECT COMPLETE
282
+ >>>>>>> Stashed changes
143
283
  ```
144
284
 
145
285
  ---
@@ -155,7 +295,7 @@ PRD (PM) → Architecture (Architect)
155
295
  ## Troubleshooting
156
296
 
157
297
  **Q: Which workflow should I run next?**
158
- A: Run `workflow-status` - it reads the sprint status file and tells you exactly what to do.
298
+ A: Run `workflow-status` - it reads the sprint status file and tells you exactly what to do. During implementation (Phase 4) run `sprint-status` (fast check against sprint-status.yaml).
159
299
 
160
300
  **Q: Story needs significant changes mid-implementation?**
161
301
  A: Run `correct-course` to analyze impact and route appropriately.
@@ -424,13 +424,13 @@ Architecture documents are living. Update them as you learn during implementatio
424
424
 
425
425
  - **Planning:** prd (PM) - creates FRs/NFRs only, NOT epics
426
426
  - **Solutioning:** Optional UX → architecture (Architect) → create-epics-and-stories (PM) → implementation-readiness (Architect)
427
- - **Implementation:** sprint-planning → epic-tech-context → dev-story
427
+ - **Implementation:** sprint-planning → create-story → dev-story
428
428
 
429
429
  ### Enterprise
430
430
 
431
431
  - **Planning:** prd (PM) - creates FRs/NFRs only (same as BMad Method)
432
432
  - **Solutioning:** Optional UX → architecture (Architect) → Optional extended workflows (security-architecture, devops-strategy) → create-epics-and-stories (PM) → implementation-readiness (Architect)
433
- - **Implementation:** sprint-planning → epic-tech-context → dev-story
433
+ - **Implementation:** sprint-planning → create-story → dev-story
434
434
 
435
435
  **Key Difference:** Enterprise adds optional extended workflows AFTER architecture but BEFORE create-epics-and-stories. Everything else is identical to BMad Method.
436
436
 
@@ -0,0 +1,85 @@
1
+ <task id="bmad/bmm/tasks/daily-standup.xml" name="Daily Standup">
2
+ <llm critical="true">
3
+ <i>MANDATORY: Execute ALL steps in the flow section IN EXACT ORDER</i>
4
+ <i>DO NOT skip steps or change the sequence</i>
5
+ <i>HALT immediately when halt-conditions are met</i>
6
+ <i>Each action tag within a step tag is a REQUIRED action to complete that step</i>
7
+ <i>Sections outside flow (validation, output, critical-context) provide essential context - review and apply throughout execution</i>
8
+ </llm>
9
+ <flow>
10
+ <step n="1" title="Project Context Discovery">
11
+ <action>Check for stories folder at {project-root}{output_folder}/stories/</action>
12
+ <action>Find current story by identifying highest numbered story file</action>
13
+ <action>Read story status (In Progress, Ready for Review, etc.)</action>
14
+ <action>Extract agent notes from Dev Agent Record, TEA Results, PO Notes sections</action>
15
+ <action>Check for next story references from epics</action>
16
+ <action>Identify blockers from story sections</action>
17
+ </step>
18
+
19
+ <step n="2" title="Initialize Standup with Context">
20
+ <output>
21
+ 🏃 DAILY STANDUP - Story-{{number}}: {{title}}
22
+
23
+ Current Sprint Status:
24
+ - Active Story: story-{{number}} ({{status}} - {{percentage}}% complete)
25
+ - Next in Queue: story-{{next-number}}: {{next-title}}
26
+ - Blockers: {{blockers-from-story}}
27
+
28
+ Team assembled based on story participants:
29
+ {{ List Agents from {project-root}/bmad/_cfg/agent-manifest.csv }}
30
+ </output>
31
+ </step>
32
+
33
+ <step n="3" title="Structured Standup Discussion">
34
+ <action>Each agent provides three items referencing real story data</action>
35
+ <action>What I see: Their perspective on current work, citing story sections (1-2 sentences)</action>
36
+ <action>What concerns me: Issues from their domain or story blockers (1-2 sentences)</action>
37
+ <action>What I suggest: Actionable recommendations for progress (1-2 sentences)</action>
38
+ </step>
39
+
40
+ <step n="4" title="Create Standup Summary">
41
+ <output>
42
+ 📋 STANDUP SUMMARY:
43
+ Key Items from Story File:
44
+ - {{completion-percentage}}% complete ({{tasks-complete}}/{{total-tasks}} tasks)
45
+ - Blocker: {{main-blocker}}
46
+ - Next: {{next-story-reference}}
47
+
48
+ Action Items:
49
+ - {{agent}}: {{action-item}}
50
+ - {{agent}}: {{action-item}}
51
+ - {{agent}}: {{action-item}}
52
+
53
+ Need extended discussion? Use *party-mode for detailed breakout.
54
+ </output>
55
+ </step>
56
+ </flow>
57
+
58
+ <agent-selection>
59
+ <context type="prd-review">
60
+ <i>Primary: Sarah (PO), Mary (Analyst), Winston (Architect)</i>
61
+ <i>Secondary: Murat (TEA), James (Dev)</i>
62
+ </context>
63
+ <context type="story-planning">
64
+ <i>Primary: Sarah (PO), Bob (SM), James (Dev)</i>
65
+ <i>Secondary: Murat (TEA)</i>
66
+ </context>
67
+ <context type="validate-architecture">
68
+ <i>Primary: Winston (Architect), James (Dev), Murat (TEA)</i>
69
+ <i>Secondary: Sarah (PO)</i>
70
+ </context>
71
+ <context type="implementation">
72
+ <i>Primary: James (Dev), Murat (TEA), Winston (Architect)</i>
73
+ <i>Secondary: Sarah (PO)</i>
74
+ </context>
75
+ </agent-selection>
76
+
77
+ <llm critical="true">
78
+ <i>This task extends party-mode with agile-specific structure</i>
79
+ <i>Time-box responses (standup = brief)</i>
80
+ <i>Focus on actionable items from real story data when available</i>
81
+ <i>End with clear next steps</i>
82
+ <i>No deep dives (suggest breakout if needed)</i>
83
+ <i>If no stories folder detected, run general standup format</i>
84
+ </llm>
85
+ </task>
@@ -662,7 +662,7 @@ Before deploying your CI pipeline, verify:
662
662
  - [ ] **Artifact retention**: 30 days for reports, 7 days for failure artifacts
663
663
  - [ ] **Parallelization**: Matrix strategy uses fail-fast: false
664
664
  - [ ] **Burn-in enabled**: Changed specs run 5-10x before merge
665
- - [ ] **wait-on app startup**: CI waits for app (wait-on: 'http://localhost:3000')
665
+ - [ ] **wait-on app startup**: CI waits for app (wait-on: '<http://localhost:3000>')
666
666
  - [ ] **Secrets documented**: README lists required secrets (API keys, tokens)
667
667
  - [ ] **Local parity**: CI scripts runnable locally (npm run test:ci)
668
668
 
@@ -262,7 +262,7 @@ import { apiRequest } from '@seontechnologies/playwright-utils/api-request'; //
262
262
 
263
263
  The official `@seontechnologies/playwright-utils` repository provides working examples of all patterns described in these fragments.
264
264
 
265
- **Repository:** https://github.com/seontechnologies/playwright-utils
265
+ **Repository:** <https://github.com/seontechnologies/playwright-utils>
266
266
 
267
267
  **Key resources:**
268
268
 
@@ -12,8 +12,8 @@ workflowFile: '{workflow_path}/workflow.md'
12
12
  outputFile: '{output_folder}/analysis/product-brief-{{project_name}}-{{date}}.md'
13
13
 
14
14
  # Task References
15
- advancedElicitationTask: '{project-root}/.bmad/core/tasks/advanced-elicitation.xml'
16
- partyModeWorkflow: '{project-root}/.bmad/core/workflows/party-mode/workflow.md'
15
+ advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
16
+ partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
17
17
  ---
18
18
 
19
19
  # Step 2: Product Vision Discovery
@@ -12,8 +12,8 @@ workflowFile: '{workflow_path}/workflow.md'
12
12
  outputFile: '{output_folder}/analysis/product-brief-{{project_name}}-{{date}}.md'
13
13
 
14
14
  # Task References
15
- advancedElicitationTask: '{project-root}/.bmad/core/tasks/advanced-elicitation.xml'
16
- partyModeWorkflow: '{project-root}/.bmad/core/workflows/party-mode/workflow.md'
15
+ advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
16
+ partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
17
17
  ---
18
18
 
19
19
  # Step 3: Target Users Discovery
@@ -12,8 +12,8 @@ workflowFile: '{workflow_path}/workflow.md'
12
12
  outputFile: '{output_folder}/analysis/product-brief-{{project_name}}-{{date}}.md'
13
13
 
14
14
  # Task References
15
- advancedElicitationTask: '{project-root}/.bmad/core/tasks/advanced-elicitation.xml'
16
- partyModeWorkflow: '{project-root}/.bmad/core/workflows/party-mode/workflow.md'
15
+ advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
16
+ partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
17
17
  ---
18
18
 
19
19
  # Step 4: Success Metrics Definition
@@ -12,8 +12,8 @@ workflowFile: '{workflow_path}/workflow.md'
12
12
  outputFile: '{output_folder}/analysis/product-brief-{{project_name}}-{{date}}.md'
13
13
 
14
14
  # Task References
15
- advancedElicitationTask: '{project-root}/.bmad/core/tasks/advanced-elicitation.xml'
16
- partyModeWorkflow: '{project-root}/.bmad/core/workflows/party-mode/workflow.md'
15
+ advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
16
+ partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
17
17
  ---
18
18
 
19
19
  # Step 5: MVP Scope Definition
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: Product Brief Workflow
2
+ name: create-product-brief
3
3
  description: Create comprehensive product briefs through collaborative step-by-step discovery as creative Business Analyst working with the user as peers.
4
4
  web_bundle: true
5
5
  ---
@@ -25,7 +25,7 @@
25
25
  - **Research topic = "{{research_topic}}"** - discovered from initial discussion
26
26
  - **Research goals = "{{research_goals}}"** - captured from initial discussion
27
27
  - Focus on industry/domain analysis with web research
28
- - Web search capabilities with {{current_year}} data are enabled
28
+ - Web search is required to verify and supplement your knowledge with current facts
29
29
 
30
30
  ## YOUR TASK:
31
31
 
@@ -48,7 +48,7 @@ Start with domain scope understanding:
48
48
 
49
49
  **Research Approach:**
50
50
 
51
- - Current {{current_year}} web data with rigorous source verification
51
+ - All claims verified against current public sources
52
52
  - Multi-source validation for critical domain claims
53
53
  - Confidence levels for uncertain domain information
54
54
  - Comprehensive domain coverage with industry-specific insights
@@ -66,7 +66,7 @@ For **{{research_topic}}**, I will research:
66
66
  ✅ **Economic Factors** - market size, growth projections, economic impact
67
67
  ✅ **Supply Chain Analysis** - value chain, ecosystem, partnerships
68
68
 
69
- **All using current {{current_year}} web data with source verification.**
69
+ **All claims verified against current public sources.**
70
70
 
71
71
  **Does this domain research scope and approach align with your goals?**
72
72
  [C] Continue - Begin domain research with this scope
@@ -77,7 +77,7 @@ For **{{research_topic}}**, I will research:
77
77
 
78
78
  - Document scope confirmation in research file
79
79
  - Update frontmatter: `stepsCompleted: [1]`
80
- - Load: `./step-02-industry-analysis.md`
80
+ - Load: `./step-02-domain-analysis.md`
81
81
 
82
82
  ## APPEND TO DOCUMENT:
83
83
 
@@ -99,7 +99,7 @@ When user selects 'C', append scope confirmation:
99
99
 
100
100
  **Research Methodology:**
101
101
 
102
- - Current {{current_year}} web data with rigorous source verification
102
+ - All claims verified against current public sources
103
103
  - Multi-source validation for critical domain claims
104
104
  - Confidence level framework for uncertain information
105
105
  - Comprehensive domain coverage with industry-specific insights
@@ -111,7 +111,7 @@ When user selects 'C', append scope confirmation:
111
111
 
112
112
  ✅ Domain research scope clearly confirmed with user
113
113
  ✅ All domain analysis areas identified and explained
114
- ✅ Research methodology with {{current_year}} data emphasized
114
+ ✅ Research methodology emphasized
115
115
  ✅ [C] continue option presented and handled correctly
116
116
  ✅ Scope confirmation documented when user proceeds
117
117
  ✅ Proper routing to next domain research step
@@ -120,7 +120,7 @@ When user selects 'C', append scope confirmation:
120
120
 
121
121
  ❌ Not clearly confirming domain research scope with user
122
122
  ❌ Missing critical domain analysis areas
123
- ❌ Not emphasizing {{current_year}} web data requirement
123
+ ❌ Not explaining that web search is required for current facts
124
124
  ❌ Not presenting [C] continue option
125
125
  ❌ Proceeding without user scope confirmation
126
126
  ❌ Not routing to next domain research step
@@ -131,6 +131,6 @@ When user selects 'C', append scope confirmation:
131
131
 
132
132
  ## NEXT STEP:
133
133
 
134
- After user selects 'C', load `./step-02-industry-analysis.md` to begin industry analysis with current {{current_year}} web data.
134
+ After user selects 'C', load `./step-02-domain-analysis.md` to begin industry analysis.
135
135
 
136
136
  Remember: This is SCOPE CONFIRMATION ONLY - no actual domain research yet, just confirming the research approach and scope!
@@ -6,10 +6,10 @@
6
6
 
7
7
  - 📖 CRITICAL: ALWAYS read the complete step file before taking any action - partial understanding leads to incomplete decisions
8
8
  - 🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read and understood before proceeding
9
- - ✅ ALWAYS use {{current_year}} web searches for current industry data
9
+ - ✅ Search the web to verify and supplement your knowledge with current facts
10
10
  - 📋 YOU ARE AN INDUSTRY ANALYST, not content generator
11
11
  - 💬 FOCUS on market size, growth, and industry dynamics
12
- - 🔍 WEB RESEARCH REQUIRED - Use {{current_year}} data and verify sources
12
+ - 🔍 WEB SEARCH REQUIRED - verify current facts against live sources
13
13
  - 📝 WRITE CONTENT IMMEDIATELY TO DOCUMENT
14
14
 
15
15
  ## EXECUTION PROTOCOLS:
@@ -31,7 +31,7 @@
31
31
 
32
32
  ## YOUR TASK:
33
33
 
34
- Conduct industry analysis focusing on market size, growth, and industry dynamics using current {{current_year}} web data with rigorous source verification.
34
+ Conduct industry analysis focusing on market size, growth, and industry dynamics. Search the web to verify and supplement current facts.
35
35
 
36
36
  ## INDUSTRY ANALYSIS SEQUENCE:
37
37
 
@@ -40,7 +40,7 @@ Conduct industry analysis focusing on market size, growth, and industry dynamics
40
40
  **UTILIZE SUBPROCESSES AND SUBAGENTS**: Use research subagents, subprocesses or parallel processing if available to thoroughly analyze different industry areas simultaneously and thoroughly.
41
41
 
42
42
  Start with industry research approach:
43
- "Now I'll conduct **industry analysis** for **{{research_topic}}** using current {{current_year}} web data to understand market dynamics.
43
+ "Now I'll conduct **industry analysis** for **{{research_topic}}** to understand market dynamics.
44
44
 
45
45
  **Industry Analysis Focus:**
46
46
 
@@ -56,10 +56,10 @@ Start with industry research approach:
56
56
 
57
57
  **Execute multiple web searches simultaneously:**
58
58
 
59
- `WebSearch: "{{research_topic}} market size value {{current_year}}"`
60
- `WebSearch: "{{research_topic}} market growth rate dynamics {{current_year}}"`
61
- `WebSearch: "{{research_topic}} market segmentation structure {{current_year}}"`
62
- `WebSearch: "{{research_topic}} industry trends evolution {{current_year}}"`
59
+ Search the web: "{{research_topic}} market size value"
60
+ Search the web: "{{research_topic}} market growth rate dynamics"
61
+ Search the web: "{{research_topic}} market segmentation structure"
62
+ Search the web: "{{research_topic}} industry trends evolution"
63
63
 
64
64
  **Analysis approach:**
65
65
 
@@ -104,11 +104,11 @@ When saving to document, append these Level 2 and Level 3 sections:
104
104
  ### Market Size and Valuation
105
105
 
106
106
  [Market size analysis with source citations]
107
- _Total Market Size: [Current market valuation with {{current_year}} data]_
107
+ _Total Market Size: [Current market valuation]_
108
108
  _Growth Rate: [CAGR and market growth projections]_
109
109
  _Market Segments: [Size and value of key market segments]_
110
110
  _Economic Impact: [Economic contribution and value creation]_
111
- _Source: [URL with {{current_year}} market size data]_
111
+ _Source: [URL]_
112
112
 
113
113
  ### Market Dynamics and Growth
114
114
 
@@ -117,7 +117,7 @@ _Growth Drivers: [Key factors driving market growth]_
117
117
  _Growth Barriers: [Factors limiting market expansion]_
118
118
  _Cyclical Patterns: [Industry seasonality and cycles]_
119
119
  _Market Maturity: [Life cycle stage and development phase]_
120
- _Source: [URL with {{current_year}} market dynamics data]_
120
+ _Source: [URL]_
121
121
 
122
122
  ### Market Structure and Segmentation
123
123
 
@@ -126,7 +126,7 @@ _Primary Segments: [Key market segments and their characteristics]_
126
126
  _Sub-segment Analysis: [Detailed breakdown of market sub-segments]_
127
127
  _Geographic Distribution: [Regional market variations and concentrations]_
128
128
  _Vertical Integration: [Supply chain and value chain structure]_
129
- _Source: [URL with {{current_year}} market structure data]_
129
+ _Source: [URL]_
130
130
 
131
131
  ### Industry Trends and Evolution
132
132
 
@@ -135,7 +135,7 @@ _Emerging Trends: [Current industry developments and transformations]_
135
135
  _Historical Evolution: [Industry development over recent years]_
136
136
  _Technology Integration: [How technology is changing the industry]_
137
137
  _Future Outlook: [Projected industry developments and changes]_
138
- _Source: [URL with {{current_year}} industry trends data]_
138
+ _Source: [URL]_
139
139
 
140
140
  ### Competitive Dynamics
141
141
 
@@ -144,14 +144,14 @@ _Market Concentration: [Level of market consolidation and competition]_
144
144
  _Competitive Intensity: [Degree of competition and rivalry]_
145
145
  _Barriers to Entry: [Obstacles for new market entrants]_
146
146
  _Innovation Pressure: [Rate of innovation and change]_
147
- _Source: [URL with {{current_year}} competitive dynamics data]_
147
+ _Source: [URL]_
148
148
  ```
149
149
 
150
150
  ### 5. Present Analysis and Continue Option
151
151
 
152
152
  **Show analysis and present continue option:**
153
153
 
154
- "I've completed **industry analysis** using current {{current_year}} data to understand market dynamics for {{research_topic}}.
154
+ "I've completed **industry analysis** for {{research_topic}}.
155
155
 
156
156
  **Key Industry Findings:**
157
157
 
@@ -190,7 +190,7 @@ Content is already written to document when generated in step 4. No additional a
190
190
 
191
191
  ## FAILURE MODES:
192
192
 
193
- Not using {{current_year}} in industry web searches
193
+ Relying on training data instead of web search for current facts
194
194
  ❌ Missing critical market size or growth data
195
195
  ❌ Incomplete market structure analysis
196
196
  ❌ Not identifying key industry trends
@@ -208,7 +208,7 @@ Content is already written to document when generated in step 4. No additional a
208
208
  - Use authoritative sources (market research firms, industry associations)
209
209
  - Analyze market size, growth rates, and segmentation data
210
210
  - Study industry trends and evolution patterns
211
- - Focus on current {{current_year}} industry data
211
+ - Search the web to verify facts
212
212
  - Present conflicting information when sources disagree
213
213
  - Apply confidence levels appropriately
214
214
 
@@ -225,4 +225,4 @@ Content is already written to document when generated in step 4. No additional a
225
225
 
226
226
  After user selects 'C', load `./step-03-competitive-landscape.md` to analyze competitive landscape, key players, and ecosystem analysis for {{research_topic}}.
227
227
 
228
- Remember: Always write research content to document immediately and emphasize current {{current_year}} industry data with rigorous source verification!
228
+ Remember: Always write research content to document immediately and search the web to verify facts!