bmad-method 5.0.0 → 5.0.1

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 (329) hide show
  1. package/.github/FUNDING.yaml +15 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
  4. package/.github/workflows/discord.yaml +25 -0
  5. package/.github/workflows/format-check.yaml +42 -0
  6. package/.github/workflows/manual-release.yaml +173 -0
  7. package/.husky/pre-commit +3 -2
  8. package/.vscode/settings.json +67 -74
  9. package/CHANGELOG.md +564 -19
  10. package/CONTRIBUTING.md +168 -5
  11. package/LICENSE +1 -1
  12. package/README.md +146 -218
  13. package/bmad-core/agent-teams/team-all.yaml +14 -0
  14. package/bmad-core/agent-teams/team-fullstack.yaml +18 -0
  15. package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
  16. package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
  17. package/bmad-core/agents/analyst.md +81 -0
  18. package/bmad-core/agents/architect.md +83 -0
  19. package/bmad-core/agents/bmad-master.md +107 -0
  20. package/bmad-core/agents/bmad-orchestrator.md +149 -0
  21. package/bmad-core/agents/dev.md +75 -0
  22. package/bmad-core/agents/pm.md +81 -0
  23. package/bmad-core/agents/po.md +76 -0
  24. package/bmad-core/agents/qa.md +88 -0
  25. package/bmad-core/agents/sm.md +62 -0
  26. package/bmad-core/agents/ux-expert.md +66 -0
  27. package/{.bmad-core → bmad-core}/checklists/architect-checklist.md +0 -5
  28. package/{.bmad-core → bmad-core}/checklists/change-checklist.md +2 -2
  29. package/{.bmad-core → bmad-core}/checklists/pm-checklist.md +0 -5
  30. package/{.bmad-core → bmad-core}/checklists/po-master-checklist.md +0 -9
  31. package/{.bmad-core → bmad-core}/checklists/story-dod-checklist.md +0 -7
  32. package/{.bmad-core → bmad-core}/checklists/story-draft-checklist.md +1 -4
  33. package/bmad-core/core-config.yaml +20 -0
  34. package/bmad-core/data/bmad-kb.md +806 -0
  35. package/bmad-core/data/brainstorming-techniques.md +36 -0
  36. package/bmad-core/data/elicitation-methods.md +154 -0
  37. package/bmad-core/data/test-levels-framework.md +146 -0
  38. package/bmad-core/data/test-priorities-matrix.md +172 -0
  39. package/bmad-core/tasks/advanced-elicitation.md +117 -0
  40. package/{.bmad-core → bmad-core}/tasks/correct-course.md +9 -12
  41. package/bmad-core/tasks/create-brownfield-story.md +312 -0
  42. package/{.bmad-core → bmad-core}/tasks/create-deep-research-prompt.md +4 -27
  43. package/bmad-core/tasks/create-next-story.md +112 -0
  44. package/bmad-core/tasks/document-project.md +343 -0
  45. package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
  46. package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
  47. package/{.bmad-core → bmad-core}/tasks/index-docs.md +3 -13
  48. package/bmad-core/tasks/kb-mode-interaction.md +75 -0
  49. package/bmad-core/tasks/nfr-assess.md +343 -0
  50. package/bmad-core/tasks/qa-gate.md +159 -0
  51. package/bmad-core/tasks/review-story.md +314 -0
  52. package/bmad-core/tasks/risk-profile.md +353 -0
  53. package/{.bmad-core → bmad-core}/tasks/shard-doc.md +27 -15
  54. package/bmad-core/tasks/test-design.md +174 -0
  55. package/bmad-core/tasks/trace-requirements.md +264 -0
  56. package/bmad-core/tasks/validate-next-story.md +134 -0
  57. package/bmad-core/templates/architecture-tmpl.yaml +650 -0
  58. package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
  59. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
  60. package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
  61. package/bmad-core/templates/competitor-analysis-tmpl.yaml +306 -0
  62. package/bmad-core/templates/front-end-architecture-tmpl.yaml +218 -0
  63. package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
  64. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +823 -0
  65. package/bmad-core/templates/market-research-tmpl.yaml +252 -0
  66. package/bmad-core/templates/prd-tmpl.yaml +202 -0
  67. package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
  68. package/bmad-core/templates/qa-gate-tmpl.yaml +102 -0
  69. package/bmad-core/templates/story-tmpl.yaml +137 -0
  70. package/bmad-core/workflows/brownfield-fullstack.yaml +297 -0
  71. package/bmad-core/workflows/brownfield-service.yaml +187 -0
  72. package/bmad-core/workflows/brownfield-ui.yaml +197 -0
  73. package/{.bmad-core/workflows/greenfield-fullstack.yml → bmad-core/workflows/greenfield-fullstack.yaml} +140 -77
  74. package/bmad-core/workflows/greenfield-service.yaml +206 -0
  75. package/bmad-core/workflows/greenfield-ui.yaml +235 -0
  76. package/common/tasks/create-doc.md +101 -0
  77. package/{.bmad-core → common}/tasks/execute-checklist.md +2 -13
  78. package/common/utils/bmad-doc-template.md +325 -0
  79. package/common/utils/workflow-management.md +69 -0
  80. package/dist/agents/analyst.txt +2889 -0
  81. package/dist/agents/architect.txt +3552 -0
  82. package/dist/agents/bmad-master.txt +8769 -0
  83. package/dist/agents/bmad-orchestrator.txt +1513 -0
  84. package/dist/agents/dev.txt +414 -0
  85. package/{.bmad-core/web-bundles → dist}/agents/pm.txt +668 -1119
  86. package/{.bmad-core/web-bundles → dist}/agents/po.txt +341 -484
  87. package/dist/agents/qa.txt +1987 -0
  88. package/dist/agents/sm.txt +658 -0
  89. package/dist/agents/ux-expert.txt +694 -0
  90. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +2371 -0
  91. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +1620 -0
  92. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +815 -0
  93. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +10952 -0
  94. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +4012 -0
  95. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +3698 -0
  96. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.txt +450 -0
  97. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +973 -0
  98. package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +15376 -0
  99. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +2075 -0
  100. package/dist/teams/team-all.txt +12682 -0
  101. package/dist/teams/team-fullstack.txt +10421 -0
  102. package/dist/teams/team-ide-minimal.txt +5103 -0
  103. package/dist/teams/team-no-ui.txt +8980 -0
  104. package/docs/GUIDING-PRINCIPLES.md +91 -0
  105. package/docs/core-architecture.md +219 -0
  106. package/docs/enhanced-ide-development-workflow.md +248 -0
  107. package/docs/expansion-packs.md +280 -0
  108. package/docs/how-to-contribute-with-pull-requests.md +158 -0
  109. package/docs/user-guide.md +504 -0
  110. package/docs/versioning-and-releases.md +115 -53
  111. package/docs/versions.md +4 -5
  112. package/docs/working-in-the-brownfield.md +597 -0
  113. package/eslint.config.mjs +119 -0
  114. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/Complete AI Agent System - Flowchart.svg +102 -0
  115. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.1 Google Cloud Project Setup/1.1.1 - Initial Project Configuration - bash copy.txt +13 -0
  116. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.1 Google Cloud Project Setup/1.1.1 - Initial Project Configuration - bash.txt +13 -0
  117. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.2 Agent Development Kit Installation/1.2.2 - Basic Project Structure - txt.txt +25 -0
  118. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.3 Core Configuration Files/1.3.1 - settings.py +34 -0
  119. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.3 Core Configuration Files/1.3.2 - main.py - Base Application.py +70 -0
  120. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/PART 1 - Google Cloud Vertex AI Setup Documentation/1.4 Deployment Configuration/1.4.2 - cloudbuild.yaml +26 -0
  121. package/expansion-packs/Complete AI Agent System - Blank Templates & Google Cloud Setup/README.md +109 -0
  122. package/expansion-packs/README.md +2 -112
  123. package/expansion-packs/bmad-2d-phaser-game-dev/agent-teams/phaser-2d-nodejs-game-team.yaml +13 -0
  124. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.md +71 -0
  125. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +78 -0
  126. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +64 -0
  127. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-design-checklist.md +201 -0
  128. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-story-dod-checklist.md +160 -0
  129. package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +8 -0
  130. package/expansion-packs/bmad-2d-phaser-game-dev/data/bmad-kb.md +250 -0
  131. package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +647 -0
  132. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/advanced-elicitation.md +110 -0
  133. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +216 -0
  134. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/game-design-brainstorming.md +290 -0
  135. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.yaml +613 -0
  136. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.yaml +356 -0
  137. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.yaml +343 -0
  138. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.yaml +253 -0
  139. package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.yaml +484 -0
  140. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yaml +183 -0
  141. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yaml +175 -0
  142. package/expansion-packs/bmad-2d-unity-game-dev/agent-teams/unity-2d-game-team.yaml +14 -0
  143. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.md +80 -0
  144. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.md +77 -0
  145. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.md +78 -0
  146. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.md +65 -0
  147. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-architect-checklist.md +391 -0
  148. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-change-checklist.md +203 -0
  149. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-design-checklist.md +201 -0
  150. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-story-dod-checklist.md +124 -0
  151. package/expansion-packs/bmad-2d-unity-game-dev/config.yaml +6 -0
  152. package/expansion-packs/bmad-2d-unity-game-dev/data/bmad-kb.md +769 -0
  153. package/expansion-packs/bmad-2d-unity-game-dev/data/development-guidelines.md +586 -0
  154. package/expansion-packs/bmad-2d-unity-game-dev/tasks/advanced-elicitation.md +110 -0
  155. package/expansion-packs/bmad-2d-unity-game-dev/tasks/correct-course-game.md +141 -0
  156. package/expansion-packs/bmad-2d-unity-game-dev/tasks/create-game-story.md +184 -0
  157. package/expansion-packs/bmad-2d-unity-game-dev/tasks/game-design-brainstorming.md +290 -0
  158. package/expansion-packs/bmad-2d-unity-game-dev/tasks/validate-game-story.md +200 -0
  159. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-architecture-tmpl.yaml +1030 -0
  160. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-brief-tmpl.yaml +356 -0
  161. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-design-doc-tmpl.yaml +705 -0
  162. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-story-tmpl.yaml +256 -0
  163. package/expansion-packs/bmad-2d-unity-game-dev/templates/level-design-doc-tmpl.yaml +484 -0
  164. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-dev-greenfield.yaml +183 -0
  165. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-prototype.yaml +175 -0
  166. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/README.md +9 -9
  167. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/agents/infra-devops-platform.md +30 -18
  168. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/checklists/infrastructure-checklist.md +1 -1
  169. package/expansion-packs/bmad-infrastructure-devops/config.yaml +9 -0
  170. package/expansion-packs/bmad-infrastructure-devops/data/bmad-kb.md +305 -0
  171. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/tasks/review-infrastructure.md +4 -5
  172. package/expansion-packs/{infrastructure-devops → bmad-infrastructure-devops}/tasks/validate-infrastructure.md +4 -5
  173. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.yaml +424 -0
  174. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.yaml +629 -0
  175. package/package.json +74 -42
  176. package/prettier.config.mjs +32 -0
  177. package/release_notes.md +30 -0
  178. package/tools/bmad-npx-wrapper.js +13 -15
  179. package/tools/builders/web-builder.js +544 -15
  180. package/tools/bump-all-versions.js +115 -0
  181. package/tools/bump-expansion-version.js +90 -0
  182. package/tools/cli.js +65 -32
  183. package/tools/flattener/aggregate.js +76 -0
  184. package/tools/flattener/binary.js +80 -0
  185. package/tools/flattener/discovery.js +71 -0
  186. package/tools/flattener/files.js +35 -0
  187. package/tools/flattener/ignoreRules.js +176 -0
  188. package/tools/flattener/main.js +573 -0
  189. package/tools/flattener/projectRoot.js +206 -0
  190. package/tools/flattener/prompts.js +44 -0
  191. package/tools/flattener/stats.helpers.js +395 -0
  192. package/tools/flattener/stats.js +80 -0
  193. package/tools/flattener/test-matrix.js +413 -0
  194. package/tools/flattener/xml.js +88 -0
  195. package/tools/installer/README.md +3 -53
  196. package/tools/installer/bin/bmad.js +475 -90
  197. package/tools/installer/config/ide-agent-config.yaml +58 -0
  198. package/tools/installer/config/install.config.yaml +123 -0
  199. package/tools/installer/lib/config-loader.js +208 -40
  200. package/tools/installer/lib/file-manager.js +258 -55
  201. package/tools/installer/lib/ide-base-setup.js +228 -0
  202. package/tools/installer/lib/ide-setup.js +1265 -253
  203. package/tools/installer/lib/installer.js +1651 -310
  204. package/tools/installer/lib/memory-profiler.js +225 -0
  205. package/tools/installer/lib/module-manager.js +114 -0
  206. package/tools/installer/lib/resource-locator.js +308 -0
  207. package/tools/installer/package.json +25 -24
  208. package/tools/lib/dependency-resolver.js +44 -48
  209. package/tools/lib/yaml-utils.js +29 -0
  210. package/tools/md-assets/web-agent-startup-instructions.md +39 -0
  211. package/tools/preview-release-notes.js +66 -0
  212. package/tools/shared/bannerArt.js +105 -0
  213. package/tools/sync-installer-version.js +7 -9
  214. package/tools/update-expansion-version.js +53 -0
  215. package/tools/upgraders/v3-to-v4-upgrader.js +221 -320
  216. package/tools/version-bump.js +42 -27
  217. package/tools/yaml-format.js +57 -44
  218. package/.bmad-core/agent-teams/team-all.yml +0 -16
  219. package/.bmad-core/agent-teams/team-fullstack.yml +0 -26
  220. package/.bmad-core/agent-teams/team-no-ui.yml +0 -15
  221. package/.bmad-core/agents/analyst.md +0 -59
  222. package/.bmad-core/agents/architect.md +0 -66
  223. package/.bmad-core/agents/bmad-master.md +0 -104
  224. package/.bmad-core/agents/bmad-orchestrator.md +0 -81
  225. package/.bmad-core/agents/dev.md +0 -70
  226. package/.bmad-core/agents/pm.md +0 -59
  227. package/.bmad-core/agents/po.md +0 -60
  228. package/.bmad-core/agents/qa.md +0 -52
  229. package/.bmad-core/agents/sm.md +0 -55
  230. package/.bmad-core/agents/ux-expert.md +0 -66
  231. package/.bmad-core/data/bmad-kb.md +0 -47
  232. package/.bmad-core/schemas/agent-team-schema.yml +0 -153
  233. package/.bmad-core/tasks/advanced-elicitation.md +0 -92
  234. package/.bmad-core/tasks/brainstorming-techniques.md +0 -238
  235. package/.bmad-core/tasks/core-dump.md +0 -74
  236. package/.bmad-core/tasks/create-agent.md +0 -202
  237. package/.bmad-core/tasks/create-doc.md +0 -74
  238. package/.bmad-core/tasks/create-expansion-pack.md +0 -425
  239. package/.bmad-core/tasks/create-next-story.md +0 -206
  240. package/.bmad-core/tasks/create-team.md +0 -229
  241. package/.bmad-core/tasks/doc-migration-task.md +0 -143
  242. package/.bmad-core/tasks/generate-ai-frontend-prompt.md +0 -58
  243. package/.bmad-core/templates/agent-tmpl.md +0 -58
  244. package/.bmad-core/templates/architecture-tmpl.md +0 -771
  245. package/.bmad-core/templates/brownfield-architecture-tmpl.md +0 -542
  246. package/.bmad-core/templates/brownfield-prd-tmpl.md +0 -240
  247. package/.bmad-core/templates/competitor-analysis-tmpl.md +0 -289
  248. package/.bmad-core/templates/expansion-pack-plan-tmpl.md +0 -91
  249. package/.bmad-core/templates/front-end-architecture-tmpl.md +0 -173
  250. package/.bmad-core/templates/front-end-spec-tmpl.md +0 -411
  251. package/.bmad-core/templates/fullstack-architecture-tmpl.md +0 -1016
  252. package/.bmad-core/templates/market-research-tmpl.md +0 -261
  253. package/.bmad-core/templates/prd-tmpl.md +0 -200
  254. package/.bmad-core/templates/project-brief-tmpl.md +0 -228
  255. package/.bmad-core/templates/simple-project-prd-tmpl.md +0 -461
  256. package/.bmad-core/templates/story-tmpl.md +0 -61
  257. package/.bmad-core/templates/web-agent-startup-instructions-template.md +0 -39
  258. package/.bmad-core/utils/agent-switcher.ide.md +0 -112
  259. package/.bmad-core/utils/template-format.md +0 -26
  260. package/.bmad-core/utils/workflow-management.md +0 -224
  261. package/.bmad-core/web-bundles/agents/analyst.txt +0 -1684
  262. package/.bmad-core/web-bundles/agents/architect.txt +0 -3584
  263. package/.bmad-core/web-bundles/agents/bmad-master.txt +0 -9491
  264. package/.bmad-core/web-bundles/agents/bmad-orchestrator.txt +0 -1466
  265. package/.bmad-core/web-bundles/agents/dev.txt +0 -316
  266. package/.bmad-core/web-bundles/agents/qa.txt +0 -129
  267. package/.bmad-core/web-bundles/agents/sm.txt +0 -658
  268. package/.bmad-core/web-bundles/agents/ux-expert.txt +0 -1099
  269. package/.bmad-core/web-bundles/teams/team-all.txt +0 -10757
  270. package/.bmad-core/web-bundles/teams/team-fullstack.txt +0 -10109
  271. package/.bmad-core/web-bundles/teams/team-no-ui.txt +0 -8950
  272. package/.bmad-core/workflows/brownfield-fullstack.yml +0 -116
  273. package/.bmad-core/workflows/brownfield-service.yml +0 -117
  274. package/.bmad-core/workflows/brownfield-ui.yml +0 -127
  275. package/.bmad-core/workflows/greenfield-service.yml +0 -143
  276. package/.bmad-core/workflows/greenfield-ui.yml +0 -172
  277. package/.claude/commands/analyst.md +0 -63
  278. package/.claude/commands/architect.md +0 -70
  279. package/.claude/commands/bmad-master.md +0 -108
  280. package/.claude/commands/bmad-orchestrator.md +0 -85
  281. package/.claude/commands/dev.md +0 -74
  282. package/.claude/commands/pm.md +0 -63
  283. package/.claude/commands/po.md +0 -64
  284. package/.claude/commands/qa.md +0 -56
  285. package/.claude/commands/sm.md +0 -59
  286. package/.claude/commands/ux-expert.md +0 -70
  287. package/.cursor/rules/analyst.mdc +0 -77
  288. package/.cursor/rules/architect.mdc +0 -84
  289. package/.cursor/rules/bmad-master.mdc +0 -122
  290. package/.cursor/rules/bmad-orchestrator.mdc +0 -99
  291. package/.cursor/rules/dev.mdc +0 -88
  292. package/.cursor/rules/pm.mdc +0 -77
  293. package/.cursor/rules/po.mdc +0 -78
  294. package/.cursor/rules/qa.mdc +0 -70
  295. package/.cursor/rules/sm.mdc +0 -73
  296. package/.cursor/rules/ux-expert.mdc +0 -84
  297. package/.github/workflows/release.yml +0 -59
  298. package/.releaserc.json +0 -18
  299. package/.roo/.roomodes +0 -95
  300. package/.roo/README.md +0 -38
  301. package/.vscode/extensions.json +0 -6
  302. package/.windsurf/rules/analyst.md +0 -71
  303. package/.windsurf/rules/architect.md +0 -78
  304. package/.windsurf/rules/bmad-master.md +0 -116
  305. package/.windsurf/rules/bmad-orchestrator.md +0 -93
  306. package/.windsurf/rules/dev.md +0 -82
  307. package/.windsurf/rules/pm.md +0 -71
  308. package/.windsurf/rules/po.md +0 -72
  309. package/.windsurf/rules/qa.md +0 -64
  310. package/.windsurf/rules/sm.md +0 -67
  311. package/.windsurf/rules/ux-expert.md +0 -78
  312. package/docs/bmad-workflow-guide.md +0 -161
  313. package/docs/claude-code-guide.md +0 -119
  314. package/docs/cursor-guide.md +0 -127
  315. package/docs/roo-code-guide.md +0 -140
  316. package/docs/sample-output/simple-fullstack-greenfield/prd.md +0 -42
  317. package/docs/windsurf-guide.md +0 -127
  318. package/expansion-packs/infrastructure-devops/manifest.yml +0 -38
  319. package/expansion-packs/infrastructure-devops/templates/infrastructure-architecture-tmpl.md +0 -415
  320. package/expansion-packs/infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.md +0 -0
  321. package/tools/installer/config/install.config.yml +0 -139
  322. package/tools/installer/package-lock.json +0 -906
  323. package/tools/installer/templates/claude-commands.md +0 -7
  324. package/tools/installer/templates/cursor-rules.md +0 -22
  325. package/tools/installer/templates/windsurf-rules.md +0 -22
  326. package/tools/semantic-release-sync-installer.js +0 -31
  327. /package/{.bmad-core → bmad-core}/data/technical-preferences.md +0 -0
  328. /package/{.bmad-core → bmad-core}/tasks/brownfield-create-epic.md +0 -0
  329. /package/{.bmad-core → bmad-core}/tasks/brownfield-create-story.md +0 -0
