bmad-method 6.0.4 → 6.0.5-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. package/.augment/code_review_guidelines.yaml +2 -42
  2. package/.claude/skills/bmad-os-findings-triage/SKILL.md +6 -0
  3. package/.claude/skills/bmad-os-findings-triage/prompts/agent-prompt.md +104 -0
  4. package/.claude/skills/bmad-os-findings-triage/prompts/instructions.md +286 -0
  5. package/.claude/skills/bmad-os-review-pr/SKILL.md +1 -1
  6. package/.claude/skills/bmad-os-review-pr/prompts/instructions.md +63 -6
  7. package/.claude/skills/bmad-os-review-prompt/SKILL.md +177 -0
  8. package/.github/workflows/publish.yaml +133 -0
  9. package/CONTRIBUTING.md +1 -1
  10. package/README_CN.md +121 -0
  11. package/docs/_STYLE_GUIDE.md +10 -10
  12. package/docs/explanation/brainstorming.md +1 -1
  13. package/docs/explanation/party-mode.md +1 -1
  14. package/docs/explanation/preventing-agent-conflicts.md +1 -1
  15. package/docs/explanation/project-context.md +15 -15
  16. package/docs/explanation/quick-flow.md +9 -9
  17. package/docs/how-to/established-projects.md +7 -7
  18. package/docs/how-to/get-answers-about-bmad.md +2 -2
  19. package/docs/how-to/install-bmad.md +16 -6
  20. package/docs/how-to/project-context.md +2 -2
  21. package/docs/how-to/quick-fixes.md +5 -5
  22. package/docs/how-to/shard-large-documents.md +1 -1
  23. package/docs/how-to/upgrade-to-v6.md +8 -5
  24. package/docs/index.md +1 -1
  25. package/docs/reference/agents.md +14 -14
  26. package/docs/reference/commands.md +64 -70
  27. package/docs/reference/testing.md +1 -1
  28. package/docs/reference/workflow-map.md +19 -19
  29. package/docs/tutorials/getting-started.md +34 -34
  30. package/docs/zh-cn/404.md +9 -0
  31. package/docs/zh-cn/_STYLE_GUIDE.md +370 -0
  32. package/docs/zh-cn/explanation/advanced-elicitation.md +62 -0
  33. package/docs/zh-cn/explanation/adversarial-review.md +71 -0
  34. package/docs/zh-cn/explanation/brainstorming.md +43 -0
  35. package/docs/zh-cn/explanation/established-projects-faq.md +60 -0
  36. package/docs/zh-cn/explanation/party-mode.md +79 -0
  37. package/docs/zh-cn/explanation/preventing-agent-conflicts.md +137 -0
  38. package/docs/zh-cn/explanation/project-context.md +176 -0
  39. package/docs/zh-cn/explanation/quick-flow.md +93 -0
  40. package/docs/zh-cn/explanation/why-solutioning-matters.md +90 -0
  41. package/docs/zh-cn/how-to/customize-bmad.md +182 -0
  42. package/docs/zh-cn/how-to/established-projects.md +134 -0
  43. package/docs/zh-cn/how-to/get-answers-about-bmad.md +144 -0
  44. package/docs/zh-cn/how-to/install-bmad.md +105 -0
  45. package/docs/zh-cn/how-to/non-interactive-installation.md +181 -0
  46. package/docs/zh-cn/how-to/project-context.md +152 -0
  47. package/docs/zh-cn/how-to/quick-fixes.md +140 -0
  48. package/docs/zh-cn/how-to/shard-large-documents.md +86 -0
  49. package/docs/zh-cn/how-to/upgrade-to-v6.md +120 -0
  50. package/docs/zh-cn/index.md +69 -0
  51. package/docs/zh-cn/reference/agents.md +41 -0
  52. package/docs/zh-cn/reference/commands.md +166 -0
  53. package/docs/zh-cn/reference/modules.md +94 -0
  54. package/docs/zh-cn/reference/testing.md +122 -0
  55. package/docs/zh-cn/reference/workflow-map.md +104 -0
  56. package/docs/zh-cn/roadmap.mdx +152 -0
  57. package/docs/zh-cn/tutorials/getting-started.md +300 -0
  58. package/package.json +1 -1
  59. package/src/bmm/agents/analyst.agent.yaml +1 -1
  60. package/src/bmm/agents/bmad-skill-manifest.yaml +39 -0
  61. package/src/bmm/agents/dev.agent.yaml +2 -2
  62. package/src/bmm/agents/pm.agent.yaml +1 -1
  63. package/src/bmm/agents/qa.agent.yaml +1 -1
  64. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +6 -2
  65. package/src/bmm/agents/sm.agent.yaml +4 -4
  66. package/src/bmm/agents/tech-writer/bmad-skill-manifest.yaml +3 -0
  67. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +1 -1
  68. package/src/bmm/module-help.csv +11 -10
  69. package/src/bmm/workflows/1-analysis/create-product-brief/bmad-skill-manifest.yaml +3 -0
  70. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +1 -1
  71. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +1 -1
  72. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +1 -1
  73. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +1 -1
  74. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +1 -1
  75. package/src/bmm/workflows/1-analysis/research/bmad-skill-manifest.yaml +14 -0
  76. package/src/bmm/workflows/2-plan-workflows/create-prd/bmad-skill-manifest.yaml +14 -0
  77. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +1 -1
  78. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +1 -1
  79. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +1 -1
  80. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +1 -1
  81. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +1 -1
  82. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +1 -1
  83. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +1 -1
  84. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +1 -1
  85. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +1 -1
  86. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +1 -1
  87. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +1 -1
  88. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +1 -1
  89. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +1 -1
  90. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +1 -1
  91. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +1 -1
  92. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +1 -1
  93. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +1 -1
  94. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +1 -1
  95. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +1 -1
  96. package/src/bmm/workflows/2-plan-workflows/create-ux-design/bmad-skill-manifest.yaml +3 -0
  97. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +1 -1
  98. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +2 -2
  99. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +2 -2
  100. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +2 -2
  101. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +2 -2
  102. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +2 -2
  103. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +2 -2
  104. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +2 -2
  105. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +2 -2
  106. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +2 -2
  107. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +2 -2
  108. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +2 -2
  109. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +1 -1
  110. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/bmad-skill-manifest.yaml +3 -0
  111. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +1 -1
  112. package/src/bmm/workflows/3-solutioning/create-architecture/bmad-skill-manifest.yaml +3 -0
  113. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +2 -2
  114. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +2 -2
  115. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +2 -2
  116. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +2 -2
  117. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +2 -2
  118. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +2 -2
  119. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +1 -1
  120. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/bmad-skill-manifest.yaml +3 -0
  121. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +1 -1
  122. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +1 -1
  123. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +1 -1
  124. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +2 -2
  125. package/src/bmm/workflows/4-implementation/code-review/bmad-skill-manifest.yaml +3 -0
  126. package/src/bmm/workflows/4-implementation/code-review/discover-inputs.md +88 -0
  127. package/src/bmm/workflows/4-implementation/code-review/workflow.md +271 -0
  128. package/src/bmm/workflows/4-implementation/correct-course/bmad-skill-manifest.yaml +3 -0
  129. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +1 -1
  130. package/src/bmm/workflows/4-implementation/correct-course/{instructions.md → workflow.md} +79 -12
  131. package/src/bmm/workflows/4-implementation/create-story/bmad-skill-manifest.yaml +3 -0
  132. package/src/bmm/workflows/4-implementation/create-story/checklist.md +9 -10
  133. package/src/bmm/workflows/4-implementation/create-story/discover-inputs.md +88 -0
  134. package/src/bmm/workflows/4-implementation/create-story/workflow.md +388 -0
  135. package/src/bmm/workflows/4-implementation/dev-story/bmad-skill-manifest.yaml +3 -0
  136. package/src/bmm/workflows/4-implementation/dev-story/{instructions.xml → workflow.md} +49 -2
  137. package/src/bmm/workflows/4-implementation/retrospective/bmad-skill-manifest.yaml +3 -0
  138. package/src/bmm/workflows/4-implementation/retrospective/{instructions.md → workflow.md} +64 -23
  139. package/src/bmm/workflows/4-implementation/sprint-planning/bmad-skill-manifest.yaml +3 -0
  140. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +1 -0
  141. package/src/bmm/workflows/4-implementation/sprint-planning/{instructions.md → workflow.md} +55 -10
  142. package/src/bmm/workflows/4-implementation/sprint-status/bmad-skill-manifest.yaml +3 -0
  143. package/src/bmm/workflows/4-implementation/sprint-status/{instructions.md → workflow.md} +45 -8
  144. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/SKILL.md +6 -0
  145. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/bmad-skill-manifest.yaml +1 -0
  146. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-01-clarify-and-route.md +54 -0
  147. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-02-plan.md +39 -0
  148. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-03-implement.md +35 -0
  149. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-04-review.md +55 -0
  150. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-05-present.md +19 -0
  151. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/tech-spec-template.md +90 -0
  152. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/workflow.md +84 -0
  153. package/src/bmm/workflows/bmad-quick-flow/quick-dev/bmad-skill-manifest.yaml +3 -0
  154. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +8 -14
  155. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +1 -1
  156. package/src/bmm/workflows/bmad-quick-flow/quick-spec/bmad-skill-manifest.yaml +3 -0
  157. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +4 -6
  158. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +1 -1
  159. package/src/bmm/workflows/document-project/bmad-skill-manifest.yaml +3 -0
  160. package/src/bmm/workflows/document-project/instructions.md +5 -7
  161. package/src/bmm/workflows/document-project/workflow.md +39 -0
  162. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -1
  163. package/src/bmm/workflows/document-project/workflows/deep-dive-workflow.md +42 -0
  164. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1
  165. package/src/bmm/workflows/document-project/workflows/full-scan-workflow.md +42 -0
  166. package/src/bmm/workflows/generate-project-context/bmad-skill-manifest.yaml +3 -0
  167. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +2 -2
  168. package/src/bmm/workflows/qa-generate-e2e-tests/bmad-skill-manifest.yaml +3 -0
  169. package/src/bmm/workflows/qa-generate-e2e-tests/{instructions.md → workflow.md} +40 -7
  170. package/src/core/agents/bmad-master.agent.yaml +1 -1
  171. package/src/core/agents/bmad-skill-manifest.yaml +3 -0
  172. package/src/core/module-help.csv +3 -3
  173. package/src/core/module.yaml +1 -1
  174. package/src/core/tasks/bmad-help/SKILL.md +6 -0
  175. package/src/core/tasks/bmad-help/bmad-skill-manifest.yaml +1 -0
  176. package/src/core/tasks/{help.md → bmad-help/workflow.md} +6 -4
  177. package/src/core/tasks/bmad-review-adversarial-general/SKILL.md +6 -0
  178. package/src/core/tasks/bmad-review-adversarial-general/bmad-skill-manifest.yaml +1 -0
  179. package/src/core/tasks/bmad-review-adversarial-general/workflow.md +32 -0
  180. package/src/core/tasks/bmad-review-edge-case-hunter/SKILL.md +6 -0
  181. package/src/core/tasks/bmad-review-edge-case-hunter/bmad-skill-manifest.yaml +1 -0
  182. package/src/core/tasks/bmad-review-edge-case-hunter/workflow.md +62 -0
  183. package/src/core/tasks/bmad-skill-manifest.yaml +19 -0
  184. package/src/core/workflows/advanced-elicitation/bmad-skill-manifest.yaml +3 -0
  185. package/src/core/workflows/advanced-elicitation/workflow.md +138 -0
  186. package/src/core/workflows/brainstorming/bmad-skill-manifest.yaml +3 -0
  187. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +1 -1
  188. package/src/core/workflows/brainstorming/workflow.md +1 -1
  189. package/src/core/workflows/party-mode/bmad-skill-manifest.yaml +3 -0
  190. package/src/utility/agent-components/activation-steps.txt +2 -2
  191. package/src/utility/agent-components/handler-multi.txt +1 -2
  192. package/test/adversarial-review-tests/README.md +3 -3
  193. package/test/adversarial-review-tests/test-cases.yaml +2 -2
  194. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +1 -1
  195. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +1 -1
  196. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +1 -2
  197. package/test/fixtures/file-refs-csv/valid/bmm-style.csv +1 -1
  198. package/test/test-file-refs-csv.js +1 -1
  199. package/test/test-install-to-bmad.js +154 -0
  200. package/test/test-installation-components.js +1586 -2
  201. package/test/test-workflow-path-regex.js +88 -0
  202. package/tools/cli/installers/lib/core/installer.js +34 -1
  203. package/tools/cli/installers/lib/core/manifest-generator.js +328 -35
  204. package/tools/cli/installers/lib/ide/_base-ide.js +24 -15
  205. package/tools/cli/installers/lib/ide/_config-driven.js +472 -53
  206. package/tools/cli/installers/lib/ide/manager.js +23 -61
  207. package/tools/cli/installers/lib/ide/platform-codes.yaml +108 -30
  208. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +1 -0
  209. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +7 -0
  210. package/tools/cli/installers/lib/ide/shared/path-utils.js +68 -3
  211. package/tools/cli/installers/lib/ide/shared/skill-manifest.js +90 -0
  212. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +2 -0
  213. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +6 -145
  214. package/tools/cli/installers/lib/modules/manager.js +9 -132
  215. package/tools/cli/lib/agent/compiler.js +1 -10
  216. package/tools/cli/lib/agent-analyzer.js +2 -14
  217. package/tools/cli/lib/yaml-xml-builder.js +1 -18
  218. package/tools/docs/native-skills-migration-checklist.md +281 -0
  219. package/tools/platform-codes.yaml +1 -1
  220. package/tools/schema/agent.js +1 -3
  221. package/tools/validate-file-refs.js +2 -0
  222. package/website/astro.config.mjs +24 -3
  223. package/website/src/content/config.ts +2 -1
  224. package/website/src/content/i18n/zh-CN.json +28 -0
  225. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +0 -227
  226. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -43
  227. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -53
  228. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +0 -346
  229. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -52
  230. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -20
  231. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -52
  232. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -47
  233. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +0 -25
  234. package/src/bmm/workflows/document-project/workflow.yaml +0 -22
  235. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  236. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  237. package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +0 -42
  238. package/src/core/tasks/review-adversarial-general.xml +0 -49
  239. package/src/core/tasks/review-edge-case-hunter.xml +0 -63
  240. package/src/core/tasks/workflow.xml +0 -235
  241. package/src/core/workflows/advanced-elicitation/workflow.xml +0 -118
  242. package/src/utility/agent-components/handler-validate-workflow.txt +0 -7
  243. package/src/utility/agent-components/handler-workflow.txt +0 -10
  244. package/tools/cli/installers/lib/ide/codex.js +0 -440
  245. package/tools/cli/installers/lib/ide/github-copilot.js +0 -699
  246. package/tools/cli/installers/lib/ide/kilo.js +0 -269
  247. package/tools/cli/installers/lib/ide/rovodev.js +0 -257
  248. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +0 -14
  249. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +0 -15
  250. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +0 -13
  251. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +0 -5
