bmad-method 6.0.0-alpha.9 → 6.0.2

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 (933) hide show
  1. package/.augment/code_review_guidelines.yaml +271 -0
  2. package/.claude/skills/bmad-os-audit-file-refs/SKILL.md +6 -0
  3. package/.claude/skills/bmad-os-audit-file-refs/prompts/instructions.md +59 -0
  4. package/.claude/skills/bmad-os-changelog-social/SKILL.md +177 -0
  5. package/.claude/skills/bmad-os-changelog-social/examples/discord-example.md +53 -0
  6. package/.claude/skills/bmad-os-changelog-social/examples/linkedin-example.md +49 -0
  7. package/.claude/skills/bmad-os-changelog-social/examples/twitter-example.md +55 -0
  8. package/.claude/skills/bmad-os-diataxis-style-fix/SKILL.md +6 -0
  9. package/.claude/skills/bmad-os-diataxis-style-fix/prompts/instructions.md +229 -0
  10. package/.claude/skills/bmad-os-draft-changelog/SKILL.md +6 -0
  11. package/.claude/skills/bmad-os-draft-changelog/prompts/instructions.md +82 -0
  12. package/.claude/skills/bmad-os-gh-triage/SKILL.md +6 -0
  13. package/.claude/skills/bmad-os-gh-triage/prompts/agent-prompt.md +60 -0
  14. package/.claude/skills/bmad-os-gh-triage/prompts/instructions.md +74 -0
  15. package/.claude/skills/bmad-os-release-module/SKILL.md +6 -0
  16. package/.claude/skills/bmad-os-release-module/prompts/instructions.md +53 -0
  17. package/.claude/skills/bmad-os-review-pr/SKILL.md +6 -0
  18. package/.claude/skills/bmad-os-review-pr/prompts/instructions.md +231 -0
  19. package/.coderabbit.yaml +85 -0
  20. package/.github/CODE_OF_CONDUCT.md +128 -0
  21. package/.github/ISSUE_TEMPLATE/bug-report.yaml +124 -0
  22. package/.github/ISSUE_TEMPLATE/config.yaml +5 -2
  23. package/.github/ISSUE_TEMPLATE/documentation.yaml +55 -0
  24. package/.github/ISSUE_TEMPLATE/feature-request.md +22 -0
  25. package/.github/ISSUE_TEMPLATE/issue.md +32 -0
  26. package/.github/PULL_REQUEST_TEMPLATE.md +13 -0
  27. package/.github/scripts/discord-helpers.sh +34 -0
  28. package/.github/workflows/coderabbit-review.yaml +22 -0
  29. package/.github/workflows/discord.yaml +82 -8
  30. package/.github/workflows/docs.yaml +64 -0
  31. package/.github/workflows/quality.yaml +40 -2
  32. package/.husky/pre-commit +13 -0
  33. package/.markdownlint-cli2.yaml +41 -0
  34. package/.prettierignore +10 -0
  35. package/.vscode/settings.json +4 -3
  36. package/CHANGELOG.md +1110 -673
  37. package/CNAME +1 -0
  38. package/CONTRIBUTING.md +97 -189
  39. package/CONTRIBUTORS.md +32 -0
  40. package/LICENSE +7 -3
  41. package/README.md +55 -388
  42. package/SECURITY.md +85 -0
  43. package/TRADEMARK.md +55 -0
  44. package/Wordmark.png +0 -0
  45. package/banner-bmad-method.png +0 -0
  46. package/docs/404.md +9 -0
  47. package/docs/_STYLE_GUIDE.md +370 -0
  48. package/docs/explanation/advanced-elicitation.md +49 -0
  49. package/docs/explanation/adversarial-review.md +59 -0
  50. package/docs/explanation/brainstorming.md +33 -0
  51. package/docs/explanation/established-projects-faq.md +50 -0
  52. package/docs/explanation/party-mode.md +59 -0
  53. package/docs/explanation/preventing-agent-conflicts.md +112 -0
  54. package/docs/explanation/project-context.md +157 -0
  55. package/docs/explanation/quick-flow.md +73 -0
  56. package/docs/explanation/why-solutioning-matters.md +77 -0
  57. package/docs/how-to/customize-bmad.md +172 -0
  58. package/docs/how-to/established-projects.md +117 -0
  59. package/docs/how-to/get-answers-about-bmad.md +134 -0
  60. package/docs/how-to/install-bmad.md +97 -0
  61. package/docs/how-to/non-interactive-installation.md +171 -0
  62. package/docs/how-to/project-context.md +136 -0
  63. package/docs/how-to/quick-fixes.md +123 -0
  64. package/docs/how-to/shard-large-documents.md +78 -0
  65. package/docs/how-to/upgrade-to-v6.md +97 -0
  66. package/docs/index.md +37 -204
  67. package/docs/reference/agents.md +28 -0
  68. package/docs/reference/commands.md +151 -0
  69. package/docs/reference/modules.md +76 -0
  70. package/docs/reference/testing.md +106 -0
  71. package/docs/reference/workflow-map.md +89 -0
  72. package/docs/roadmap.mdx +136 -0
  73. package/docs/tutorials/getting-started.md +273 -0
  74. package/eslint.config.mjs +26 -16
  75. package/package.json +35 -28
  76. package/src/bmm/agents/analyst.agent.yaml +43 -0
  77. package/src/bmm/agents/architect.agent.yaml +29 -0
  78. package/src/bmm/agents/dev.agent.yaml +38 -0
  79. package/src/bmm/agents/pm.agent.yaml +44 -0
  80. package/src/bmm/agents/qa.agent.yaml +58 -0
  81. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
  82. package/src/bmm/agents/sm.agent.yaml +37 -0
  83. package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
  84. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +46 -0
  85. package/src/bmm/agents/ux-designer.agent.yaml +27 -0
  86. package/src/bmm/data/project-context-template.md +26 -0
  87. package/src/bmm/module-help.csv +31 -0
  88. package/src/bmm/module.yaml +50 -0
  89. package/src/bmm/teams/default-party.csv +20 -0
  90. package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
  91. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
  92. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
  93. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
  94. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
  95. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
  96. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
  97. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +162 -0
  98. package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +57 -0
  99. package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
  100. package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
  101. package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
  102. package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
  103. package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
  104. package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +444 -0
  105. package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
  106. package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
  107. package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
  108. package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
  109. package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
  110. package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +476 -0
  111. package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
  112. package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
  113. package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
  114. package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
  115. package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
  116. package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +233 -0
  117. package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +487 -0
  118. package/src/bmm/workflows/1-analysis/research/workflow-domain-research.md +54 -0
  119. package/src/bmm/workflows/1-analysis/research/workflow-market-research.md +54 -0
  120. package/src/bmm/workflows/1-analysis/research/workflow-technical-research.md +54 -0
  121. package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +15 -0
  122. package/src/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +197 -0
  123. package/src/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv +11 -0
  124. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01-init.md +191 -0
  125. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01b-continue.md +152 -0
  126. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +224 -0
  127. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +154 -0
  128. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +170 -0
  129. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +226 -0
  130. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +213 -0
  131. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +207 -0
  132. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +226 -0
  133. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +237 -0
  134. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +228 -0
  135. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +231 -0
  136. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +242 -0
  137. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +217 -0
  138. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +124 -0
  139. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +247 -0
  140. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
  141. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +249 -0
  142. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-03-edit.md +253 -0
  143. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-04-complete.md +168 -0
  144. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +226 -0
  145. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02-format-detection.md +191 -0
  146. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02b-parity-check.md +209 -0
  147. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-03-density-validation.md +174 -0
  148. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
  149. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-05-measurability-validation.md +228 -0
  150. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-06-traceability-validation.md +217 -0
  151. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
  152. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
  153. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-09-project-type-validation.md +263 -0
  154. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +209 -0
  155. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
  156. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-12-completeness-validation.md +242 -0
  157. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +231 -0
  158. package/src/bmm/workflows/2-plan-workflows/create-prd/templates/prd-template.md +10 -0
  159. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md +63 -0
  160. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md +65 -0
  161. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +63 -0
  162. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
  163. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
  164. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
  165. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
  166. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
  167. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
  168. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
  169. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
  170. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
  171. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
  172. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
  173. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
  174. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
  175. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
  176. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +171 -0
  177. package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
  178. package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +42 -0
  179. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +184 -0
  180. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +172 -0
  181. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +173 -0
  182. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +133 -0
  183. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +245 -0
  184. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +129 -0
  185. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
  186. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +54 -0
  187. package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
  188. package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +13 -0
  189. package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
  190. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
  191. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +173 -0
  192. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
  193. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +329 -0
  194. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
  195. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
  196. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
  197. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
  198. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +76 -0
  199. package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +49 -0
  200. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
  201. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
  202. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
  203. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +149 -0
  204. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
  205. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
  206. package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
  207. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
  208. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +43 -0
  209. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
  210. package/src/bmm/workflows/4-implementation/correct-course/instructions.md +207 -0
  211. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +53 -0
  212. package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
  213. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +346 -0
  214. package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
  215. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +52 -0
  216. package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
  217. package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
  218. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +20 -0
  219. package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -0
  220. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +52 -0
  221. package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +226 -0
  222. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
  223. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +47 -0
  224. package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +230 -0
  225. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +25 -0
  226. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +174 -0
  227. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +118 -0
  228. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +111 -0
  229. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +111 -0
  230. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +104 -0
  231. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +146 -0
  232. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +50 -0
  233. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +189 -0
  234. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +143 -0
  235. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +126 -0
  236. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +200 -0
  237. package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
  238. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
  239. package/src/bmm/workflows/document-project/checklist.md +245 -0
  240. package/src/bmm/workflows/document-project/instructions.md +130 -0
  241. package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
  242. package/src/bmm/workflows/document-project/workflow.yaml +22 -0
  243. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
  244. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
  245. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
  246. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
  247. package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
  248. package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
  249. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
  250. package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
  251. package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
  252. package/src/bmm/workflows/qa-generate-e2e-tests/checklist.md +33 -0
  253. package/src/bmm/workflows/qa-generate-e2e-tests/instructions.md +110 -0
  254. package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +42 -0
  255. package/src/core/agents/bmad-master.agent.yaml +12 -21
  256. package/src/core/module-help.csv +9 -0
  257. package/src/core/module.yaml +25 -0
  258. package/src/core/tasks/editorial-review-prose.xml +102 -0
  259. package/src/core/tasks/editorial-review-structure.xml +208 -0
  260. package/src/core/tasks/help.md +86 -0
  261. package/src/core/tasks/index-docs.xml +2 -2
  262. package/src/core/tasks/review-adversarial-general.xml +49 -0
  263. package/src/core/tasks/shard-doc.xml +108 -0
  264. package/src/core/tasks/workflow.xml +39 -74
  265. package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
  266. package/src/core/workflows/advanced-elicitation/workflow.xml +118 -0
  267. package/src/core/workflows/brainstorming/brain-methods.csv +62 -36
  268. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
  269. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
  270. package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
  271. package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
  272. package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
  273. package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
  274. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
  275. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
  276. package/src/core/workflows/brainstorming/template.md +13 -104
  277. package/src/core/workflows/brainstorming/workflow.md +58 -0
  278. package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
  279. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
  280. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +168 -0
  281. package/src/core/workflows/party-mode/workflow.md +194 -0
  282. package/src/utility/agent-components/activation-rules.txt +6 -0
  283. package/src/utility/agent-components/activation-steps.txt +14 -0
  284. package/src/utility/agent-components/agent-command-header.md +1 -0
  285. package/src/utility/agent-components/agent.customize.template.yaml +41 -0
  286. package/src/utility/agent-components/handler-action.txt +4 -0
  287. package/src/utility/agent-components/handler-exec.txt +6 -0
  288. package/src/utility/agent-components/handler-multi.txt +14 -0
  289. package/src/utility/agent-components/handler-tmpl.txt +5 -0
  290. package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
  291. package/src/utility/agent-components/handler-workflow.txt +10 -0
  292. package/src/utility/agent-components/menu-handlers.txt +6 -0
  293. package/test/README.md +4 -4
  294. package/test/adversarial-review-tests/README.md +56 -0
  295. package/test/adversarial-review-tests/sample-content.md +46 -0
  296. package/test/adversarial-review-tests/test-cases.yaml +103 -0
  297. package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +1 -0
  298. package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +1 -0
  299. package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +1 -0
  300. package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +1 -0
  301. package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +1 -0
  302. package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +1 -0
  303. package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +1 -0
  304. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
  305. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
  306. package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +1 -0
  307. package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +1 -0
  308. package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +1 -0
  309. package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +1 -0
  310. package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +1 -0
  311. package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +1 -1
  312. package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +1 -0
  313. package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +1 -0
  314. package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +1 -0
  315. package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +1 -0
  316. package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +1 -0
  317. package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +1 -0
  318. package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +1 -0
  319. package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +1 -0
  320. package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +1 -0
  321. package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +1 -0
  322. package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +1 -0
  323. package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +1 -0
  324. package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +1 -0
  325. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +1 -0
  326. package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +1 -0
  327. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +2 -3
  328. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +1 -0
  329. package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
  330. package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +2 -1
  331. package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
  332. package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +1 -0
  333. package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +2 -1
  334. package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +2 -1
  335. package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
  336. package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
  337. package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +1 -0
  338. package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +1 -0
  339. package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +1 -0
  340. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +1 -0
  341. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +1 -0
  342. package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +1 -0
  343. package/test/fixtures/file-refs-csv/invalid/all-empty-workflow.csv +3 -0
  344. package/test/fixtures/file-refs-csv/invalid/empty-data.csv +1 -0
  345. package/test/fixtures/file-refs-csv/invalid/no-workflow-column.csv +3 -0
  346. package/test/fixtures/file-refs-csv/invalid/unresolvable-vars.csv +3 -0
  347. package/test/fixtures/file-refs-csv/valid/bmm-style.csv +3 -0
  348. package/test/fixtures/file-refs-csv/valid/core-style.csv +3 -0
  349. package/test/fixtures/file-refs-csv/valid/minimal.csv +2 -0
  350. package/test/test-agent-schema.js +4 -4
  351. package/test/test-file-refs-csv.js +133 -0
  352. package/test/test-installation-components.js +10 -12
  353. package/test/test-rehype-plugins.mjs +1050 -0
  354. package/test/unit-test-schema.js +2 -2
  355. package/tools/build-docs.mjs +463 -0
  356. package/tools/cli/README.md +41 -589
  357. package/tools/cli/bmad-cli.js +67 -1
  358. package/tools/cli/commands/install.js +42 -34
  359. package/tools/cli/commands/status.js +44 -26
  360. package/tools/cli/commands/uninstall.js +146 -23
  361. package/tools/cli/external-official-modules.yaml +53 -0
  362. package/tools/cli/installers/install-messages.yaml +39 -0
  363. package/tools/cli/installers/lib/core/config-collector.js +589 -95
  364. package/tools/cli/installers/lib/core/custom-module-cache.js +260 -0
  365. package/tools/cli/installers/lib/core/dependency-resolver.js +57 -39
  366. package/tools/cli/installers/lib/core/detector.js +19 -125
  367. package/tools/cli/installers/lib/core/ide-config-manager.js +12 -9
  368. package/tools/cli/installers/lib/core/installer.js +2075 -1161
  369. package/tools/cli/installers/lib/core/manifest-generator.js +494 -103
  370. package/tools/cli/installers/lib/core/manifest.js +544 -46
  371. package/tools/cli/installers/lib/custom/handler.js +358 -0
  372. package/tools/cli/installers/lib/ide/_base-ide.js +83 -44
  373. package/tools/cli/installers/lib/ide/_config-driven.js +559 -0
  374. package/tools/cli/installers/lib/ide/codex.js +301 -64
  375. package/tools/cli/installers/lib/ide/github-copilot.js +606 -209
  376. package/tools/cli/installers/lib/ide/kilo.js +169 -75
  377. package/tools/cli/installers/lib/ide/manager.js +179 -48
  378. package/tools/cli/installers/lib/ide/platform-codes.js +100 -0
  379. package/tools/cli/installers/lib/ide/platform-codes.yaml +234 -0
  380. package/tools/cli/installers/lib/ide/rovodev.js +257 -0
  381. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +95 -5
  382. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +51 -20
  383. package/tools/cli/installers/lib/ide/shared/module-injections.js +6 -3
  384. package/tools/cli/installers/lib/ide/shared/path-utils.js +299 -0
  385. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +261 -14
  386. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +108 -27
  387. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -1
  388. package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +8 -0
  389. package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +15 -0
  390. package/tools/cli/installers/lib/ide/templates/combined/default-task.md +10 -0
  391. package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +10 -0
  392. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +14 -0
  393. package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +6 -0
  394. package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +14 -0
  395. package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +11 -0
  396. package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +11 -0
  397. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +16 -0
  398. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +14 -0
  399. package/tools/cli/installers/lib/ide/templates/combined/kiro-agent.md +16 -0
  400. package/tools/cli/installers/lib/ide/templates/combined/kiro-task.md +9 -0
  401. package/tools/cli/installers/lib/ide/templates/combined/kiro-tool.md +9 -0
  402. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +15 -0
  403. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow.md +7 -0
  404. package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +15 -0
  405. package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +14 -0
  406. package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +14 -0
  407. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +17 -0
  408. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +17 -0
  409. package/tools/cli/installers/lib/ide/templates/combined/rovodev.md +9 -0
  410. package/tools/cli/installers/lib/ide/templates/combined/trae.md +9 -0
  411. package/tools/cli/installers/lib/ide/templates/combined/windsurf-workflow.md +10 -0
  412. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +1 -1
  413. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
  414. package/tools/cli/installers/lib/message-loader.js +83 -0
  415. package/tools/cli/installers/lib/modules/external-manager.js +136 -0
  416. package/tools/cli/installers/lib/modules/manager.js +931 -207
  417. package/tools/cli/lib/activation-builder.js +13 -16
  418. package/tools/cli/lib/agent/compiler.js +525 -0
  419. package/tools/cli/lib/agent/installer.js +680 -0
  420. package/tools/cli/lib/agent/template-engine.js +152 -0
  421. package/tools/cli/lib/agent-analyzer.js +48 -20
  422. package/tools/cli/lib/agent-party-generator.js +5 -17
  423. package/tools/cli/lib/cli-utils.js +76 -104
  424. package/tools/cli/lib/config.js +4 -3
  425. package/tools/cli/lib/platform-codes.js +2 -2
  426. package/tools/cli/lib/project-root.js +6 -0
  427. package/tools/cli/lib/prompts.js +809 -0
  428. package/tools/cli/lib/ui.js +1600 -272
  429. package/tools/cli/lib/xml-handler.js +4 -55
  430. package/tools/cli/lib/yaml-format.js +4 -6
  431. package/tools/cli/lib/yaml-xml-builder.js +183 -61
  432. package/tools/docs/_prompt-external-modules-page.md +59 -0
  433. package/tools/docs/fix-refs.md +91 -0
  434. package/tools/fix-doc-links.js +285 -0
  435. package/tools/lib/xml-utils.js +13 -0
  436. package/tools/migrate-custom-module-paths.js +124 -0
  437. package/tools/platform-codes.yaml +30 -6
  438. package/tools/schema/agent.js +306 -53
  439. package/tools/validate-agent-schema.js +3 -3
  440. package/tools/validate-doc-links.js +407 -0
  441. package/tools/validate-file-refs.js +554 -0
  442. package/tools/validate-svg-changes.sh +356 -0
  443. package/website/README.md +75 -0
  444. package/website/astro.config.mjs +136 -0
  445. package/website/public/favicon.ico +0 -0
  446. package/website/public/img/bmad-dark.png +0 -0
  447. package/website/public/img/bmad-light.png +0 -0
  448. package/website/public/workflow-map-diagram.html +361 -0
  449. package/website/src/components/Banner.astro +62 -0
  450. package/website/src/components/Header.astro +96 -0
  451. package/website/src/components/MobileMenuFooter.astro +33 -0
  452. package/website/src/content/config.ts +6 -0
  453. package/website/src/lib/site-url.mjs +25 -0
  454. package/website/src/pages/404.astro +11 -0
  455. package/website/src/pages/robots.txt.ts +48 -0
  456. package/website/src/rehype-base-paths.js +112 -0
  457. package/website/src/rehype-markdown-links.js +119 -0
  458. package/website/src/styles/custom.css +805 -0
  459. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
  460. package/.github/ISSUE_TEMPLATE/idea_submission.md +0 -109
  461. package/.github/workflows/bundle-latest.yaml +0 -277
  462. package/.github/workflows/manual-release.yaml +0 -212
  463. package/docs/BUNDLE_DISTRIBUTION_SETUP.md +0 -95
  464. package/docs/agent-customization-guide.md +0 -208
  465. package/docs/document-sharding-guide.md +0 -447
  466. package/docs/ide-info/auggie.md +0 -31
  467. package/docs/ide-info/claude-code.md +0 -25
  468. package/docs/ide-info/cline.md +0 -31
  469. package/docs/ide-info/codex.md +0 -21
  470. package/docs/ide-info/crush.md +0 -30
  471. package/docs/ide-info/cursor.md +0 -25
  472. package/docs/ide-info/gemini.md +0 -25
  473. package/docs/ide-info/github-copilot.md +0 -26
  474. package/docs/ide-info/iflow.md +0 -33
  475. package/docs/ide-info/kilo.md +0 -24
  476. package/docs/ide-info/opencode.md +0 -24
  477. package/docs/ide-info/qwen.md +0 -25
  478. package/docs/ide-info/roo.md +0 -27
  479. package/docs/ide-info/trae.md +0 -25
  480. package/docs/ide-info/windsurf.md +0 -22
  481. package/docs/installers-bundlers/ide-injections.md +0 -186
  482. package/docs/installers-bundlers/installers-modules-platforms-reference.md +0 -388
  483. package/docs/installers-bundlers/web-bundler-usage.md +0 -54
  484. package/docs/v4-to-v6-upgrade.md +0 -227
  485. package/docs/web-bundles-gemini-gpt-guide.md +0 -473
  486. package/src/core/_module-installer/install-config.yaml +0 -35
  487. package/src/core/_module-installer/installer.js +0 -60
  488. package/src/core/agents/bmad-web-orchestrator.agent.xml +0 -113
  489. package/src/core/tasks/adv-elicit-methods.csv +0 -39
  490. package/src/core/tasks/advanced-elicitation.xml +0 -106
  491. package/src/core/tasks/validate-workflow.xml +0 -89
  492. package/src/core/tools/shard-doc.xml +0 -109
  493. package/src/core/workflows/brainstorming/README.md +0 -261
  494. package/src/core/workflows/brainstorming/instructions.md +0 -315
  495. package/src/core/workflows/brainstorming/workflow.yaml +0 -43
  496. package/src/core/workflows/party-mode/instructions.md +0 -183
  497. package/src/core/workflows/party-mode/workflow.yaml +0 -27
  498. package/src/modules/bmb/README.md +0 -194
  499. package/src/modules/bmb/_module-installer/install-config.yaml +0 -31
  500. package/src/modules/bmb/agents/bmad-builder.agent.yaml +0 -59
  501. package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -142
  502. package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
  503. package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
  504. package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
  505. package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
  506. package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
  507. package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
  508. package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -34
  509. package/src/modules/bmb/workflows/create-agent/README.md +0 -203
  510. package/src/modules/bmb/workflows/create-agent/agent-architecture.md +0 -415
  511. package/src/modules/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
  512. package/src/modules/bmb/workflows/create-agent/agent-types.md +0 -292
  513. package/src/modules/bmb/workflows/create-agent/brainstorm-context.md +0 -174
  514. package/src/modules/bmb/workflows/create-agent/checklist.md +0 -62
  515. package/src/modules/bmb/workflows/create-agent/communication-styles.md +0 -202
  516. package/src/modules/bmb/workflows/create-agent/instructions.md +0 -456
  517. package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -49
  518. package/src/modules/bmb/workflows/create-module/README.md +0 -229
  519. package/src/modules/bmb/workflows/create-module/brainstorm-context.md +0 -137
  520. package/src/modules/bmb/workflows/create-module/checklist.md +0 -235
  521. package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
  522. package/src/modules/bmb/workflows/create-module/installer-templates/installer.js +0 -231
  523. package/src/modules/bmb/workflows/create-module/instructions.md +0 -576
  524. package/src/modules/bmb/workflows/create-module/module-structure.md +0 -400
  525. package/src/modules/bmb/workflows/create-module/workflow.yaml +0 -44
  526. package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
  527. package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
  528. package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
  529. package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -724
  530. package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1306
  531. package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
  532. package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
  533. package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
  534. package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -65
  535. package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -42
  536. package/src/modules/bmb/workflows/edit-agent/README.md +0 -112
  537. package/src/modules/bmb/workflows/edit-agent/checklist.md +0 -112
  538. package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -290
  539. package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -35
  540. package/src/modules/bmb/workflows/edit-module/README.md +0 -187
  541. package/src/modules/bmb/workflows/edit-module/checklist.md +0 -165
  542. package/src/modules/bmb/workflows/edit-module/instructions.md +0 -339
  543. package/src/modules/bmb/workflows/edit-module/workflow.yaml +0 -36
  544. package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
  545. package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
  546. package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
  547. package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -29
  548. package/src/modules/bmb/workflows/module-brief/README.md +0 -264
  549. package/src/modules/bmb/workflows/module-brief/checklist.md +0 -116
  550. package/src/modules/bmb/workflows/module-brief/instructions.md +0 -267
  551. package/src/modules/bmb/workflows/module-brief/template.md +0 -275
  552. package/src/modules/bmb/workflows/module-brief/workflow.yaml +0 -31
  553. package/src/modules/bmb/workflows/redoc/README.md +0 -87
  554. package/src/modules/bmb/workflows/redoc/checklist.md +0 -99
  555. package/src/modules/bmb/workflows/redoc/instructions.md +0 -265
  556. package/src/modules/bmb/workflows/redoc/workflow.yaml +0 -34
  557. package/src/modules/bmgd/README.md +0 -208
  558. package/src/modules/bmgd/_module-installer/install-config.yaml +0 -54
  559. package/src/modules/bmgd/agents/game-architect.agent.yaml +0 -33
  560. package/src/modules/bmgd/agents/game-designer.agent.yaml +0 -40
  561. package/src/modules/bmgd/agents/game-dev.agent.yaml +0 -40
  562. package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +0 -75
  563. package/src/modules/bmgd/teams/default-party.csv +0 -10
  564. package/src/modules/bmgd/teams/team-gamedev.yaml +0 -18
  565. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +0 -26
  566. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-context.md +0 -115
  567. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +0 -128
  568. package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +0 -41
  569. package/src/modules/bmgd/workflows/1-preproduction/game-brief/checklist.md +0 -128
  570. package/src/modules/bmgd/workflows/1-preproduction/game-brief/instructions.md +0 -371
  571. package/src/modules/bmgd/workflows/1-preproduction/game-brief/template.md +0 -205
  572. package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +0 -44
  573. package/src/modules/bmgd/workflows/2-design/gdd/checklist.md +0 -148
  574. package/src/modules/bmgd/workflows/2-design/gdd/game-types/action-platformer.md +0 -45
  575. package/src/modules/bmgd/workflows/2-design/gdd/game-types/adventure.md +0 -84
  576. package/src/modules/bmgd/workflows/2-design/gdd/game-types/card-game.md +0 -76
  577. package/src/modules/bmgd/workflows/2-design/gdd/game-types/fighting.md +0 -89
  578. package/src/modules/bmgd/workflows/2-design/gdd/game-types/horror.md +0 -86
  579. package/src/modules/bmgd/workflows/2-design/gdd/game-types/idle-incremental.md +0 -78
  580. package/src/modules/bmgd/workflows/2-design/gdd/game-types/metroidvania.md +0 -87
  581. package/src/modules/bmgd/workflows/2-design/gdd/game-types/moba.md +0 -74
  582. package/src/modules/bmgd/workflows/2-design/gdd/game-types/party-game.md +0 -79
  583. package/src/modules/bmgd/workflows/2-design/gdd/game-types/puzzle.md +0 -58
  584. package/src/modules/bmgd/workflows/2-design/gdd/game-types/racing.md +0 -88
  585. package/src/modules/bmgd/workflows/2-design/gdd/game-types/rhythm.md +0 -79
  586. package/src/modules/bmgd/workflows/2-design/gdd/game-types/roguelike.md +0 -69
  587. package/src/modules/bmgd/workflows/2-design/gdd/game-types/rpg.md +0 -70
  588. package/src/modules/bmgd/workflows/2-design/gdd/game-types/sandbox.md +0 -79
  589. package/src/modules/bmgd/workflows/2-design/gdd/game-types/shooter.md +0 -62
  590. package/src/modules/bmgd/workflows/2-design/gdd/game-types/simulation.md +0 -73
  591. package/src/modules/bmgd/workflows/2-design/gdd/game-types/sports.md +0 -75
  592. package/src/modules/bmgd/workflows/2-design/gdd/game-types/strategy.md +0 -71
  593. package/src/modules/bmgd/workflows/2-design/gdd/game-types/survival.md +0 -79
  594. package/src/modules/bmgd/workflows/2-design/gdd/game-types/text-based.md +0 -91
  595. package/src/modules/bmgd/workflows/2-design/gdd/game-types/tower-defense.md +0 -79
  596. package/src/modules/bmgd/workflows/2-design/gdd/game-types/turn-based-tactics.md +0 -88
  597. package/src/modules/bmgd/workflows/2-design/gdd/game-types/visual-novel.md +0 -89
  598. package/src/modules/bmgd/workflows/2-design/gdd/game-types.csv +0 -25
  599. package/src/modules/bmgd/workflows/2-design/gdd/gdd-template.md +0 -153
  600. package/src/modules/bmgd/workflows/2-design/gdd/instructions-gdd.md +0 -501
  601. package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +0 -81
  602. package/src/modules/bmgd/workflows/2-design/narrative/checklist.md +0 -139
  603. package/src/modules/bmgd/workflows/2-design/narrative/instructions-narrative.md +0 -603
  604. package/src/modules/bmgd/workflows/2-design/narrative/narrative-template.md +0 -195
  605. package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +0 -38
  606. package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +0 -321
  607. package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-template.md +0 -103
  608. package/src/modules/bmgd/workflows/3-technical/game-architecture/checklist.md +0 -240
  609. package/src/modules/bmgd/workflows/3-technical/game-architecture/decision-catalog.yaml +0 -222
  610. package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +0 -699
  611. package/src/modules/bmgd/workflows/3-technical/game-architecture/pattern-categories.csv +0 -13
  612. package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +0 -67
  613. package/src/modules/bmgd/workflows/4-production/code-review/backlog_template.md +0 -12
  614. package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +0 -22
  615. package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +0 -398
  616. package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +0 -57
  617. package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +0 -279
  618. package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +0 -206
  619. package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +0 -52
  620. package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +0 -240
  621. package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +0 -256
  622. package/src/modules/bmgd/workflows/4-production/create-story/template.md +0 -51
  623. package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +0 -68
  624. package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +0 -38
  625. package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +0 -267
  626. package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +0 -53
  627. package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +0 -17
  628. package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +0 -164
  629. package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +0 -76
  630. package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +0 -52
  631. package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +0 -1442
  632. package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +0 -52
  633. package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +0 -234
  634. package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +0 -55
  635. package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +0 -50
  636. package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +0 -16
  637. package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +0 -34
  638. package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +0 -209
  639. package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +0 -57
  640. package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +0 -111
  641. package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +0 -28
  642. package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +0 -117
  643. package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +0 -25
  644. package/src/modules/bmm/README.md +0 -128
  645. package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
  646. package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
  647. package/src/modules/bmm/_module-installer/install-config.yaml +0 -60
  648. package/src/modules/bmm/_module-installer/installer.js +0 -131
  649. package/src/modules/bmm/_module-installer/platform-specifics/claude-code.js +0 -35
  650. package/src/modules/bmm/_module-installer/platform-specifics/windsurf.js +0 -32
  651. package/src/modules/bmm/agents/analyst.agent.yaml +0 -48
  652. package/src/modules/bmm/agents/architect.agent.yaml +0 -42
  653. package/src/modules/bmm/agents/dev.agent.yaml +0 -40
  654. package/src/modules/bmm/agents/pm.agent.yaml +0 -61
  655. package/src/modules/bmm/agents/sm.agent.yaml +0 -72
  656. package/src/modules/bmm/agents/tea.agent.yaml +0 -65
  657. package/src/modules/bmm/agents/tech-writer.agent.yaml +0 -73
  658. package/src/modules/bmm/agents/ux-designer.agent.yaml +0 -38
  659. package/src/modules/bmm/docs/README.md +0 -235
  660. package/src/modules/bmm/docs/agents-guide.md +0 -1056
  661. package/src/modules/bmm/docs/brownfield-guide.md +0 -754
  662. package/src/modules/bmm/docs/enterprise-agentic-development.md +0 -680
  663. package/src/modules/bmm/docs/faq.md +0 -587
  664. package/src/modules/bmm/docs/glossary.md +0 -320
  665. package/src/modules/bmm/docs/party-mode.md +0 -224
  666. package/src/modules/bmm/docs/quick-spec-flow.md +0 -652
  667. package/src/modules/bmm/docs/quick-start.md +0 -366
  668. package/src/modules/bmm/docs/scale-adaptive-system.md +0 -599
  669. package/src/modules/bmm/docs/test-architecture.md +0 -394
  670. package/src/modules/bmm/docs/workflow-architecture-reference.md +0 -371
  671. package/src/modules/bmm/docs/workflow-document-project-reference.md +0 -487
  672. package/src/modules/bmm/docs/workflows-analysis.md +0 -370
  673. package/src/modules/bmm/docs/workflows-implementation.md +0 -284
  674. package/src/modules/bmm/docs/workflows-planning.md +0 -601
  675. package/src/modules/bmm/docs/workflows-solutioning.md +0 -501
  676. package/src/modules/bmm/teams/default-party.csv +0 -19
  677. package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +0 -675
  678. package/src/modules/bmm/testarch/knowledge/component-tdd.md +0 -486
  679. package/src/modules/bmm/testarch/knowledge/contract-testing.md +0 -957
  680. package/src/modules/bmm/testarch/knowledge/data-factories.md +0 -500
  681. package/src/modules/bmm/testarch/knowledge/email-auth.md +0 -721
  682. package/src/modules/bmm/testarch/knowledge/error-handling.md +0 -725
  683. package/src/modules/bmm/testarch/knowledge/feature-flags.md +0 -750
  684. package/src/modules/bmm/testarch/knowledge/fixture-architecture.md +0 -401
  685. package/src/modules/bmm/testarch/knowledge/network-first.md +0 -486
  686. package/src/modules/bmm/testarch/knowledge/nfr-criteria.md +0 -670
  687. package/src/modules/bmm/testarch/knowledge/playwright-config.md +0 -730
  688. package/src/modules/bmm/testarch/knowledge/probability-impact.md +0 -601
  689. package/src/modules/bmm/testarch/knowledge/risk-governance.md +0 -615
  690. package/src/modules/bmm/testarch/knowledge/selective-testing.md +0 -732
  691. package/src/modules/bmm/testarch/knowledge/selector-resilience.md +0 -527
  692. package/src/modules/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
  693. package/src/modules/bmm/testarch/knowledge/test-levels-framework.md +0 -473
  694. package/src/modules/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
  695. package/src/modules/bmm/testarch/knowledge/test-quality.md +0 -664
  696. package/src/modules/bmm/testarch/knowledge/timing-debugging.md +0 -372
  697. package/src/modules/bmm/testarch/knowledge/visual-debugging.md +0 -524
  698. package/src/modules/bmm/testarch/tea-index.csv +0 -22
  699. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
  700. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
  701. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
  702. package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
  703. package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +0 -180
  704. package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -56
  705. package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
  706. package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -522
  707. package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -181
  708. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -65
  709. package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
  710. package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
  711. package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -299
  712. package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
  713. package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -437
  714. package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -674
  715. package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
  716. package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -533
  717. package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
  718. package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -347
  719. package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -245
  720. package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -62
  721. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
  722. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1306
  723. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
  724. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -99
  725. package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -346
  726. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -80
  727. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -292
  728. package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -53
  729. package/src/modules/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
  730. package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -525
  731. package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
  732. package/src/modules/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
  733. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -76
  734. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -217
  735. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -74
  736. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +0 -434
  737. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -978
  738. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
  739. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
  740. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -57
  741. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -321
  742. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
  743. package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -240
  744. package/src/modules/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
  745. package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -696
  746. package/src/modules/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
  747. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -96
  748. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -169
  749. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -302
  750. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
  751. package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -66
  752. package/src/modules/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
  753. package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +0 -22
  754. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -398
  755. package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -57
  756. package/src/modules/bmm/workflows/4-implementation/correct-course/checklist.md +0 -279
  757. package/src/modules/bmm/workflows/4-implementation/correct-course/instructions.md +0 -206
  758. package/src/modules/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -52
  759. package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +0 -240
  760. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -256
  761. package/src/modules/bmm/workflows/4-implementation/create-story/template.md +0 -51
  762. package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -68
  763. package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +0 -38
  764. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -267
  765. package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -53
  766. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
  767. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -164
  768. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
  769. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -52
  770. package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +0 -1442
  771. package/src/modules/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -52
  772. package/src/modules/bmm/workflows/4-implementation/sprint-planning/checklist.md +0 -33
  773. package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +0 -234
  774. package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +0 -55
  775. package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -50
  776. package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
  777. package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
  778. package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -209
  779. package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -57
  780. package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
  781. package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -28
  782. package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
  783. package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -25
  784. package/src/modules/bmm/workflows/document-project/checklist.md +0 -245
  785. package/src/modules/bmm/workflows/document-project/instructions.md +0 -222
  786. package/src/modules/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
  787. package/src/modules/bmm/workflows/document-project/workflow.yaml +0 -36
  788. package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
  789. package/src/modules/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  790. package/src/modules/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
  791. package/src/modules/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  792. package/src/modules/bmm/workflows/techdoc/documentation-standards.md +0 -262
  793. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
  794. package/src/modules/bmm/workflows/testarch/atdd/checklist.md +0 -373
  795. package/src/modules/bmm/workflows/testarch/atdd/instructions.md +0 -785
  796. package/src/modules/bmm/workflows/testarch/atdd/workflow.yaml +0 -54
  797. package/src/modules/bmm/workflows/testarch/automate/checklist.md +0 -580
  798. package/src/modules/bmm/workflows/testarch/automate/instructions.md +0 -1303
  799. package/src/modules/bmm/workflows/testarch/automate/workflow.yaml +0 -63
  800. package/src/modules/bmm/workflows/testarch/ci/checklist.md +0 -246
  801. package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
  802. package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
  803. package/src/modules/bmm/workflows/testarch/ci/instructions.md +0 -517
  804. package/src/modules/bmm/workflows/testarch/ci/workflow.yaml +0 -55
  805. package/src/modules/bmm/workflows/testarch/framework/checklist.md +0 -321
  806. package/src/modules/bmm/workflows/testarch/framework/instructions.md +0 -455
  807. package/src/modules/bmm/workflows/testarch/framework/workflow.yaml +0 -55
  808. package/src/modules/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
  809. package/src/modules/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
  810. package/src/modules/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
  811. package/src/modules/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -58
  812. package/src/modules/bmm/workflows/testarch/test-design/checklist.md +0 -234
  813. package/src/modules/bmm/workflows/testarch/test-design/instructions.md +0 -782
  814. package/src/modules/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
  815. package/src/modules/bmm/workflows/testarch/test-design/workflow.yaml +0 -58
  816. package/src/modules/bmm/workflows/testarch/test-review/checklist.md +0 -470
  817. package/src/modules/bmm/workflows/testarch/test-review/instructions.md +0 -608
  818. package/src/modules/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
  819. package/src/modules/bmm/workflows/testarch/test-review/workflow.yaml +0 -55
  820. package/src/modules/bmm/workflows/testarch/trace/checklist.md +0 -654
  821. package/src/modules/bmm/workflows/testarch/trace/instructions.md +0 -1045
  822. package/src/modules/bmm/workflows/testarch/trace/trace-template.md +0 -673
  823. package/src/modules/bmm/workflows/testarch/trace/workflow.yaml +0 -68
  824. package/src/modules/bmm/workflows/workflow-status/init/instructions.md +0 -823
  825. package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +0 -29
  826. package/src/modules/bmm/workflows/workflow-status/instructions.md +0 -387
  827. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -120
  828. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -108
  829. package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +0 -52
  830. package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -104
  831. package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -95
  832. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
  833. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
  834. package/src/modules/bmm/workflows/workflow-status/project-levels.yaml +0 -59
  835. package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -24
  836. package/src/modules/bmm/workflows/workflow-status/workflow.yaml +0 -30
  837. package/src/modules/cis/README.md +0 -153
  838. package/src/modules/cis/_module-installer/install-config.yaml +0 -16
  839. package/src/modules/cis/_module-installer/installer.js +0 -92
  840. package/src/modules/cis/agents/README.md +0 -104
  841. package/src/modules/cis/agents/brainstorming-coach.agent.yaml +0 -28
  842. package/src/modules/cis/agents/creative-problem-solver.agent.yaml +0 -28
  843. package/src/modules/cis/agents/design-thinking-coach.agent.yaml +0 -28
  844. package/src/modules/cis/agents/innovation-strategist.agent.yaml +0 -28
  845. package/src/modules/cis/agents/storyteller.agent.yaml +0 -28
  846. package/src/modules/cis/teams/creative-squad.yaml +0 -7
  847. package/src/modules/cis/teams/default-party.csv +0 -11
  848. package/src/modules/cis/workflows/README.md +0 -139
  849. package/src/modules/cis/workflows/design-thinking/README.md +0 -56
  850. package/src/modules/cis/workflows/design-thinking/design-methods.csv +0 -31
  851. package/src/modules/cis/workflows/design-thinking/instructions.md +0 -200
  852. package/src/modules/cis/workflows/design-thinking/template.md +0 -111
  853. package/src/modules/cis/workflows/design-thinking/workflow.yaml +0 -43
  854. package/src/modules/cis/workflows/innovation-strategy/README.md +0 -56
  855. package/src/modules/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
  856. package/src/modules/cis/workflows/innovation-strategy/instructions.md +0 -274
  857. package/src/modules/cis/workflows/innovation-strategy/template.md +0 -189
  858. package/src/modules/cis/workflows/innovation-strategy/workflow.yaml +0 -43
  859. package/src/modules/cis/workflows/problem-solving/README.md +0 -56
  860. package/src/modules/cis/workflows/problem-solving/instructions.md +0 -250
  861. package/src/modules/cis/workflows/problem-solving/solving-methods.csv +0 -31
  862. package/src/modules/cis/workflows/problem-solving/template.md +0 -165
  863. package/src/modules/cis/workflows/problem-solving/workflow.yaml +0 -43
  864. package/src/modules/cis/workflows/storytelling/README.md +0 -58
  865. package/src/modules/cis/workflows/storytelling/instructions.md +0 -291
  866. package/src/modules/cis/workflows/storytelling/story-types.csv +0 -26
  867. package/src/modules/cis/workflows/storytelling/template.md +0 -113
  868. package/src/modules/cis/workflows/storytelling/workflow.yaml +0 -43
  869. package/src/utility/models/agent-activation-ide.xml +0 -51
  870. package/src/utility/models/agent-activation-web.xml +0 -60
  871. package/src/utility/models/agent-command-header.md +0 -1
  872. package/src/utility/models/agent-config-template.md +0 -23
  873. package/src/utility/models/agent-in-team-activation.xml +0 -3
  874. package/src/utility/models/fragments/activation-rules.xml +0 -8
  875. package/src/utility/models/fragments/activation-steps.xml +0 -16
  876. package/src/utility/models/fragments/handler-action.xml +0 -4
  877. package/src/utility/models/fragments/handler-exec.xml +0 -5
  878. package/src/utility/models/fragments/handler-tmpl.xml +0 -5
  879. package/src/utility/models/fragments/handler-validate-workflow.xml +0 -7
  880. package/src/utility/models/fragments/handler-workflow.xml +0 -9
  881. package/src/utility/models/fragments/menu-handlers.xml +0 -6
  882. package/src/utility/models/fragments/web-bundle-activation-steps.xml +0 -32
  883. package/src/utility/templates/agent.customize.template.yaml +0 -42
  884. package/test/fixtures/agent-schema/invalid/metadata/core-agent-with-module.agent.yaml +0 -26
  885. package/test/fixtures/agent-schema/invalid/metadata/module-agent-missing-module.agent.yaml +0 -25
  886. package/test/fixtures/agent-schema/invalid/metadata/wrong-module-value.agent.yaml +0 -26
  887. package/tools/cli/bundlers/bundle-web.js +0 -179
  888. package/tools/cli/bundlers/test-analyst.js +0 -28
  889. package/tools/cli/bundlers/test-bundler.js +0 -118
  890. package/tools/cli/bundlers/web-bundler.js +0 -1667
  891. package/tools/cli/commands/build.js +0 -458
  892. package/tools/cli/commands/list.js +0 -28
  893. package/tools/cli/commands/update.js +0 -28
  894. package/tools/cli/installers/lib/ide/auggie.js +0 -179
  895. package/tools/cli/installers/lib/ide/claude-code.js +0 -471
  896. package/tools/cli/installers/lib/ide/cline.js +0 -220
  897. package/tools/cli/installers/lib/ide/crush.js +0 -240
  898. package/tools/cli/installers/lib/ide/cursor.js +0 -352
  899. package/tools/cli/installers/lib/ide/gemini.js +0 -206
  900. package/tools/cli/installers/lib/ide/iflow.js +0 -125
  901. package/tools/cli/installers/lib/ide/opencode.js +0 -212
  902. package/tools/cli/installers/lib/ide/qwen.js +0 -318
  903. package/tools/cli/installers/lib/ide/roo.js +0 -253
  904. package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +0 -14
  905. package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +0 -12
  906. package/tools/cli/installers/lib/ide/trae.js +0 -266
  907. package/tools/cli/installers/lib/ide/windsurf.js +0 -211
  908. package/tools/cli/lib/replace-project-root.js +0 -239
  909. package/tools/cli/regenerate-manifests.js +0 -28
  910. package/tools/cli/test-yaml-builder.js +0 -43
  911. package/tools/flattener/aggregate.js +0 -76
  912. package/tools/flattener/binary.js +0 -80
  913. package/tools/flattener/discovery.js +0 -71
  914. package/tools/flattener/files.js +0 -35
  915. package/tools/flattener/ignoreRules.js +0 -172
  916. package/tools/flattener/main.js +0 -483
  917. package/tools/flattener/projectRoot.js +0 -201
  918. package/tools/flattener/prompts.js +0 -44
  919. package/tools/flattener/stats.helpers.js +0 -368
  920. package/tools/flattener/stats.js +0 -75
  921. package/tools/flattener/test-matrix.js +0 -409
  922. package/tools/flattener/xml.js +0 -88
  923. package/tools/validate-bundles.js +0 -87
  924. package/v6-open-items.md +0 -17
  925. /package/src/{modules/bmm → bmm}/teams/team-fullstack.yaml +0 -0
  926. /package/src/{modules/bmgd/workflows/4-production → bmm/workflows/4-implementation}/sprint-planning/checklist.md +0 -0
  927. /package/src/{modules/bmm → bmm}/workflows/document-project/documentation-requirements.csv +0 -0
  928. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/deep-dive-template.md +0 -0
  929. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/index-template.md +0 -0
  930. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/project-overview-template.md +0 -0
  931. /package/src/{modules/bmm → bmm}/workflows/document-project/templates/source-tree-template.md +0 -0
  932. /package/src/utility/{models/fragments/handler-data.xml → agent-components/handler-data.txt} +0 -0
  933. /package/{src/utility/models/action-command-header.md → tools/cli/installers/lib/ide/templates/split/.gitkeep} +0 -0