@@ -0,0 +1,36 @@
1
+ # Brainstorming Techniques Data
2
+
3
+ ## Creative Expansion
4
+
5
+ 1. **What If Scenarios**: Ask one provocative question, get their response, then ask another
6
+ 2. **Analogical Thinking**: Give one example analogy, ask them to find 2-3 more
7
+ 3. **Reversal/Inversion**: Pose the reverse question, let them work through it
8
+ 4. **First Principles Thinking**: Ask "What are the fundamentals?" and guide them to break it down
9
+
10
+ ## Structured Frameworks
11
+
12
+ 5. **SCAMPER Method**: Go through one letter at a time, wait for their ideas before moving to next
13
+ 6. **Six Thinking Hats**: Present one hat, ask for their thoughts, then move to next hat
14
+ 7. **Mind Mapping**: Start with central concept, ask them to suggest branches
15
+
16
+ ## Collaborative Techniques
17
+
18
+ 8. **"Yes, And..." Building**: They give idea, you "yes and" it, they "yes and" back - alternate
19
+ 9. **Brainwriting/Round Robin**: They suggest idea, you build on it, ask them to build on yours
20
+ 10. **Random Stimulation**: Give one random prompt/word, ask them to make connections
21
+
22
+ ## Deep Exploration
23
+
24
+ 11. **Five Whys**: Ask "why" and wait for their answer before asking next "why"
25
+ 12. **Morphological Analysis**: Ask them to list parameters first, then explore combinations together
26
+ 13. **Provocation Technique (PO)**: Give one provocative statement, ask them to extract useful ideas
27
+
28
+ ## Advanced Techniques
29
+
30
+ 14. **Forced Relationships**: Connect two unrelated concepts and ask them to find the bridge
31
+ 15. **Assumption Reversal**: Challenge their core assumptions and ask them to build from there
32
+ 16. **Role Playing**: Ask them to brainstorm from different stakeholder perspectives
33
+ 17. **Time Shifting**: "How would you solve this in 1995? 2030?"
34
+ 18. **Resource Constraints**: "What if you had only $10 and 1 hour?"
35
+ 19. **Metaphor Mapping**: Use extended metaphors to explore solutions
36
+ 20. **Question Storming**: Generate questions instead of answers first
@@ -0,0 +1,154 @@
1
+ # Elicitation Methods Data
2
+
3
+ ## Core Reflective Methods
4
+
5
+ **Expand or Contract for Audience**
6
+
7
+ - Ask whether to 'expand' (add detail, elaborate) or 'contract' (simplify, clarify)
8
+ - Identify specific target audience if relevant
9
+ - Tailor content complexity and depth accordingly
10
+
11
+ **Explain Reasoning (CoT Step-by-Step)**
12
+
13
+ - Walk through the step-by-step thinking process
14
+ - Reveal underlying assumptions and decision points
15
+ - Show how conclusions were reached from current role's perspective
16
+
17
+ **Critique and Refine**
18
+
19
+ - Review output for flaws, inconsistencies, or improvement areas
20
+ - Identify specific weaknesses from role's expertise
21
+ - Suggest refined version reflecting domain knowledge
22
+
23
+ ## Structural Analysis Methods
24
+
25
+ **Analyze Logical Flow and Dependencies**
26
+
27
+ - Examine content structure for logical progression
28
+ - Check internal consistency and coherence
29
+ - Identify and validate dependencies between elements
30
+ - Confirm effective ordering and sequencing
31
+
32
+ **Assess Alignment with Overall Goals**
33
+
34
+ - Evaluate content contribution to stated objectives
35
+ - Identify any misalignments or gaps
36
+ - Interpret alignment from specific role's perspective
37
+ - Suggest adjustments to better serve goals
38
+
39
+ ## Risk and Challenge Methods
40
+
41
+ **Identify Potential Risks and Unforeseen Issues**
42
+
43
+ - Brainstorm potential risks from role's expertise
44
+ - Identify overlooked edge cases or scenarios
45
+ - Anticipate unintended consequences
46
+ - Highlight implementation challenges
47
+
48
+ **Challenge from Critical Perspective**
49
+
50
+ - Adopt critical stance on current content
51
+ - Play devil's advocate from specified viewpoint
52
+ - Argue against proposal highlighting weaknesses
53
+ - Apply YAGNI principles when appropriate (scope trimming)
54
+
55
+ ## Creative Exploration Methods
56
+
57
+ **Tree of Thoughts Deep Dive**
58
+
59
+ - Break problem into discrete "thoughts" or intermediate steps
60
+ - Explore multiple reasoning paths simultaneously
61
+ - Use self-evaluation to classify each path as "sure", "likely", or "impossible"
62
+ - Apply search algorithms (BFS/DFS) to find optimal solution paths
63
+
64
+ **Hindsight is 20/20: The 'If Only...' Reflection**
65
+
66
+ - Imagine retrospective scenario based on current content
67
+ - Identify the one "if only we had known/done X..." insight
68
+ - Describe imagined consequences humorously or dramatically
69
+ - Extract actionable learnings for current context
70
+
71
+ ## Multi-Persona Collaboration Methods
72
+
73
+ **Agile Team Perspective Shift**
74
+
75
+ - Rotate through different Scrum team member viewpoints
76
+ - Product Owner: Focus on user value and business impact
77
+ - Scrum Master: Examine process flow and team dynamics
78
+ - Developer: Assess technical implementation and complexity
79
+ - QA: Identify testing scenarios and quality concerns
80
+
81
+ **Stakeholder Round Table**
82
+
83
+ - Convene virtual meeting with multiple personas
84
+ - Each persona contributes unique perspective on content
85
+ - Identify conflicts and synergies between viewpoints
86
+ - Synthesize insights into actionable recommendations
87
+
88
+ **Meta-Prompting Analysis**
89
+
90
+ - Step back to analyze the structure and logic of current approach
91
+ - Question the format and methodology being used
92
+ - Suggest alternative frameworks or mental models
93
+ - Optimize the elicitation process itself
94
+
95
+ ## Advanced 2025 Techniques
96
+
97
+ **Self-Consistency Validation**
98
+
99
+ - Generate multiple reasoning paths for same problem
100
+ - Compare consistency across different approaches
101
+ - Identify most reliable and robust solution
102
+ - Highlight areas where approaches diverge and why
103
+
104
+ **ReWOO (Reasoning Without Observation)**
105
+
106
+ - Separate parametric reasoning from tool-based actions
107
+ - Create reasoning plan without external dependencies
108
+ - Identify what can be solved through pure reasoning
109
+ - Optimize for efficiency and reduced token usage
110
+
111
+ **Persona-Pattern Hybrid**
112
+
113
+ - Combine specific role expertise with elicitation pattern
114
+ - Architect + Risk Analysis: Deep technical risk assessment
115
+ - UX Expert + User Journey: End-to-end experience critique
116
+ - PM + Stakeholder Analysis: Multi-perspective impact review
117
+
118
+ **Emergent Collaboration Discovery**
119
+
120
+ - Allow multiple perspectives to naturally emerge
121
+ - Identify unexpected insights from persona interactions
122
+ - Explore novel combinations of viewpoints
123
+ - Capture serendipitous discoveries from multi-agent thinking
124
+
125
+ ## Game-Based Elicitation Methods
126
+
127
+ **Red Team vs Blue Team**
128
+
129
+ - Red Team: Attack the proposal, find vulnerabilities
130
+ - Blue Team: Defend and strengthen the approach
131
+ - Competitive analysis reveals blind spots
132
+ - Results in more robust, battle-tested solutions
133
+
134
+ **Innovation Tournament**
135
+
136
+ - Pit multiple alternative approaches against each other
137
+ - Score each approach across different criteria
138
+ - Crowd-source evaluation from different personas
139
+ - Identify winning combination of features
140
+
141
+ **Escape Room Challenge**
142
+
143
+ - Present content as constraints to work within
144
+ - Find creative solutions within tight limitations
145
+ - Identify minimum viable approach
146
+ - Discover innovative workarounds and optimizations
147
+
148
+ ## Process Control
149
+
150
+ **Proceed / No Further Actions**
151
+
152
+ - Acknowledge choice to finalize current work
153
+ - Accept output as-is or move to next step
154
+ - Prepare to continue without additional elicitation
@@ -0,0 +1,146 @@
1
+ # Test Levels Framework
2
+
3
+ Comprehensive guide for determining appropriate test levels (unit, integration, E2E) for different scenarios.
4
+
5
+ ## Test Level Decision Matrix
6
+
7
+ ### Unit Tests
8
+
9
+ **When to use:**
10
+
11
+ - Testing pure functions and business logic
12
+ - Algorithm correctness
13
+ - Input validation and data transformation
14
+ - Error handling in isolated components
15
+ - Complex calculations or state machines
16
+
17
+ **Characteristics:**
18
+
19
+ - Fast execution (immediate feedback)
20
+ - No external dependencies (DB, API, file system)
21
+ - Highly maintainable and stable
22
+ - Easy to debug failures
23
+
24
+ **Example scenarios:**
25
+
26
+ ```yaml
27
+ unit_test:
28
+ component: 'PriceCalculator'
29
+ scenario: 'Calculate discount with multiple rules'
30
+ justification: 'Complex business logic with multiple branches'
31
+ mock_requirements: 'None - pure function'
32
+ ```
33
+
34
+ ### Integration Tests
35
+
36
+ **When to use:**
37
+
38
+ - Component interaction verification
39
+ - Database operations and transactions
40
+ - API endpoint contracts
41
+ - Service-to-service communication
42
+ - Middleware and interceptor behavior
43
+
44
+ **Characteristics:**
45
+
46
+ - Moderate execution time
47
+ - Tests component boundaries
48
+ - May use test databases or containers
49
+ - Validates system integration points
50
+
51
+ **Example scenarios:**
52
+
53
+ ```yaml
54
+ integration_test:
55
+ components: ['UserService', 'AuthRepository']
56
+ scenario: 'Create user with role assignment'
57
+ justification: 'Critical data flow between service and persistence'
58
+ test_environment: 'In-memory database'
59
+ ```
60
+
61
+ ### End-to-End Tests
62
+
63
+ **When to use:**
64
+
65
+ - Critical user journeys
66
+ - Cross-system workflows
67
+ - Visual regression testing
68
+ - Compliance and regulatory requirements
69
+ - Final validation before release
70
+
71
+ **Characteristics:**
72
+
73
+ - Slower execution
74
+ - Tests complete workflows
75
+ - Requires full environment setup
76
+ - Most realistic but most brittle
77
+
78
+ **Example scenarios:**
79
+
80
+ ```yaml
81
+ e2e_test:
82
+ journey: 'Complete checkout process'
83
+ scenario: 'User purchases with saved payment method'
84
+ justification: 'Revenue-critical path requiring full validation'
85
+ environment: 'Staging with test payment gateway'
86
+ ```
87
+
88
+ ## Test Level Selection Rules
89
+
90
+ ### Favor Unit Tests When:
91
+
92
+ - Logic can be isolated
93
+ - No side effects involved
94
+ - Fast feedback needed
95
+ - High cyclomatic complexity
96
+
97
+ ### Favor Integration Tests When:
98
+
99
+ - Testing persistence layer
100
+ - Validating service contracts
101
+ - Testing middleware/interceptors
102
+ - Component boundaries critical
103
+
104
+ ### Favor E2E Tests When:
105
+
106
+ - User-facing critical paths
107
+ - Multi-system interactions
108
+ - Regulatory compliance scenarios
109
+ - Visual regression important
110
+
111
+ ## Anti-patterns to Avoid
112
+
113
+ - E2E testing for business logic validation
114
+ - Unit testing framework behavior
115
+ - Integration testing third-party libraries
116
+ - Duplicate coverage across levels
117
+
118
+ ## Duplicate Coverage Guard
119
+
120
+ **Before adding any test, check:**
121
+
122
+ 1. Is this already tested at a lower level?
123
+ 2. Can a unit test cover this instead of integration?
124
+ 3. Can an integration test cover this instead of E2E?
125
+
126
+ **Coverage overlap is only acceptable when:**
127
+
128
+ - Testing different aspects (unit: logic, integration: interaction, e2e: user experience)
129
+ - Critical paths requiring defense in depth
130
+ - Regression prevention for previously broken functionality
131
+
132
+ ## Test Naming Conventions
133
+
134
+ - Unit: `test_{component}_{scenario}`
135
+ - Integration: `test_{flow}_{interaction}`
136
+ - E2E: `test_{journey}_{outcome}`
137
+
138
+ ## Test ID Format
139
+
140
+ `{EPIC}.{STORY}-{LEVEL}-{SEQ}`
141
+
142
+ Examples:
143
+
144
+ - `1.3-UNIT-001`
145
+ - `1.3-INT-002`
146
+ - `1.3-E2E-001`
@@ -0,0 +1,172 @@
1
+ # Test Priorities Matrix
2
+
3
+ Guide for prioritizing test scenarios based on risk, criticality, and business impact.
4
+
5
+ ## Priority Levels
6
+
7
+ ### P0 - Critical (Must Test)
8
+
9
+ **Criteria:**
10
+
11
+ - Revenue-impacting functionality
12
+ - Security-critical paths
13
+ - Data integrity operations
14
+ - Regulatory compliance requirements
15
+ - Previously broken functionality (regression prevention)
16
+
17
+ **Examples:**
18
+
19
+ - Payment processing
20
+ - Authentication/authorization
21
+ - User data creation/deletion
22
+ - Financial calculations
23
+ - GDPR/privacy compliance
24
+
25
+ **Testing Requirements:**
26
+
27
+ - Comprehensive coverage at all levels
28
+ - Both happy and unhappy paths
29
+ - Edge cases and error scenarios
30
+ - Performance under load
31
+
32
+ ### P1 - High (Should Test)
33
+
34
+ **Criteria:**
35
+
36
+ - Core user journeys
37
+ - Frequently used features
38
+ - Features with complex logic
39
+ - Integration points between systems
40
+ - Features affecting user experience
41
+
42
+ **Examples:**
43
+
44
+ - User registration flow
45
+ - Search functionality
46
+ - Data import/export
47
+ - Notification systems
48
+ - Dashboard displays
49
+
50
+ **Testing Requirements:**
51
+
52
+ - Primary happy paths required
53
+ - Key error scenarios
54
+ - Critical edge cases
55
+ - Basic performance validation
56
+
57
+ ### P2 - Medium (Nice to Test)
58
+
59
+ **Criteria:**
60
+
61
+ - Secondary features
62
+ - Admin functionality
63
+ - Reporting features
64
+ - Configuration options
65
+ - UI polish and aesthetics
66
+
67
+ **Examples:**
68
+
69
+ - Admin settings panels
70
+ - Report generation
71
+ - Theme customization
72
+ - Help documentation
73
+ - Analytics tracking
74
+
75
+ **Testing Requirements:**
76
+
77
+ - Happy path coverage
78
+ - Basic error handling
79
+ - Can defer edge cases
80
+
81
+ ### P3 - Low (Test if Time Permits)
82
+
83
+ **Criteria:**
84
+
85
+ - Rarely used features
86
+ - Nice-to-have functionality
87
+ - Cosmetic issues
88
+ - Non-critical optimizations
89
+
90
+ **Examples:**
91
+
92
+ - Advanced preferences
93
+ - Legacy feature support
94
+ - Experimental features
95
+ - Debug utilities
96
+
97
+ **Testing Requirements:**
98
+
99
+ - Smoke tests only
100
+ - Can rely on manual testing
101
+ - Document known limitations
102
+
103
+ ## Risk-Based Priority Adjustments
104
+
105
+ ### Increase Priority When:
106
+
107
+ - High user impact (affects >50% of users)
108
+ - High financial impact (>$10K potential loss)
109
+ - Security vulnerability potential
110
+ - Compliance/legal requirements
111
+ - Customer-reported issues
112
+ - Complex implementation (>500 LOC)
113
+ - Multiple system dependencies
114
+
115
+ ### Decrease Priority When:
116
+
117
+ - Feature flag protected
118
+ - Gradual rollout planned
119
+ - Strong monitoring in place
120
+ - Easy rollback capability
121
+ - Low usage metrics
122
+ - Simple implementation
123
+ - Well-isolated component
124
+
125
+ ## Test Coverage by Priority
126
+
127
+ | Priority | Unit Coverage | Integration Coverage | E2E Coverage |
128
+ | -------- | ------------- | -------------------- | ------------------ |
129
+ | P0 | >90% | >80% | All critical paths |
130
+ | P1 | >80% | >60% | Main happy paths |
131
+ | P2 | >60% | >40% | Smoke tests |
132
+ | P3 | Best effort | Best effort | Manual only |
133
+
134
+ ## Priority Assignment Rules
135
+
136
+ 1. **Start with business impact** - What happens if this fails?
137
+ 2. **Consider probability** - How likely is failure?
138
+ 3. **Factor in detectability** - Would we know if it failed?
139
+ 4. **Account for recoverability** - Can we fix it quickly?
140
+
141
+ ## Priority Decision Tree
142
+
143
+ ```
144
+ Is it revenue-critical?
145
+ ├─ YES → P0
146
+ └─ NO → Does it affect core user journey?
147
+ ├─ YES → Is it high-risk?
148
+ │ ├─ YES → P0
149
+ │ └─ NO → P1
150
+ └─ NO → Is it frequently used?
151
+ ├─ YES → P1
152
+ └─ NO → Is it customer-facing?
153
+ ├─ YES → P2
154
+ └─ NO → P3
155
+ ```
156
+
157
+ ## Test Execution Order
158
+
159
+ 1. Execute P0 tests first (fail fast on critical issues)
160
+ 2. Execute P1 tests second (core functionality)
161
+ 3. Execute P2 tests if time permits
162
+ 4. P3 tests only in full regression cycles
163
+
164
+ ## Continuous Adjustment
165
+
166
+ Review and adjust priorities based on:
167
+
168
+ - Production incident patterns
169
+ - User feedback and complaints
170
+ - Usage analytics
171
+ - Test failure history
172
+ - Business priority changes
@@ -0,0 +1,117 @@
1
+ # Advanced Elicitation Task
2
+
3
+ ## Purpose
4
+
5
+ - Provide optional reflective and brainstorming actions to enhance content quality
6
+ - Enable deeper exploration of ideas through structured elicitation techniques
7
+ - Support iterative refinement through multiple analytical perspectives
8
+ - Usable during template-driven document creation or any chat conversation
9
+
10
+ ## Usage Scenarios
11
+
12
+ ### Scenario 1: Template Document Creation
13
+
14
+ After outputting a section during document creation:
15
+
16
+ 1. **Section Review**: Ask user to review the drafted section
17
+ 2. **Offer Elicitation**: Present 9 carefully selected elicitation methods
18
+ 3. **Simple Selection**: User types a number (0-8) to engage method, or 9 to proceed
19
+ 4. **Execute & Loop**: Apply selected method, then re-offer choices until user proceeds
20
+
21
+ ### Scenario 2: General Chat Elicitation
22
+
23
+ User can request advanced elicitation on any agent output:
24
+
25
+ - User says "do advanced elicitation" or similar
26
+ - Agent selects 9 relevant methods for the context
27
+ - Same simple 0-9 selection process
28
+
29
+ ## Task Instructions
30
+
31
+ ### 1. Intelligent Method Selection
32
+
33
+ **Context Analysis**: Before presenting options, analyze:
34
+
35
+ - **Content Type**: Technical specs, user stories, architecture, requirements, etc.
36
+ - **Complexity Level**: Simple, moderate, or complex content
37
+ - **Stakeholder Needs**: Who will use this information
38
+ - **Risk Level**: High-impact decisions vs routine items
39
+ - **Creative Potential**: Opportunities for innovation or alternatives
40
+
41
+ **Method Selection Strategy**:
42
+
43
+ 1. **Always Include Core Methods** (choose 3-4):
44
+ - Expand or Contract for Audience
45
+ - Critique and Refine
46
+ - Identify Potential Risks
47
+ - Assess Alignment with Goals
48
+
49
+ 2. **Context-Specific Methods** (choose 4-5):
50
+ - **Technical Content**: Tree of Thoughts, ReWOO, Meta-Prompting
51
+ - **User-Facing Content**: Agile Team Perspective, Stakeholder Roundtable
52
+ - **Creative Content**: Innovation Tournament, Escape Room Challenge
53
+ - **Strategic Content**: Red Team vs Blue Team, Hindsight Reflection
54
+
55
+ 3. **Always Include**: "Proceed / No Further Actions" as option 9
56
+
57
+ ### 2. Section Context and Review
58
+
59
+ When invoked after outputting a section:
60
+
61
+ 1. **Provide Context Summary**: Give a brief 1-2 sentence summary of what the user should look for in the section just presented
62
+
63
+ 2. **Explain Visual Elements**: If the section contains diagrams, explain them briefly before offering elicitation options
64
+
65
+ 3. **Clarify Scope Options**: If the section contains multiple distinct items, inform the user they can apply elicitation actions to:
66
+ - The entire section as a whole
67
+ - Individual items within the section (specify which item when selecting an action)
68
+
69
+ ### 3. Present Elicitation Options
70
+
71
+ **Review Request Process:**
72
+
73
+ - Ask the user to review the drafted section
74
+ - In the SAME message, inform them they can suggest direct changes OR select an elicitation method
75
+ - Present 9 intelligently selected methods (0-8) plus "Proceed" (9)
76
+ - Keep descriptions short - just the method name
77
+ - Await simple numeric selection
78
+
79
+ **Action List Presentation Format:**
80
+
81
+ ```text
82
+ **Advanced Elicitation Options**
83
+ Choose a number (0-8) or 9 to proceed:
84
+
85
+ 0. [Method Name]
86
+ 1. [Method Name]
87
+ 2. [Method Name]
88
+ 3. [Method Name]
89
+ 4. [Method Name]
90
+ 5. [Method Name]
91
+ 6. [Method Name]
92
+ 7. [Method Name]
93
+ 8. [Method Name]
94
+ 9. Proceed / No Further Actions
95
+ ```
96
+
97
+ **Response Handling:**
98
+
99
+ - **Numbers 0-8**: Execute the selected method, then re-offer the choice
100
+ - **Number 9**: Proceed to next section or continue conversation
101
+ - **Direct Feedback**: Apply user's suggested changes and continue
102
+
103
+ ### 4. Method Execution Framework
104
+
105
+ **Execution Process:**
106
+
107
+ 1. **Retrieve Method**: Access the specific elicitation method from the elicitation-methods data file
108
+ 2. **Apply Context**: Execute the method from your current role's perspective
109
+ 3. **Provide Results**: Deliver insights, critiques, or alternatives relevant to the content
110
+ 4. **Re-offer Choice**: Present the same 9 options again until user selects 9 or gives direct feedback
111
+
112
+ **Execution Guidelines:**
113
+
114
+ - **Be Concise**: Focus on actionable insights, not lengthy explanations
115
+ - **Stay Relevant**: Tie all elicitation back to the specific content being analyzed
116
+ - **Identify Personas**: For multi-persona methods, clearly identify which viewpoint is speaking
117
+ - **Maintain Flow**: Keep the process moving efficiently
@@ -2,9 +2,9 @@
2
2
 