@@ -0,0 +1,3 @@
1
+ canonicalId: bmad-create-product-brief
2
+ type: workflow
3
+ description: "Create product brief through collaborative discovery"
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brie
7
7
  outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brie
7
7
  outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brie
7
7
  outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brie
7
7
  outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -128,7 +128,7 @@ Recap that the brief captures everything needed to guide subsequent product deve
128
128
 
129
129
  ### 5. Suggest next steps
130
130
 
131
- Product Brief complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
131
+ Product Brief complete. Invoke the `bmad-help` skill.
132
132
 
133
133
  ---
134
134
 
@@ -0,0 +1,14 @@
1
+ workflow-domain-research.md:
2
+ canonicalId: bmad-domain-research
3
+ type: workflow
4
+ description: "Conduct domain and industry research. Use when the user says 'lets create a research report on [domain or industry]'"
5
+
6
+ workflow-market-research.md:
7
+ canonicalId: bmad-market-research
8
+ type: workflow
9
+ description: "Conduct market research on competition and customers. Use when the user says 'create a market research report about [business idea]'"
10
+
11
+ workflow-technical-research.md:
12
+ canonicalId: bmad-technical-research
13
+ type: workflow
14
+ description: "Conduct technical research on technologies and architecture. Use when the user says 'create a technical research report on [topic]'"
@@ -0,0 +1,14 @@
1
+ workflow-create-prd.md:
2
+ canonicalId: bmad-create-prd
3
+ type: workflow
4
+ description: "Create a PRD from scratch. Use when the user says 'lets create a product requirements document' or 'I want to create a new PRD'"
5
+
6
+ workflow-edit-prd.md:
7
+ canonicalId: bmad-edit-prd
8
+ type: workflow
9
+ description: "Edit an existing PRD. Use when the user says 'edit this PRD'"
10
+
11
+ workflow-validate-prd.md:
12
+ canonicalId: bmad-validate-prd
13
+ type: workflow
14
+ description: "Validate a PRD against standards. Use when the user says 'validate this PRD' or 'run PRD validation'"
@@ -11,7 +11,7 @@ projectTypesCSV: '../data/project-types.csv'
11
11
  domainComplexityCSV: '../data/domain-complexity.csv'