@@ -1,1306 +0,0 @@
1
- # Create UX Design Workflow Instructions
2
-
3
- <workflow name="create-ux-design">
4
-
5
- <critical>The workflow execution engine is governed by: {project-root}/{bmad_folder}/core/tasks/workflow.xml</critical>
6
- <critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
7
- <critical>This workflow uses ADAPTIVE FACILITATION - adjust your communication style based on {user_skill_level}</critical>
8
- <critical>The goal is COLLABORATIVE UX DESIGN through visual exploration, not content generation</critical>
9
- <critical>Communicate all responses in {communication_language} and tailor to {user_skill_level}</critical>
10
- <critical>Generate all documents in {document_output_language}</critical>
11
- <critical>SAVE PROGRESS after each major step - use <template-output> tags throughout</critical>
12
- <critical>DOCUMENT OUTPUT: Professional, specific, actionable UX design decisions WITH RATIONALE. User skill level ({user_skill_level}) affects conversation style ONLY, not document content.</critical>
13
- <critical>Input documents specified in workflow.yaml input_file_patterns - workflow engine handles fuzzy matching, whole vs sharded document discovery automatically</critical>
14
-
15
- <step n="0" goal="Validate workflow readiness" tag="workflow-status">
16
- <action>Check if {output_folder}/bmm-workflow-status.yaml exists</action>
17
-
18
- <check if="status file not found">
19
- <output>No workflow status file found. Create UX Design can run standalone or as part of BMM planning workflow.</output>
20
- <output>For standalone use, we'll gather requirements as we go. For integrated use, run `workflow-init` first for better context.</output>
21
- <action>Set standalone_mode = true</action>
22
- </check>
23
-
24
- <check if="status file found">
25
- <action>Load the FULL file: {output_folder}/bmm-workflow-status.yaml</action>
26
- <action>Parse workflow_status section</action>
27
- <action>Check status of "create-design" workflow</action>
28
- <action>Get project_level from YAML metadata</action>
29
- <action>Find first non-completed workflow (next expected workflow)</action>
30
-
31
- <check if="create-design status is file path (already completed)">
32
- <output>⚠️ UX Design already completed: {{create-design status}}</output>
33
- <ask>Re-running will overwrite the existing UX design. Continue? (y/n)</ask>
34
- <check if="n">
35
- <output>Exiting. Use workflow-status to see your next step.</output>
36
- <action>Exit workflow</action>
37
- </check>
38
- </check>
39
-
40
- <check if="create-design is not the next expected workflow">
41
- <output>⚠️ Next expected workflow: {{next_workflow}}. UX Design is out of sequence.</output>
42
- <ask>Continue with UX Design anyway? (y/n)</ask>
43
- <check if="n">
44
- <output>Exiting. Run {{next_workflow}} instead.</output>
45
- <action>Exit workflow</action>
46
- </check>
47
- </check>
48
-
49
- <action>Set standalone_mode = false</action>
50
- <action>Store {{project_level}} for scoping decisions</action>
51
- </check>
52
- </step>
53
-
54
- <step n="0.5" goal="Discover and load input documents">
55
- <invoke-protocol name="discover_inputs" />
56
- <note>After discovery, these content variables are available: {prd_content}, {product_brief_content}, {epics_content}, {brainstorming_content}, {document_project_content}</note>
57
- </step>
58
-
59
- <step n="1a" goal="Confirm project understanding or gather basic context">
60
- <critical>A UX designer must understand the WHY before designing the HOW</critical>
61
-
62
- <action>Review loaded context from Step 0.5: {prd_content}, {product_brief_content}, {epics_content}, {brainstorming_content}
63
- </action>
64
-
65
- <check if="documents_found">
66
- <action>Extract and understand:
67
- - Project vision and goals
68
- - Target users and personas
69
- - Core features and user journeys
70
- - Platform requirements (web, mobile, desktop)
71
- - Any technical constraints mentioned
72
- - Brand personality hints
73
- - Competitive landscape references
74
- </action>
75
-
76
- <output>I've loaded your project documentation. Let me confirm what I'm seeing:
77
-
78
- **Project:** {{project_summary_from_docs}}
79
- **Target Users:** {{user_summary_from_docs}}</output>
80
-
81
- <ask>Does this match your understanding? Any corrections or additions?</ask>
82
-
83
- </check>
84
-
85
- <check if="no_documents_found">
86
- <ask>Let's start by understanding what you're building.
87
-
88
- **What are you building?** (1-2 sentences about the project)
89
-
90
- **Who is this for?** Describe your ideal user.</ask>
91
- </check>
92
-
93
- <template-output>project_and_users_confirmed</template-output>
94
- </step>
95
-
96
- <step n="1b" goal="Understand core experience and platform">
97
- <critical>Now we discover the ONE thing that defines this experience</critical>
98
-
99
- <ask>Now let's dig into the experience itself.
100
-
101
- **What's the core experience?**
102
-
103
- - What's the ONE thing users will do most?
104
- - What should be absolutely effortless?
105
- - Which user action is most critical to get right?
106
-
107
- **Platform:**
108
- Where will users experience this? (Web, mobile app, desktop, multiple platforms)</ask>
109
-
110
- <template-output>core_experience_and_platform</template-output>
111
- </step>
112
-
113
- <step n="1c" goal="Discover the desired emotional response">
114
- <critical>Emotion drives behavior - this shapes everything</critical>
115
-
116
- <ask>This is crucial - **what should users FEEL when using this?**
117
-
118
- Not what they'll do, but what emotion or state they should experience:
119
-
120
- - Empowered and in control?
121
- - Delighted and surprised?
122
- - Efficient and productive?
123
- - Creative and inspired?
124
- - Calm and focused?
125
- - Connected and engaged?
126
- - Something else?
127
-
128
- Really think about the emotional response you want. What feeling would make them tell a friend about this?</ask>
129
-
130
- <template-output>desired_emotional_response</template-output>
131
- </step>
132
-
133
- <step n="1d" goal="Gather inspiration and analyze UX patterns">
134
- <critical>Learn from what users already love</critical>
135
-
136
- <ask>**Inspiration time!**
137
-
138
- Name 2-3 apps your users already love and USE regularly.
139
-
140
- Feel free to share:
141
-
142
- - App names (I'll look them up to see current UX)
143
- - Screenshots (if you have examples of what you like)
144
- - Links to products or demos
145
-
146
- For each one, what do they do well from a UX perspective? What makes the experience compelling?</ask>
147
-
148
- <action>For each app mentioned:
149
- <WebSearch>{{app_name}} current interface UX design 2025</WebSearch>
150
- <action>Analyze what makes that app's UX effective</action>
151
- <action>Note patterns and principles that could apply to this project</action>
152
- </action>
153
-
154
- <action>If screenshots provided:
155
- <action>Analyze screenshots for UX patterns, visual style, interaction patterns</action>
156
- <action>Note what user finds compelling about these examples</action>
157
- </action>
158
-
159
- <template-output>inspiration_analysis</template-output>
160
- </step>
161
-
162
- <step n="1e" goal="Synthesize understanding and set facilitation mode">
163
- <critical>Now analyze complexity and set the right facilitation approach</critical>
164
-
165
- <action>Analyze project for UX complexity indicators: - Number of distinct user roles or personas - Number of primary user journeys - Interaction complexity (simple CRUD vs rich interactions) - Platform requirements (single vs multi-platform) - Real-time collaboration needs - Content creation vs consumption - Novel interaction patterns
166
- </action>
167
-
168
- <action>Based on {user_skill_level}, set facilitation approach:
169
-
170
- <check if="{user_skill_level} == 'expert'">
171
- Set mode: UX_EXPERT
172
- - Use design terminology freely (affordances, information scent, cognitive load)
173
- - Move quickly through familiar patterns
174
- - Focus on nuanced tradeoffs and edge cases
175
- - Reference design systems and frameworks by name
176
- </check>
177
-
178
- <check if="{user_skill_level} == 'intermediate'">
179
- Set mode: UX_INTERMEDIATE
180
- - Balance design concepts with clear explanations
181
- - Provide brief context for UX decisions
182
- - Use familiar analogies when helpful
183
- - Confirm understanding at key points
184
- </check>
185
-
186
- <check if="{user_skill_level} == 'beginner'">
187
- Set mode: UX_BEGINNER
188
- - Explain design concepts in simple terms
189
- - Use real-world analogies extensively
190
- - Focus on "why this matters for users"
191
- - Protect from overwhelming choices
192
- </check>
193
-
194
- </action>
195
-
196
- <output>Here's what I'm understanding about {{project_name}}:
197
-
198
- **Vision:** {{project_vision_summary}}
199
- **Users:** {{user_summary}}
200
- **Core Experience:** {{core_action_summary}}
201
- **Desired Feeling:** {{emotional_goal}}
202
- **Platform:** {{platform_summary}}
203
- **Inspiration:** {{inspiration_summary_with_ux_patterns}}
204
-
205
- **UX Complexity:** {{complexity_assessment}}
206
-
207
- This helps me understand both what we're building and the experience we're aiming for. Let's start designing!</output>
208
-
209
- <action>Load UX design template: {template}</action>
210
- <action>Initialize output document at {default_output_file}</action>
211
-
212
- <template-output>project_vision</template-output>
213
- </step>
214
-
215
- <step n="2" goal="Discover and evaluate design systems">
216
- <critical>Modern design systems make many good UX decisions by default</critical>
217
- <critical>Like starter templates for code, design systems provide proven patterns</critical>
218
-
219
- <action>Based on platform and tech stack (if known from PRD), identify design system options:
220
-
221
- For Web Applications:
222
- - Material UI (Google's design language)
223
- - shadcn/ui (Modern, customizable, Tailwind-based)
224
- - Chakra UI (Accessible, themeable)
225
- - Ant Design (Enterprise, comprehensive)
226
- - Radix UI (Unstyled primitives, full control)
227
- - Custom design system
228
-
229
- For Mobile:
230
- - iOS Human Interface Guidelines
231
- - Material Design (Android)
232
- - Custom mobile design
233
-
234
- For Desktop:
235
- - Platform native (macOS, Windows guidelines)
236
- - Electron with web design system
237
-
238
- </action>
239
-
240
- <action>Search for current design system information:
241
- <WebSearch>{{platform}} design system 2025 popular options accessibility</WebSearch>
242
- <WebSearch>{{identified_design_system}} latest version components features</WebSearch>
243
- </action>
244
-
245
- <check if="design_systems_found">
246
- <action>For each relevant design system, understand what it provides:
247
- - Component library (buttons, forms, modals, etc.)
248
- - Accessibility built-in (WCAG compliance)
249
- - Theming capabilities
250
- - Responsive patterns
251
- - Icon library
252
- - Documentation quality
253
- </action>
254
-
255
- <action>Present design system options:
256
- "I found {{design_system_count}} design systems that could work well for your project.
257
-
258
- Think of design systems like a foundation - they provide proven UI components and patterns,
259
- so we're not reinventing buttons and forms. This speeds development and ensures consistency.
260
-
261
- **Your Options:**
262
-
263
- 1. **{{system_name}}**
264
- - {{key_strengths}}
265
- - {{component_count}} components | {{accessibility_level}}
266
- - Best for: {{use_case}}
267
-
268
- 2. **{{system_name}}**
269
- - {{key_strengths}}
270
- - {{component_count}} components | {{accessibility_level}}
271
- - Best for: {{use_case}}
272
-
273
- 3. **Custom Design System**
274
- - Full control over every detail
275
- - More effort, completely unique to your brand
276
- - Best for: Strong brand identity needs, unique UX requirements
277
-
278
- **My Recommendation:** {{recommendation}} for {{reason}}
279
-
280
- This establishes our component foundation and interaction patterns."
281
- </action>
282
-
283
- <ask>Which design system approach resonates with you?
284
-
285
- Or tell me:
286
-
287
- - Do you need complete visual uniqueness? (→ custom)
288
- - Want fast development with great defaults? (→ established system)
289
- - Have brand guidelines to follow? (→ themeable system)
290
- </ask>
291
-
292
- <action>Record design system decision:
293
- System: {{user_choice}}
294
- Version: {{verified_version_if_applicable}}
295
- Rationale: {{user_reasoning_or_recommendation_accepted}}
296
- Provides: {{components_and_patterns_provided}}
297
- Customization needs: {{custom_components_needed}}
298
- </action>
299
-
300
- </check>
301
-
302
- <template-output>design_system_decision</template-output>
303
- </step>
304
-
305
- <step n="3a" goal="Identify the defining experience">
306
- <critical>Every great app has a defining experience - identify it first</critical>
307
-
308
- <action>Based on PRD/brief analysis, identify the core user experience: - What is the primary action users will repeat? - What makes this app unique vs. competitors? - What should be delightfully easy?
309
- </action>
310
-
311
- <ask>Let's identify your app's defining experience - the core interaction that, if we nail it, everything else follows.
312
-
313
- When someone describes your app to a friend, what would they say?
314
-
315
- **Examples:**
316
-
317
- - "It's the app where you swipe to match with people" (Tinder)
318
- - "You can share photos that disappear" (Snapchat)
319
- - "It's like having a conversation with AI" (ChatGPT)
320
- - "Capture and share moments" (Instagram)
321
- - "Freeform content blocks" (Notion)
322
- - "Real-time collaborative canvas" (Figma)
323
-
324
- **What's yours?** What's the ONE experience that defines your app?</ask>
325
-
326
- <action>Analyze if this core experience has established UX patterns:
327
-
328
- Standard patterns exist for:
329
- - CRUD operations (Create, Read, Update, Delete)
330
- - E-commerce flows (Browse → Product → Cart → Checkout)
331
- - Social feeds (Infinite scroll, like/comment)
332
- - Authentication (Login, signup, password reset)
333
- - Search and filter
334
- - Content creation (Forms, editors)
335
- - Dashboards and analytics
336
-
337
- Novel patterns may be needed for:
338
- - Unique interaction mechanics (before Tinder, swiping wasn't standard)
339
- - New collaboration models (before Figma, real-time design wasn't solved)
340
- - Unprecedented content types (before TikTok, vertical short video feeds)
341
- - Complex multi-step workflows spanning features
342
- - Innovative gamification or engagement loops
343
-
344
- </action>
345
-
346
- <template-output>defining_experience</template-output>
347
- </step>
348
-
349
- <step n="3b" goal="Design novel UX pattern (if needed)">
350
- <critical>Skip this step if standard patterns apply. Run only if novel pattern detected.</critical>
351
-
352
- <check if="novel_pattern_detected">
353
- <output>The **{{pattern_name}}** interaction is novel - no established pattern exists yet!
354
-
355
- Core UX challenge: {{challenge_description}}
356
-
357
- This is exciting - we get to invent the user experience together. Let's design this interaction systematically.</output>
358
-
359
- <ask>Let's think through the core mechanics of this {{pattern_name}} interaction:
360
-
361
- 1. **User Goal:** What does the user want to accomplish?
362
- 2. **Trigger:** How should they initiate this action? (button, gesture, voice, drag, etc.)
363
- 3. **Feedback:** What should they see/feel happening?
364
- 4. **Success:** How do they know it succeeded?
365
- 5. **Errors:** What if something goes wrong? How do they recover?
366
-
367
- Walk me through your mental model for this interaction - the ideal experience from the user's perspective.</ask>
368
-
369
- <template-output>novel_pattern_mechanics</template-output>
370
-
371
- </check>
372
-
373
- <check if="!novel_pattern_detected">
374
- <action>Skip to Step 3d - standard patterns apply</action>
375
- </check>
376
- </step>
377
-
378
- <step n="3c" goal="Explore novel pattern deeply (if novel)">
379
- <critical>Skip if not designing novel pattern</critical>
380
-
381
- <check if="novel_pattern_detected">
382
- <ask>Let's explore the {{pattern_name}} interaction more deeply to make it exceptional:
383
-
384
- - **Similar Patterns:** What apps have SIMILAR (not identical) patterns we could learn from?
385
- - **Speed:** What's the absolute fastest this action could complete?
386
- - **Delight:** What's the most delightful way to give feedback?
387
- - **Platform:** Should this work on mobile differently than desktop?
388
- - **Shareability:** What would make someone show this to a friend?</ask>
389
-
390
- <action>Document the novel UX pattern:
391
- Pattern Name: {{pattern_name}}
392
- User Goal: {{what_user_accomplishes}}
393
- Trigger: {{how_initiated}}
394
- Interaction Flow:
395
- 1. {{step_1}}
396
- 2. {{step_2}}
397
- 3. {{step_3}}
398
- Visual Feedback: {{what_user_sees}}
399
- States: {{default_loading_success_error}}
400
- Platform Considerations: {{desktop_vs_mobile_vs_tablet}}
401
- Accessibility: {{keyboard_screen_reader_support}}
402
- Inspiration: {{similar_patterns_from_other_apps}}
403
- </action>
404
-
405
- <template-output>novel_pattern_details</template-output>
406
-
407
- </check>
408
-
409
- <check if="!novel_pattern_detected">
410
- <action>Skip to Step 3d - standard patterns apply</action>
411
- </check>
412
- </step>
413
-
414
- <step n="3d" goal="Define core experience principles">
415
- <critical>Establish the guiding principles for the entire experience</critical>
416
-
417
- <action>Based on the defining experience and any novel patterns, define the core experience principles: - Speed: How fast should key actions feel? - Guidance: How much hand-holding do users need? - Flexibility: How much control vs. simplicity? - Feedback: Subtle or celebratory?
418
- </action>
419
-
420
- <output>Core experience principles established:
421
-
422
- **Speed:** {{speed_principle}}
423
- **Guidance:** {{guidance_principle}}
424
- **Flexibility:** {{flexibility_principle}}
425
- **Feedback:** {{feedback_principle}}
426
-
427
- These principles will guide every UX decision from here forward.</output>
428
-
429
- <template-output>core_experience_principles</template-output>
430
- </step>
431
-
432
- <step n="4" goal="Discover visual foundation through color theme exploration">
433
- <critical>Visual design isn't decoration - it communicates brand and guides attention</critical>
434
- <critical>SHOW options, don't just describe them - generate HTML visualizations</critical>
435
- <critical>Use color psychology principles: blue=trust, red=energy, green=growth/calm, purple=creativity, etc.</critical>
436
-
437
- <ask>Do you have existing brand guidelines or a specific color palette in mind? (y/n)
438
-
439
- If yes: Share your brand colors, or provide a link to brand guidelines.
440
- If no: I'll generate theme options based on your project's personality.
441
- </ask>
442
-
443
- <check if="existing_brand == true">
444
- <ask>Please provide:
445
- - Primary brand color(s) (hex codes if available)
446
- - Secondary colors
447
- - Any brand personality guidelines (professional, playful, minimal, etc.)
448
- - Link to style guide (if available)
449
- </ask>
450
-
451
- <action>Extract and document brand colors</action>
452
- <action>Generate semantic color mappings:
453
- - Primary: {{brand_primary}} (main actions, key elements)
454
- - Secondary: {{brand_secondary}} (supporting actions)
455
- - Success: {{success_color}}
456
- - Warning: {{warning_color}}
457
- - Error: {{error_color}}
458
- - Neutral: {{gray_scale}}
459
- </action>
460
-
461
- </check>
462
-
463
- <check if="existing_brand == false">
464
- <action>Based on project personality from PRD/brief, identify 3-4 theme directions:
465
-
466
- Analyze project for:
467
- - Industry (fintech → trust/security, creative → bold/expressive, health → calm/reliable)
468
- - Target users (enterprise → professional, consumers → approachable, creators → inspiring)
469
- - Brand personality keywords mentioned
470
- - Competitor analysis (blend in or stand out?)
471
-
472
- Generate theme directions:
473
- 1. {{theme_1_name}} ({{personality}}) - {{color_strategy}}
474
- 2. {{theme_2_name}} ({{personality}}) - {{color_strategy}}
475
- 3. {{theme_3_name}} ({{personality}}) - {{color_strategy}}
476
- 4. {{theme_4_name}} ({{personality}}) - {{color_strategy}}
477
- </action>
478
-
479
- <action>Generate comprehensive HTML color theme visualizer:
480
-
481
- Create: {color_themes_html}
482
-
483
- For each theme, show:
484
-
485
- **Color Palette Section:**
486
- - Primary, secondary, accent colors as large swatches
487
- - Semantic colors (success, warning, error, info)
488
- - Neutral grayscale (background, text, borders)
489
- - Each swatch labeled with hex code and usage
490
-
491
- **Live Component Examples:**
492
- - Buttons (primary, secondary, disabled states)
493
- - Form inputs (normal, focus, error states)
494
- - Cards with content
495
- - Navigation elements
496
- - Success/error alerts
497
- - Typography in theme colors
498
-
499
- **Side-by-Side Comparison:**
500
- - All themes visible in grid layout
501
- - Responsive preview toggle
502
- - Toggle between light/dark mode if applicable
503
-
504
- **Theme Personality Description:**
505
- - Emotional impact (trustworthy, energetic, calm, sophisticated)
506
- - Best for (enterprise, consumer, creative, technical)
507
- - Visual style (minimal, bold, playful, professional)
508
-
509
- Include CSS with full theme variables for each option.
510
- </action>
511
-
512
- <action>Save HTML visualizer to {color_themes_html}</action>
513
-
514
- <output>🎨 I've created a color theme visualizer!
515
-
516
- Open this file in your browser: {color_themes_html}
517
-
518
- You'll see {{theme_count}} complete theme options with:
519
-
520
- - Full color palettes
521
- - Actual UI components in each theme
522
- - Side-by-side comparison
523
- - Theme personality descriptions
524
-
525
- Take your time exploring. Which theme FEELS right for your vision?
526
- </output>
527
-
528
- <ask>Which color theme direction resonates most?
529
-
530
- You can:
531
-
532
- - Choose a number (1-{{theme_count}})
533
- - Combine elements: "I like the colors from #2 but the vibe of #3"
534
- - Request variations: "Can you make #1 more vibrant?"
535
- - Describe a custom direction
536
-
537
- What speaks to you?
538
- </ask>
539
-
540
- <action>Based on user selection, finalize color palette:
541
- - Extract chosen theme colors
542
- - Apply any requested modifications
543
- - Document semantic color usage
544
- - Note rationale for selection
545
- </action>
546
-
547
- </check>
548
-
549
- <action>Define typography system:
550
-
551
- Based on brand personality and chosen colors:
552
- - Font families (heading, body, monospace)
553
- - Type scale (h1-h6, body, small, tiny)
554
- - Font weights and when to use them
555
- - Line heights for readability
556
-
557
- <check if="design_system_chosen">
558
- Use {{design_system}} default typography as starting point.
559
- Customize if brand requires it.
560
- </check>
561
-
562
- </action>
563
-
564
- <action>Define spacing and layout foundation: - Base unit (4px, 8px system) - Spacing scale (xs, sm, md, lg, xl, 2xl, etc.) - Layout grid (12-column, custom, or design system default) - Container widths for different breakpoints
565
- </action>
566
-
567
- <template-output>visual_foundation</template-output>
568
- </step>
569
-
570
- <step n="5" goal="Generate design direction mockups for visual decision-making">
571
- <critical>This is the game-changer - SHOW actual design directions, don't just discuss them</critical>
572
- <critical>Users make better decisions when they SEE options, not imagine them</critical>
573
- <critical>Consider platform norms: desktop apps often use sidebar nav, mobile apps use bottom nav or tabs</critical>
574
-
575
- <action>Based on PRD and core experience, identify 2-3 key screens to mock up:
576
-
577
- Priority screens:
578
- 1. Entry point (landing page, dashboard, home screen)
579
- 2. Core action screen (where primary user task happens)
580
- 3. Critical conversion (signup, create, submit, purchase)
581
-
582
- For each screen, extract:
583
- - Primary goal of this screen
584
- - Key information to display
585
- - Primary action(s)
586
- - Secondary actions
587
- - Navigation context
588
-
589
- </action>
590
-
591
- <action>Generate 6-8 different design direction variations exploring different UX approaches:
592
-
593
- Vary these dimensions:
594
-
595
- **Layout Approach:**
596
- - Sidebar navigation vs top nav vs floating action button
597
- - Single column vs multi-column
598
- - Card-based vs list-based vs grid
599
- - Centered vs left-aligned content
600
-
601
- **Visual Hierarchy:**
602
- - Dense (information-rich) vs Spacious (breathing room)
603
- - Bold headers vs subtle headers
604
- - Imagery-heavy vs text-focused
605
-
606
- **Interaction Patterns:**
607
- - Modal workflows vs inline expansion
608
- - Progressive disclosure vs all-at-once
609
- - Drag-and-drop vs click-to-select
610
-
611
- **Visual Weight:**
612
- - Minimal (lots of white space, subtle borders)
613
- - Balanced (clear structure, moderate visual weight)
614
- - Rich (gradients, shadows, visual depth)
615
- - Maximalist (bold, high contrast, dense)
616
-
617
- **Content Approach:**
618
- - Scannable (lists, cards, quick consumption)
619
- - Immersive (large imagery, storytelling)
620
- - Data-driven (charts, tables, metrics)
621
-
622
- </action>
623
-
624
- <action>Create comprehensive HTML design direction showcase:
625
-
626
- Create: {design_directions_html}
627
-
628
- For EACH design direction (6-8 total):
629
-
630
- **Full-Screen Mockup:**
631
- - Complete HTML/CSS implementation
632
- - Using chosen color theme
633
- - Real (or realistic placeholder) content
634
- - Interactive states (hover effects, focus states)
635
- - Responsive behavior
636
-
637
- **Design Philosophy Label:**
638
- - Direction name (e.g., "Dense Dashboard", "Spacious Explorer", "Card Gallery")
639
- - Personality (e.g., "Professional & Efficient", "Friendly & Approachable")
640
- - Best for (e.g., "Power users who need lots of info", "First-time visitors who need guidance")
641
-
642
- **Key Characteristics:**
643
- - Layout: {{approach}}
644
- - Density: {{level}}
645
- - Navigation: {{style}}
646
- - Primary action prominence: {{high_medium_low}}
647
-
648
- **Navigation Controls:**
649
- - Previous/Next buttons to cycle through directions
650
- - Thumbnail grid to jump to any direction
651
- - Side-by-side comparison mode (show 2-3 at once)
652
- - Responsive preview toggle (desktop/tablet/mobile)
653
- - Favorite/flag directions for later comparison
654
-
655
- **Notes Section:**
656
- - User can click to add notes about each direction
657
- - "What I like" and "What I'd change" fields
658
-
659
- </action>
660
-
661
- <action>Save comprehensive HTML showcase to {design_directions_html}</action>
662
-
663
- <output>🎨 Design Direction Mockups Generated!
664
-
665
- I've created {{mockup_count}} different design approaches for your key screens.
666
-
667
- Open: {design_directions_html}
668
-
669
- Each mockup shows a complete vision for your app's look and feel.
670
-
671
- As you explore, look for:
672
- ✓ Which layout feels most intuitive for your users?
673
- ✓ Which information hierarchy matches your priorities?
674
- ✓ Which interaction style fits your core experience?
675
- ✓ Which visual weight feels right for your brand?
676
-
677
- You can:
678
-
679
- - Navigate through all directions
680
- - Compare them side-by-side
681
- - Toggle between desktop/mobile views
682
- - Add notes about what you like
683
-
684
- Take your time - this is a crucial decision!
685
- </output>
686
-
687
- <ask>Which design direction(s) resonate most with your vision?
688
-
689
- You can:
690
-
691
- - Pick a favorite by number: "Direction #3 is perfect!"
692
- - Combine elements: "The layout from #2 with the density of #5"
693
- - Request modifications: "I like #6 but can we make it less dense?"
694
- - Ask me to explore variations: "Can you show me more options like #4 but with side navigation?"
695
-
696
- What speaks to you?
697
- </ask>
698
-
699
- <action>Based on user selection, extract and document design decisions:
700
-
701
- Chosen Direction: {{direction_number_or_hybrid}}
702
-
703
- Layout Decisions:
704
- - Navigation pattern: {{sidebar_top_floating}}
705
- - Content structure: {{single_multi_column}}
706
- - Content organization: {{cards_lists_grid}}
707
-
708
- Hierarchy Decisions:
709
- - Visual density: {{spacious_balanced_dense}}
710
- - Header emphasis: {{bold_subtle}}
711
- - Content focus: {{imagery_text_data}}
712
-
713
- Interaction Decisions:
714
- - Primary action pattern: {{modal_inline_dedicated}}
715
- - Information disclosure: {{progressive_all_at_once}}
716
- - User control: {{guided_flexible}}
717
-
718
- Visual Style Decisions:
719
- - Weight: {{minimal_balanced_rich_maximalist}}
720
- - Depth cues: {{flat_subtle_elevation_dramatic_depth}}
721
- - Border style: {{none_subtle_strong}}
722
-
723
- Rationale: {{why_user_chose_this_direction}}
724
- User notes: {{what_they_liked_and_want_to_change}}
725
-
726
- </action>
727
-
728
- <check if="user_wants_modifications">
729
- <action>Generate 2-3 refined variations incorporating requested changes</action>
730
- <action>Update HTML showcase with refined options</action>
731
- <ask>Better? Pick your favorite refined version.</ask>
732
- </check>
733
-
734
- <template-output>design_direction_decision</template-output>
735
- </step>
736
-
737
- <step n="6" goal="Collaborative user journey design">
738
- <critical>User journeys are conversations, not just flowcharts</critical>
739
- <critical>Design WITH the user, exploring options for each key flow</critical>
740
-
741
- <action>Extract critical user journeys from PRD: - Primary user tasks - Conversion flows - Onboarding sequence - Content creation workflows - Any complex multi-step processes
742
- </action>
743
-
744
- <action>For each critical journey, identify the goal and current assumptions</action>
745
-
746
- <for-each journey="critical_user_journeys">
747
-
748
- <output>**User Journey: {{journey_name}}**
749
-
750
- User goal: {{what_user_wants_to_accomplish}}
751
- Current entry point: {{where_journey_starts}}
752
- </output>
753
-
754
- <ask>Let's design the flow for {{journey_name}}.
755
-
756
- Walk me through how a user should accomplish this task:
757
-
758
- 1. **Entry:** What's the first thing they see/do?
759
- 2. **Input:** What information do they need to provide?
760
- 3. **Feedback:** What should they see/feel along the way?
761
- 4. **Success:** How do they know they succeeded?
762
-
763
- As you think through this, consider:
764
-
765
- - What's the minimum number of steps to value?
766
- - Where are the decision points and branching?
767
- - How do they recover from errors?
768
- - Should we show everything upfront, or progressively?
769
-
770
- Share your mental model for this flow.</ask>
771
-
772
- <action>Based on journey complexity, present 2-3 flow approach options:
773
-
774
- <check if="simple_linear_journey">
775
- Option A: Single-screen approach (all inputs/actions on one page)
776
- Option B: Wizard/stepper approach (split into clear steps)
777
- Option C: Hybrid (main flow on one screen, advanced options collapsed)
778
- </check>
779
-
780
- <check if="complex_branching_journey">
781
- Option A: Guided flow (system determines next step based on inputs)
782
- Option B: User-driven navigation (user chooses path)
783
- Option C: Adaptive (simple mode vs advanced mode toggle)
784
- </check>
785
-
786
- <check if="creation_journey">
787
- Option A: Template-first (start from templates, customize)
788
- Option B: Blank canvas (full flexibility, more guidance needed)
789
- Option C: Progressive creation (start simple, add complexity)
790
- </check>
791
-
792
- For each option, explain:
793
- - User experience: {{what_it_feels_like}}
794
- - Pros: {{benefits}}
795
- - Cons: {{tradeoffs}}
796
- - Best for: {{user_type_or_scenario}}
797
- </action>
798
-
799
- <ask>Which approach fits best? Or should we blend elements?</ask>
800
-
801
- <action>Create detailed flow documentation:
802
-
803
- Journey: {{journey_name}}
804
- User Goal: {{goal}}
805
- Approach: {{chosen_approach}}
806
-
807
- Flow Steps:
808
- 1. {{step_1_screen_and_action}}
809
- - User sees: {{information_displayed}}
810
- - User does: {{primary_action}}
811
- - System responds: {{feedback}}
812
-
813
- 2. {{step_2_screen_and_action}}
814
- ...
815
-
816
- Decision Points:
817
- - {{decision_point}}: {{branching_logic}}
818
-
819
- Error States:
820
- - {{error_scenario}}: {{how_user_recovers}}
821
-
822
- Success State:
823
- - Completion feedback: {{what_user_sees}}
824
- - Next action: {{what_happens_next}}
825
-
826
- [Generate Mermaid diagram showing complete flow]
827
- </action>
828
-
829
- </for-each>
830
-
831
- <template-output>user_journey_flows</template-output>
832
- </step>
833
-
834
- <step n="7" goal="Component library strategy and custom component design">
835
- <critical>Balance design system components with custom needs</critical>
836
-
837
- <action>Based on design system chosen + design direction mockups + user journeys:</action>
838
-
839
- <action>Identify required components:
840
-
841
- From Design System (if applicable):
842
- - {{list_of_components_provided}}
843
-
844
- Custom Components Needed:
845
- - {{unique_component_1}} ({{why_custom}})
846
- - {{unique_component_2}} ({{why_custom}})
847
-
848
- Components Requiring Heavy Customization:
849
- - {{component}} ({{what_customization}})
850
-
851
- </action>
852
-
853
- <ask>For components not covered by {{design_system}}, let's define them together.
854
-
855
- Component: {{custom_component_name}}
856
-
857
- 1. What's its purpose? (what does it do for users?)
858
- 2. What content/data does it display?
859
- 3. What actions can users take with it?
860
- 4. What states does it have? (default, hover, active, loading, error, disabled, etc.)
861
- 5. Are there variants? (sizes, styles, layouts)
862
- </ask>
863
-
864
- <action>For each custom component, document:
865
-
866
- Component Name: {{name}}
867
- Purpose: {{user_facing_purpose}}
868
-
869
- Anatomy:
870
- - {{element_1}}: {{description}}
871
- - {{element_2}}: {{description}}
872
-
873
- States:
874
- - Default: {{appearance}}
875
- - Hover: {{changes}}
876
- - Active/Selected: {{changes}}
877
- - Loading: {{loading_indicator}}
878
- - Error: {{error_display}}
879
- - Disabled: {{appearance}}
880
-
881
- Variants:
882
- - {{variant_1}}: {{when_to_use}}
883
- - {{variant_2}}: {{when_to_use}}
884
-
885
- Behavior:
886
- - {{interaction}}: {{what_happens}}
887
-
888
- Accessibility:
889
- - ARIA role: {{role}}
890
- - Keyboard navigation: {{keys}}
891
- - Screen reader: {{announcement}}
892
-
893
- </action>
894
-
895
- <template-output>component_library_strategy</template-output>
896
- </step>
897
-
898
- <step n="8" goal="Define UX pattern decisions for consistency">
899
- <critical>These are implementation patterns for UX - ensure consistency across the app</critical>
900
- <critical>Like the architecture workflow's implementation patterns, but for user experience</critical>
901
- <critical>These decisions prevent "it works differently on every page" confusion</critical>
902
-
903
- <action>Based on chosen components and journeys, identify UX consistency decisions needed:
904
-
905
- BUTTON HIERARCHY (How users know what's most important):
906
- - Primary action: {{style_and_usage}}
907
- - Secondary action: {{style_and_usage}}
908
- - Tertiary action: {{style_and_usage}}
909
- - Destructive action: {{style_and_usage}}
910
-
911
- FEEDBACK PATTERNS (How system communicates with users):
912
- - Success: {{pattern}} (toast, inline, modal, page-level)
913
- - Error: {{pattern}}
914
- - Warning: {{pattern}}
915
- - Info: {{pattern}}
916
- - Loading: {{pattern}} (spinner, skeleton, progress bar)
917
-
918
- FORM PATTERNS (How users input data):
919
- - Label position: {{above_inline_floating}}
920
- - Required field indicator: {{asterisk_text_visual}}
921
- - Validation timing: {{onBlur_onChange_onSubmit}}
922
- - Error display: {{inline_summary_both}}
923
- - Help text: {{tooltip_caption_modal}}
924
-
925
- MODAL PATTERNS (How dialogs behave):
926
- - Size variants: {{when_to_use_each}}
927
- - Dismiss behavior: {{click_outside_escape_explicit_close}}
928
- - Focus management: {{auto_focus_strategy}}
929
- - Stacking: {{how_multiple_modals_work}}
930
-
931
- NAVIGATION PATTERNS (How users move through app):
932
- - Active state indication: {{visual_cue}}
933
- - Breadcrumb usage: {{when_shown}}
934
- - Back button behavior: {{browser_back_vs_app_back}}
935
- - Deep linking: {{supported_patterns}}
936
-
937
- EMPTY STATE PATTERNS (What users see when no content):
938
- - First use: {{guidance_and_cta}}
939
- - No results: {{helpful_message}}
940
- - Cleared content: {{undo_option}}
941
-
942
- CONFIRMATION PATTERNS (When to confirm destructive actions):
943
- - Delete: {{always_sometimes_never_with_undo}}
944
- - Leave unsaved: {{warn_or_autosave}}
945
- - Irreversible actions: {{confirmation_level}}
946
-
947
- NOTIFICATION PATTERNS (How users stay informed):
948
- - Placement: {{top_bottom_corner}}
949
- - Duration: {{auto_dismiss_vs_manual}}
950
- - Stacking: {{how_multiple_notifications_appear}}
951
- - Priority levels: {{critical_important_info}}
952
-
953
- SEARCH PATTERNS (How search behaves):
954
- - Trigger: {{auto_or_manual}}
955
- - Results display: {{instant_on_enter}}
956
- - Filters: {{placement_and_behavior}}
957
- - No results: {{suggestions_or_message}}
958
-
959
- DATE/TIME PATTERNS (How temporal data appears):
960
- - Format: {{relative_vs_absolute}}
961
- - Timezone handling: {{user_local_utc}}
962
- - Pickers: {{calendar_dropdown_input}}
963
-
964
- </action>
965
-
966
- <output>I've identified {{pattern_count}} UX pattern categories that need consistent decisions across your app. Let's make these decisions together to ensure users get a consistent experience.
967
-
968
- These patterns determine how {{project_name}} behaves in common situations - like how buttons work, how forms validate, how modals behave, etc.</output>
969
-
970
- <ask>For each pattern category below, I'll present options and a recommendation. Tell me your preferences or ask questions.
971
-
972
- **Pattern Categories to Decide:**
973
-
974
- - Button hierarchy (primary, secondary, destructive)
975
- - Feedback patterns (success, error, loading)
976
- - Form patterns (labels, validation, help text)
977
- - Modal patterns (size, dismiss, focus)
978
- - Navigation patterns (active state, back button)
979
- - Empty state patterns
980
- - Confirmation patterns (delete, unsaved changes)
981
- - Notification patterns
982
- - Search patterns
983
- - Date/time patterns
984
-
985
- For each one, do you want to:
986
-
987
- 1. Go through each pattern category one by one (thorough)
988
- 2. Focus only on the most critical patterns for your app (focused)
989
- 3. Let me recommend defaults and you override where needed (efficient)</ask>
990
-
991
- <action>Based on user choice, facilitate pattern decisions with appropriate depth: - If thorough: Present all categories with options and reasoning - If focused: Identify 3-5 critical patterns based on app type - If efficient: Recommend smart defaults, ask for overrides
992
-
993
- For each pattern decision, document:
994
- - Pattern category
995
- - Chosen approach
996
- - Rationale (why this choice for this app)
997
- - Example scenarios where it applies
998
-
999
- </action>
1000
-
1001
- <template-output>ux_pattern_decisions</template-output>
1002
- </step>
1003
-
1004
- <step n="9" goal="Responsive and accessibility strategy">
1005
- <critical>Responsive design isn't just "make it smaller" - it's adapting the experience</critical>
1006
-
1007
- <action>Based on platform requirements from PRD and chosen design direction:</action>
1008
-
1009
- <ask>Let's define how your app adapts across devices.
1010
-
1011
- Target devices from PRD: {{devices}}
1012
-
1013
- For responsive design:
1014
-
1015
- 1. **Desktop** (large screens):
1016
- - How should we use the extra space?
1017
- - Multi-column layouts?
1018
- - Side navigation?
1019
-
1020
- 2. **Tablet** (medium screens):
1021
- - Simplified layout from desktop?
1022
- - Touch-optimized interactions?
1023
- - Portrait vs landscape considerations?
1024
-
1025
- 3. **Mobile** (small screens):
1026
- - Bottom navigation or hamburger menu?
1027
- - How do multi-column layouts collapse?
1028
- - Touch target sizes adequate?
1029
-
1030
- What's most important for each screen size?
1031
- </ask>
1032
-
1033
- <action>Define breakpoint strategy:
1034
-
1035
- Based on chosen layout pattern from design direction:
1036
-
1037
- Breakpoints:
1038
- - Mobile: {{max_width}} ({{cols}}-column layout, {{nav_pattern}})
1039
- - Tablet: {{range}} ({{cols}}-column layout, {{nav_pattern}})
1040
- - Desktop: {{min_width}} ({{cols}}-column layout, {{nav_pattern}})
1041
-
1042
- Adaptation Patterns:
1043
- - Navigation: {{how_it_changes}}
1044
- - Sidebar: {{collapse_hide_convert}}
1045
- - Cards/Lists: {{grid_to_single_column}}
1046
- - Tables: {{horizontal_scroll_card_view_hide_columns}}
1047
- - Modals: {{full_screen_on_mobile}}
1048
- - Forms: {{layout_changes}}
1049
-
1050
- </action>
1051
-
1052
- <action>Define accessibility strategy:
1053
-
1054
- <ask>Let's define your accessibility strategy.
1055
-
1056
- Accessibility means your app works for everyone, including people with disabilities:
1057
-
1058
- - Can someone using only a keyboard navigate?
1059
- - Can someone using a screen reader understand what's on screen?
1060
- - Can someone with color blindness distinguish important elements?
1061
- - Can someone with motor difficulties use your buttons?
1062
-
1063
- **WCAG Compliance Levels:**
1064
-
1065
- - **Level A** - Basic accessibility (minimum)
1066
- - **Level AA** - Recommended standard, legally required for government/education/public sites
1067
- - **Level AAA** - Highest standard (not always practical for all content)
1068
-
1069
- **Legal Context:**
1070
-
1071
- - Government/Education: Must meet WCAG 2.1 Level AA
1072
- - Public websites (US): ADA requires accessibility
1073
- - EU: Accessibility required
1074
-
1075
- Based on your deployment intent: {{recommendation}}
1076
-
1077
- **What level should we target?**</ask>
1078
-
1079
- Accessibility Requirements:
1080
-
1081
- Compliance Target: {{WCAG_level}}
1082
-
1083
- Key Requirements:
1084
- - Color contrast: {{ratio_required}} (text vs background)
1085
- - Keyboard navigation: All interactive elements accessible
1086
- - Focus indicators: Visible focus states on all interactive elements
1087
- - ARIA labels: Meaningful labels for screen readers
1088
- - Alt text: Descriptive text for all meaningful images
1089
- - Form labels: Proper label associations
1090
- - Error identification: Clear, descriptive error messages
1091
- - Touch target size: Minimum {{size}} for mobile
1092
-
1093
- Testing Strategy:
1094
- - Automated: {{tools}} (Lighthouse, axe DevTools)
1095
- - Manual: Keyboard-only navigation testing
1096
- - Screen reader: {{tool}} testing
1097
-
1098
- </action>
1099
-
1100
- <template-output>responsive_accessibility_strategy</template-output>
1101
- </step>
1102
-
1103
- <step n="10" goal="Finalize UX design specification">
1104
- <critical>The document is built progressively throughout - now finalize and offer extensions</critical>
1105
-
1106
- <action>Ensure document is complete with all template-output sections filled</action>
1107
-
1108
- <action>Generate completion summary:
1109
-
1110
- "Excellent work! Your UX Design Specification is complete.
1111
-
1112
- **What we created together:**
1113
-
1114
- - **Design System:** {{choice}} with {{custom_component_count}} custom components
1115
- - **Visual Foundation:** {{color_theme}} color theme with {{typography_choice}} typography and spacing system
1116
- - **Design Direction:** {{chosen_direction}} - {{why_it_fits}}
1117
- - **User Journeys:** {{journey_count}} flows designed with clear navigation paths
1118
- - **UX Patterns:** {{pattern_count}} consistency rules established for cohesive experience
1119
- - **Responsive Strategy:** {{breakpoint_count}} breakpoints with adaptation patterns for all device sizes
1120
- - **Accessibility:** {{WCAG_level}} compliance requirements defined
1121
-
1122
- **Your Deliverables:**
1123
- - UX Design Document: {default_output_file}
1124
- - Interactive Color Themes: {color_themes_html}
1125
- - Design Direction Mockups: {design_directions_html}
1126
-
1127
- **What happens next:**
1128
- - Designers can create high-fidelity mockups from this foundation
1129
- - Developers can implement with clear UX guidance and rationale
1130
- - All your design decisions are documented with reasoning for future reference
1131
-
1132
- You've made thoughtful choices through visual collaboration that will create a great user experience. Ready for design refinement and implementation!"
1133
-
1134
- </action>
1135
-
1136
- <action>Save final document to {default_output_file}</action>
1137
-
1138
- <check if="standalone_mode != true">
1139
- <action>Load the FULL file: {output_folder}/bmm-workflow-status.yaml</action>
1140
- <action>Find workflow_status key "create-design"</action>
1141
- <critical>ONLY write the file path as the status value - no other text, notes, or metadata</critical>
1142
- <action>Update workflow_status["create-design"] = "{default_output_file}"</action>
1143
- <action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
1144
-
1145
- <action>Find first non-completed workflow in workflow_status (next workflow to do)</action>
1146
- <action>Determine next agent from path file based on next workflow</action>
1147
-
1148
- </check>
1149
-
1150
- <ask>🎨 **One more thing!** Want to see your design come to life?
1151
-
1152
- I can generate interactive HTML mockups using all your design choices:
1153
-
1154
- **1. Key Screens Showcase** - 6-8 panels showing your app's main screens (home, core action, settings, etc.) with your chosen:
1155
-
1156
- - Color theme and typography
1157
- - Design direction and layout
1158
- - Component styles
1159
- - Navigation patterns
1160
-
1161
- **2. User Journey Visualization** - Step-by-step HTML mockup of one of your critical user journeys with:
1162
-
1163
- - Each screen in the flow
1164
- - Interactive transitions
1165
- - Success states and feedback
1166
- - All your design decisions applied
1167
-
1168
- **3. Something else** - Tell me what you want to see!
1169
-
1170
- **4. Skip for now** - I'll just finalize the documentation
1171
-
1172
- What would you like?</ask>
1173
-
1174
- <check if="user_choice == 'key_screens' or similar">
1175
- <action>Generate comprehensive multi-panel HTML showcase:
1176
-
1177
- Create: {final_app_showcase_html}
1178
-
1179
- Include 6-8 screens representing:
1180
- - Landing/Home screen
1181
- - Main dashboard or feed
1182
- - Core action screen (primary user task)
1183
- - Profile or settings
1184
- - Create/Edit screen
1185
- - Results or success state
1186
- - Modal/dialog examples
1187
- - Empty states
1188
-
1189
- Apply ALL design decisions:
1190
- - {{chosen_color_theme}} with exact colors
1191
- - {{chosen_design_direction}} layout and hierarchy
1192
- - {{design_system}} components styled per decisions
1193
- - {{typography_system}} applied consistently
1194
- - {{spacing_system}} and responsive breakpoints
1195
- - {{ux_patterns}} for consistency
1196
- - {{accessibility_requirements}}
1197
-
1198
- Make it interactive:
1199
- - Hover states on buttons
1200
- - Tab switching where applicable
1201
- - Modal overlays
1202
- - Form validation states
1203
- - Navigation highlighting
1204
-
1205
- Output as single HTML file with inline CSS and minimal JavaScript
1206
- </action>
1207
-
1208
- <output>✨ **Created: {final_app_showcase_html}**
1209
-
1210
- Open this file in your browser to see {{project_name}} come to life with all your design choices applied! You can:
1211
-
1212
- - Navigate between screens
1213
- - See hover and interactive states
1214
- - Experience your chosen design direction
1215
- - Share with stakeholders for feedback
1216
-
1217
- This showcases exactly what developers will build.</output>
1218
- </check>
1219
-
1220
- <check if="user_choice == 'user_journey' or similar">
1221
- <ask>Which user journey would you like to visualize?
1222
-
1223
- {{list_of_designed_journeys}}
1224
-
1225
- Pick one, or tell me which flow you want to see!</ask>
1226
-
1227
- <action>Generate step-by-step journey HTML:
1228
-
1229
- Create: {journey_visualization_html}
1230
-
1231
- For {{selected_journey}}:
1232
- - Show each step as a full screen
1233
- - Include navigation between steps (prev/next buttons)
1234
- - Apply all design decisions consistently
1235
- - Show state changes and feedback
1236
- - Include success/error scenarios
1237
- - Annotate design decisions on hover
1238
-
1239
- Make it feel like a real user flow through the app
1240
- </action>
1241
-
1242
- <output>✨ **Created: {journey_visualization_html}**
1243
-
1244
- Walk through the {{selected_journey}} flow step-by-step in your browser! This shows the exact experience users will have, with all your UX decisions applied.</output>
1245
- </check>
1246
-
1247
- <check if="user_choice == 'something_else'">
1248
- <ask>Tell me what you'd like to visualize! I can generate HTML mockups for:
1249
- - Specific screens or features
1250
- - Interactive components
1251
- - Responsive breakpoint comparisons
1252
- - Accessibility features in action
1253
- - Animation and transition concepts
1254
- - Whatever you envision!
1255
-
1256
- What should I create?</ask>
1257
-
1258
- <action>Generate custom HTML visualization based on user request:
1259
- - Parse what they want to see
1260
- - Apply all relevant design decisions
1261
- - Create interactive HTML mockup
1262
- - Make it visually compelling and functional
1263
- </action>
1264
-
1265
- <output>✨ **Created: {{custom_visualization_file}}**
1266
-
1267
- {{description_of_what_was_created}}
1268
-
1269
- Open in browser to explore!</output>
1270
- </check>
1271
-
1272
- <output>**✅ UX Design Specification Complete!**
1273
-
1274
- **Core Deliverables:**
1275
-
1276
- - ✅ UX Design Specification: {default_output_file}
1277
- - ✅ Color Theme Visualizer: {color_themes_html}
1278
- - ✅ Design Direction Mockups: {design_directions_html}
1279
-
1280
- **Recommended Next Steps:**
1281
-
1282
- {{#if tracking_mode == true}}
1283
-
1284
- - **Next required:** {{next_workflow}} ({{next_agent}} agent)
1285
- - **Optional:** Run validation with \*validate-design, or generate additional UX artifacts (wireframes, prototypes, etc.)
1286
-
1287
- Check status anytime with: `workflow-status`
1288
- {{else}}
1289
- Since no workflow is in progress:
1290
-
1291
- - Run validation checklist with \*validate-design (recommended)
1292
- - Refer to the BMM workflow guide if unsure what to do next
1293
- - Or run `workflow-init` to create a workflow path and get guided next steps
1294
-
1295
- **Optional Follow-Up Workflows:**
1296
-
1297
- - Wireframe Generation / Figma Design / Interactive Prototype workflows
1298
- - Component Showcase / AI Frontend Prompt workflows
1299
- - Solution Architecture workflow (with UX context)
1300
- {{/if}}
1301
- </output>
1302
-
1303
- <template-output>completion_summary</template-output>
1304
- </step>
1305
-
1306
- </workflow>