3
3
  ## Purpose
4
4
 
5
- - Guide a structured response to a change trigger using the `change-checklist`.
5
+ - Guide a structured response to a change trigger using the `{root}/checklists/change-checklist`.
6
6
  - Analyze the impacts of the change on epics, project artifacts, and the MVP, guided by the checklist's structure.
7
- - Explore potential solutions (e.g., adjust scope, rollback elements, rescope features) as prompted by the checklist.
7
+ - Explore potential solutions (e.g., adjust scope, rollback elements, re-scope features) as prompted by the checklist.
8
8
  - Draft specific, actionable proposed updates to any affected project artifacts (e.g., epics, user stories, PRD sections, architecture document sections) based on the analysis.
9
9
  - Produce a consolidated "Sprint Change Proposal" document that contains the impact analysis and the clearly drafted proposed edits for user review and approval.
10
10
  - Ensure a clear handoff path if the nature of the changes necessitates fundamental replanning by other core agents (like PM or Architect).
@@ -16,19 +16,16 @@
16
16
  - **Acknowledge Task & Inputs:**
17
17
  - Confirm with the user that the "Correct Course Task" (Change Navigation & Integration) is being initiated.
18
18
  - Verify the change trigger and ensure you have the user's initial explanation of the issue and its perceived impact.