12
12
 
13
13
  # Task References
14
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
14
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
15
15
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
16
16
  ---
17
17
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -8,7 +8,7 @@ outputFile: '{planning_artifacts}/prd.md'
8
8
  domainComplexityCSV: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv'
9
9
 
10
10
  # Task References
11
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
11
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
12
12
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
13
13
  ---
14
14
 
@@ -10,7 +10,7 @@ outputFile: '{planning_artifacts}/prd.md'
10
10
  projectTypesCSV: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv'
11
11
 
12
12
  # Task References
13
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
13
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
14
14
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
15
15
  ---
16
16
 
@@ -10,7 +10,7 @@ outputFile: '{planning_artifacts}/prd.md'
10
10
  projectTypesCSV: '../data/project-types.csv'
11
11
 
12
12
  # Task References
13
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
13
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
14
14
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
15
15
  ---
16
16
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -7,7 +7,7 @@ nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/st
7
7
  outputFile: '{planning_artifacts}/prd.md'
8
8
 
9
9
  # Task References
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
12
12
  ---
13
13
 
@@ -8,7 +8,7 @@ outputFile: '{planning_artifacts}/prd.md'
8
8
  purposeFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
9
9
 
10
10
  # Task References
11
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
11
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
12
12
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
13
13
  ---
14
14
 
@@ -87,7 +87,7 @@ Offer validation workflows to ensure PRD is ready for implementation:
87
87
 
88
88
  ### 4. Suggest Next Workflows
89
89
 
90
- PRD complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
90
+ PRD complete. Invoke the `bmad-help` skill.
91
91
 
92
92
  ### 5. Final Completion Confirmation
93
93
 
@@ -5,7 +5,7 @@ description: 'Discovery & Understanding - Understand what user wants to edit and
5
5
  # File references (ONLY variables used in this step)
6
6
  altStepFile: './step-e-01b-legacy-conversion.md'
7
7
  prdPurpose: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
8
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
8
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
9
9
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
10
10
  ---
11
11
 
@@ -7,7 +7,7 @@ nextStepFile: './step-e-03-edit.md'
7
7
  prdFile: '{prd_file_path}'
8
8
  validationReport: '{validation_report_path}' # If provided
9
9
  prdPurpose: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
10
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
10
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
11
11
  ---
12
12
 
13
13
  # Step E-2: Deep Review & Analysis
@@ -4,7 +4,7 @@ description: 'Document Discovery & Confirmation - Handle fresh context validatio
4
4
 
5
5
  # File references (ONLY variables used in this step)
6
6
  nextStepFile: './step-v-02-format-detection.md'