19
- - Confirm access to all relevant project artifacts (e.g., PRD, Epics/Stories, Architecture Documents, UI/UX Specifications) and, critically, the `change-checklist` (e.g., `change-checklist`).
19
+ - Confirm access to all relevant project artifacts (e.g., PRD, Epics/Stories, Architecture Documents, UI/UX Specifications) and, critically, the `{root}/checklists/change-checklist`.
20
20
  - **Establish Interaction Mode:**
21
21
  - Ask the user their preferred interaction mode for this task:
22
- - **"Incrementally (Default & Recommended):** Shall we work through the `change-checklist` section by section, discussing findings and collaboratively drafting proposed changes for each relevant part before moving to the next? This allows for detailed, step-by-step refinement."
22
+ - **"Incrementally (Default & Recommended):** Shall we work through the change-checklist section by section, discussing findings and collaboratively drafting proposed changes for each relevant part before moving to the next? This allows for detailed, step-by-step refinement."
23
23
  - **"YOLO Mode (Batch Processing):** Or, would you prefer I conduct a more batched analysis based on the checklist and then present a consolidated set of findings and proposed changes for a broader review? This can be quicker for initial assessment but might require more extensive review of the combined proposals."
24
- - Request the user to select their preferred mode.
25
- - Once the user chooses, confirm the selected mode (e.g., "Okay, we will proceed in Incremental mode."). This chosen mode will govern how subsequent steps in this task are executed.
26
- - **Explain Process:** Briefly inform the user: "We will now use the `change-checklist` to analyze the change and draft proposed updates. I will guide you through the checklist items based on our chosen interaction mode."
27
- <rule>When asking multiple questions or presenting multiple points for user input at once, number them clearly (e.g., 1., 2a., 2b.) to make it easier for the user to provide specific responses.</rule>
24
+ - Once the user chooses, confirm the selected mode and then inform the user: "We will now use the change-checklist to analyze the change and draft proposed updates. I will guide you through the checklist items based on our chosen interaction mode."
28
25
 