7
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
7
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
8
8
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
9
9
  prdPurpose: '../data/prd-purpose.md'
10
10
  ---
@@ -6,7 +6,7 @@ description: 'SMART Requirements Validation - Validate Functional Requirements m
6
6
  nextStepFile: './step-v-11-holistic-quality-validation.md'
7
7
  prdFile: '{prd_file_path}'
8
8
  validationReportPath: '{validation_report_path}'
9
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
9
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
10
10
  ---
11
11
 
12
12
  # Step 10: SMART Requirements Validation
@@ -6,7 +6,7 @@ description: 'Holistic Quality Assessment - Assess PRD as cohesive, compelling d
6
6
  nextStepFile: './step-v-12-completeness-validation.md'
7
7
  prdFile: '{prd_file_path}'
8
8
  validationReportPath: '{validation_report_path}'
9
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
9
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
10
10
  ---
11
11
 
12
12
  # Step 11: Holistic Quality Assessment
@@ -197,7 +197,7 @@ Display:
197
197
  - **IF X (Exit):**
198
198
  - Display: "**Validation Report Saved:** {validationReportPath}"
199
199
  - Display: "**Summary:** {overall status} - {recommendation}"
200
- - PRD Validation complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
200
+ - PRD Validation complete. Invoke the `bmad-help` skill.
201
201
 
202
202
  - **IF Any other:** Help user, then redisplay menu
203
203
 
@@ -0,0 +1,3 @@
1
+ canonicalId: bmad-create-ux-design
2
+ type: workflow
3
+ description: "Plan UX patterns and design specifications"
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -161,7 +161,7 @@ Show the generated core experience content and present choices:
161
161
 
162
162
  #### If 'A' (Advanced Elicitation):
163
163
 
164
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current core experience content
164
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current core experience content
165
165
  - Process the enhanced experience insights that come back
166
166
  - Ask user: "Accept these improvements to the core experience definition? (y/n)"
167
167
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -164,7 +164,7 @@ Show the generated emotional response content and present choices:
164
164
 
165
165
  #### If 'A' (Advanced Elicitation):
166
166
 
167
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current emotional response content
167
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current emotional response content
168
168
  - Process the enhanced emotional insights that come back
169
169
  - Ask user: "Accept these improvements to the emotional response definition? (y/n)"
170
170
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -179,7 +179,7 @@ Show the generated inspiration analysis content and present choices:
179
179
 
180
180
  #### If 'A' (Advanced Elicitation):
181
181
 
182
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current inspiration analysis content
182
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current inspiration analysis content
183
183
  - Process the enhanced pattern insights that come back
184
184
  - Ask user: "Accept these improvements to the inspiration analysis? (y/n)"
185
185
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -197,7 +197,7 @@ Show the generated design system content and present choices:
197
197
 
198
198
  #### If 'A' (Advanced Elicitation):
199
199
 
200
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current design system content
200
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current design system content
201
201
  - Process the enhanced design system insights that come back
202
202
  - Ask user: "Accept these improvements to the design system decision? (y/n)"
203
203
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -199,7 +199,7 @@ Show the generated defining experience content and present choices:
199
199
 
200
200
  #### If 'A' (Advanced Elicitation):
201
201
 
202
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current defining experience content
202
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current defining experience content
203
203
  - Process the enhanced experience insights that come back
204
204
  - Ask user: "Accept these improvements to the defining experience? (y/n)"
205
205
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -169,7 +169,7 @@ Show the generated visual foundation content and present choices:
169
169
 
170
170
  #### If 'A' (Advanced Elicitation):
171
171
 
172
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current visual foundation content
172
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current visual foundation content
173
173
  - Process the enhanced visual insights that come back
174
174
  - Ask user: "Accept these improvements to the visual foundation? (y/n)"
175
175
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -169,7 +169,7 @@ Show the generated design direction content and present choices:
169
169
 
170
170
  #### If 'A' (Advanced Elicitation):
171
171
 
172
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current design direction content
172
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current design direction content
173
173
  - Process the enhanced design insights that come back
174
174
  - Ask user: "Accept these improvements to the design direction? (y/n)"
175
175
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -187,7 +187,7 @@ Show the generated user journey content and present choices:
187
187
 
188
188
  #### If 'A' (Advanced Elicitation):
189
189
 
190
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current user journey content
190
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current user journey content
191
191
  - Process the enhanced journey insights that come back
192
192
  - Ask user: "Accept these improvements to the user journeys? (y/n)"
193
193
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -193,7 +193,7 @@ Show the generated component strategy content and present choices:
193
193
 
194
194
  #### If 'A' (Advanced Elicitation):
195
195
 
196
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current component strategy content
196
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current component strategy content
197
197
  - Process the enhanced component insights that come back
198
198
  - Ask user: "Accept these improvements to the component strategy? (y/n)"
199
199
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -182,7 +182,7 @@ Show the generated UX patterns content and present choices:
182
182
 
183
183
  #### If 'A' (Advanced Elicitation):
184
184
 
185
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current UX patterns content
185
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current UX patterns content
186
186
  - Process the enhanced pattern insights that come back