29
26
  ### 2. Execute Checklist Analysis (Iteratively or Batched, per Interaction Mode)
30
27
 
31
- - Systematically work through Sections 1-4 of the `change-checklist` (typically covering Change Context, Epic/Story Impact Analysis, Artifact Conflict Resolution, and Path Evaluation/Recommendation).
28
+ - Systematically work through Sections 1-4 of the change-checklist (typically covering Change Context, Epic/Story Impact Analysis, Artifact Conflict Resolution, and Path Evaluation/Recommendation).
32
29
  - For each checklist item or logical group of items (depending on interaction mode):
33
30
  - Present the relevant prompt(s) or considerations from the checklist to the user.
34
31
  - Request necessary information and actively analyze the relevant project artifacts (PRD, epics, architecture documents, story history, etc.) to assess the impact.
@@ -51,7 +48,7 @@
51
48
 
52
49
  ### 4. Generate "Sprint Change Proposal" with Edits
53
50
 
54
- - Synthesize the complete `change-checklist` analysis (covering findings from Sections 1-4) and all the agreed-upon proposed edits (from Instruction 3) into a single document titled "Sprint Change Proposal." This proposal should align with the structure suggested by Section 5 of the `change-checklist` (Proposal Components).
51
+ - Synthesize the complete change-checklist analysis (covering findings from Sections 1-4) and all the agreed-upon proposed edits (from Instruction 3) into a single document titled "Sprint Change Proposal." This proposal should align with the structure suggested by Section 5 of the change-checklist.
55
52
  - The proposal must clearly present:
56
53
  - **Analysis Summary:** A concise overview of the original issue, its analyzed impact (on epics, artifacts, MVP scope), and the rationale for the chosen path forward.
57
54
  - **Specific Proposed Edits:** For each affected artifact, clearly show or describe the exact changes (e.g., "Change Story X.Y from: [old text] To: [new text]", "Add new Acceptance Criterion to Story A.B: [new AC]", "Update Section 3.2 of Architecture Document as follows: [new/modified text or diagram description]").
@@ -68,6 +65,6 @@
68
65
  ## Output Deliverables
69
66
 
70
67
  - **Primary:** A "Sprint Change Proposal" document (in markdown format). This document will contain:
71
- - A summary of the `change-checklist` analysis (issue, impact, rationale for the chosen path).
68
+ - A summary of the change-checklist analysis (issue, impact, rationale for the chosen path).
72
69
  - Specific, clearly drafted proposed edits for all affected project artifacts.
73
- - **Implicit:** An annotated `change-checklist` (or the record of its completion) reflecting the discussions, findings, and decisions made during the process.
70
+ - **Implicit:** An annotated change-checklist (or the record of its completion) reflecting the discussions, findings, and decisions made during the process.