187
187
  - Ask user: "Accept these improvements to the UX patterns? (y/n)"
188
188
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -30,7 +30,7 @@ This step will generate content and present choices:
30
30
 
31
31
  ## PROTOCOL INTEGRATION:
32
32
 
33
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
33
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
34
34
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
35
35
  - PROTOCOLS always return to this step's A/P/C menu
36
36
  - User accepts/rejects protocol changes before proceeding
@@ -209,7 +209,7 @@ Show the generated responsive and accessibility content and present choices:
209
209
 
210
210
  #### If 'A' (Advanced Elicitation):
211
211
 
212
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current responsive/accessibility content
212
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current responsive/accessibility content
213
213
  - Process the enhanced insights that come back
214
214
  - Ask user: "Accept these improvements to the responsive/accessibility strategy? (y/n)"
215
215
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -82,7 +82,7 @@ Update the main workflow status file:
82
82
 
83
83
  ### 3. Suggest Next Steps
84
84
 
85
- UX Design complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
85
+ UX Design complete. Invoke the `bmad-help` skill.
86
86
 
87
87
  ### 5. Final Completion Confirmation
88
88
 
@@ -0,0 +1,3 @@
1
+ canonicalId: bmad-check-implementation-readiness
2
+ type: workflow
3
+ description: "Validate PRD, UX, Architecture and Epics specs are complete"
@@ -109,7 +109,7 @@ The assessment found [number] issues requiring attention. Review the detailed re
109
109
 
110
110
  The implementation readiness workflow is now complete. The report contains all findings and recommendations for the user to consider.
111
111
 
112
- Implementation Readiness complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
112
+ Implementation Readiness complete. Invoke the `bmad-help` skill.
113
113
 
114
114
  ---
115
115
 
@@ -0,0 +1,3 @@
1
+ canonicalId: bmad-create-architecture
2
+ type: workflow
3
+ description: "Create architecture solution design decisions for AI agent consistency"
@@ -31,7 +31,7 @@ This step will generate content and present choices:
31
31
 
32
32
  ## PROTOCOL INTEGRATION:
33
33
 
34
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
34
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
35
35
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
36
36
  - PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
37
37
  - User accepts/rejects protocol changes before proceeding
@@ -170,7 +170,7 @@ Show the generated content and present choices:
170
170
 
171
171
  #### If 'A' (Advanced Elicitation):
172
172
 
173
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with the current context analysis
173
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with the current context analysis
174
174
  - Process the enhanced architectural insights that come back
175
175
  - Ask user: "Accept these enhancements to the project context analysis? (y/n)"
176
176
  - If yes: Update content with improvements, then return to A/P/C menu
@@ -31,7 +31,7 @@ This step will generate content and present choices:
31
31
 
32
32
  ## PROTOCOL INTEGRATION:
33
33
 
34
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
34
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
35
35
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
36
36
  - PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
37
37
  - User accepts/rejects protocol changes before proceeding
@@ -276,7 +276,7 @@ Show the generated content and present choices:
276
276
 
277
277
  #### If 'A' (Advanced Elicitation):
278
278
 
279
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with current starter analysis
279
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with current starter analysis
280
280
  - Process enhanced insights about starter options or custom approaches
281
281
  - Ask user: "Accept these changes to the starter template evaluation? (y/n)"
282
282
  - If yes: Update content, then return to A/P/C menu
@@ -32,7 +32,7 @@ This step will generate content and present choices for each decision category:
32
32
 
33
33
  ## PROTOCOL INTEGRATION:
34
34
 
35
- - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
35
+ - When 'A' selected: Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md
36
36
  - When 'P' selected: Read fully and follow: {project-root}/_bmad/core/workflows/party-mode/workflow.md
37
37
  - PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
38
38
  - User accepts/rejects protocol changes before proceeding
@@ -264,7 +264,7 @@ Show the generated decisions content and present choices:
264
264
 
265
265
  #### If 'A' (Advanced Elicitation):
266
266
 
267
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with specific decision categories
267
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with specific decision categories
268
268
  - Process enhanced insights about particular decisions
269
269
  - Ask user: "Accept these enhancements to the architectural decisions? (y/n)"
270
270
  - If yes: Update content, then return to A/P/C menu