bmad-method 6.0.3 → 6.0.5-next.0

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 (271) 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/.claude/skills/bmad-os-root-cause-analysis/SKILL.md +12 -0
  9. package/.claude/skills/bmad-os-root-cause-analysis/prompts/instructions.md +74 -0
  10. package/.github/ISSUE_TEMPLATE/config.yaml +1 -1
  11. package/.github/ISSUE_TEMPLATE/documentation.yaml +1 -1
  12. package/.github/workflows/publish.yaml +243 -0
  13. package/CHANGELOG.md +32 -0
  14. package/CONTRIBUTING.md +1 -1
  15. package/README.md +8 -8
  16. package/README_CN.md +121 -0
  17. package/docs/_STYLE_GUIDE.md +10 -10
  18. package/docs/explanation/brainstorming.md +1 -1
  19. package/docs/explanation/party-mode.md +1 -1
  20. package/docs/explanation/preventing-agent-conflicts.md +1 -1
  21. package/docs/explanation/project-context.md +15 -15
  22. package/docs/explanation/quick-flow.md +9 -9
  23. package/docs/how-to/established-projects.md +7 -7
  24. package/docs/how-to/get-answers-about-bmad.md +2 -2
  25. package/docs/how-to/install-bmad.md +16 -6
  26. package/docs/how-to/project-context.md +2 -2
  27. package/docs/how-to/quick-fixes.md +5 -5
  28. package/docs/how-to/shard-large-documents.md +1 -1
  29. package/docs/how-to/upgrade-to-v6.md +8 -5
  30. package/docs/index.md +2 -2
  31. package/docs/reference/agents.md +14 -14
  32. package/docs/reference/commands.md +64 -70
  33. package/docs/reference/testing.md +1 -1
  34. package/docs/reference/workflow-map.md +19 -19
  35. package/docs/tutorials/getting-started.md +34 -34
  36. package/docs/zh-cn/404.md +9 -0
  37. package/docs/zh-cn/_STYLE_GUIDE.md +370 -0
  38. package/docs/zh-cn/explanation/advanced-elicitation.md +62 -0
  39. package/docs/zh-cn/explanation/adversarial-review.md +71 -0
  40. package/docs/zh-cn/explanation/brainstorming.md +43 -0
  41. package/docs/zh-cn/explanation/established-projects-faq.md +60 -0
  42. package/docs/zh-cn/explanation/party-mode.md +79 -0
  43. package/docs/zh-cn/explanation/preventing-agent-conflicts.md +137 -0
  44. package/docs/zh-cn/explanation/project-context.md +176 -0
  45. package/docs/zh-cn/explanation/quick-flow.md +93 -0
  46. package/docs/zh-cn/explanation/why-solutioning-matters.md +90 -0
  47. package/docs/zh-cn/how-to/customize-bmad.md +182 -0
  48. package/docs/zh-cn/how-to/established-projects.md +134 -0
  49. package/docs/zh-cn/how-to/get-answers-about-bmad.md +144 -0
  50. package/docs/zh-cn/how-to/install-bmad.md +105 -0
  51. package/docs/zh-cn/how-to/non-interactive-installation.md +181 -0
  52. package/docs/zh-cn/how-to/project-context.md +152 -0
  53. package/docs/zh-cn/how-to/quick-fixes.md +140 -0
  54. package/docs/zh-cn/how-to/shard-large-documents.md +86 -0
  55. package/docs/zh-cn/how-to/upgrade-to-v6.md +120 -0
  56. package/docs/zh-cn/index.md +69 -0
  57. package/docs/zh-cn/reference/agents.md +41 -0
  58. package/docs/zh-cn/reference/commands.md +166 -0
  59. package/docs/zh-cn/reference/modules.md +94 -0
  60. package/docs/zh-cn/reference/testing.md +122 -0
  61. package/docs/zh-cn/reference/workflow-map.md +104 -0
  62. package/docs/zh-cn/roadmap.mdx +152 -0
  63. package/docs/zh-cn/tutorials/getting-started.md +300 -0
  64. package/package.json +1 -1
  65. package/src/bmm/agents/analyst.agent.yaml +1 -1
  66. package/src/bmm/agents/bmad-skill-manifest.yaml +39 -0
  67. package/src/bmm/agents/dev.agent.yaml +2 -2
  68. package/src/bmm/agents/pm.agent.yaml +1 -1
  69. package/src/bmm/agents/qa.agent.yaml +1 -1
  70. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +6 -2
  71. package/src/bmm/agents/sm.agent.yaml +4 -4
  72. package/src/bmm/agents/tech-writer/bmad-skill-manifest.yaml +3 -0
  73. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +1 -1
  74. package/src/bmm/module-help.csv +11 -10
  75. package/src/bmm/workflows/1-analysis/create-product-brief/bmad-skill-manifest.yaml +3 -0
  76. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +1 -1
  77. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +1 -1
  78. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +1 -1
  79. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +1 -1
  80. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +1 -1
  81. package/src/bmm/workflows/1-analysis/research/bmad-skill-manifest.yaml +14 -0
  82. package/src/bmm/workflows/2-plan-workflows/create-prd/bmad-skill-manifest.yaml +14 -0
  83. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +1 -1
  84. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +1 -1
  85. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +1 -1
  86. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +1 -1
  87. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +1 -1
  88. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +1 -1
  89. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +1 -1
  90. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +1 -1
  91. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +1 -1
  92. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +1 -1
  93. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +1 -1
  94. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +1 -1
  95. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +1 -1
  96. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +1 -1
  97. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +1 -1
  98. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +1 -1
  99. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +1 -1
  100. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +1 -1
  101. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +1 -1
  102. package/src/bmm/workflows/2-plan-workflows/create-ux-design/bmad-skill-manifest.yaml +3 -0
  103. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +1 -1
  104. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +2 -2
  105. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +2 -2
  106. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +2 -2
  107. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +2 -2
  108. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +2 -2
  109. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +2 -2
  110. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +2 -2
  111. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +2 -2
  112. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +2 -2
  113. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +2 -2
  114. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +2 -2
  115. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +1 -1
  116. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/bmad-skill-manifest.yaml +3 -0
  117. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +1 -1
  118. package/src/bmm/workflows/3-solutioning/create-architecture/bmad-skill-manifest.yaml +3 -0
  119. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +2 -2
  120. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +2 -2
  121. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +2 -2
  122. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +2 -2
  123. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +2 -2
  124. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +2 -2
  125. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +1 -1
  126. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/bmad-skill-manifest.yaml +3 -0
  127. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +1 -1
  128. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +1 -1
  129. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +1 -1
  130. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +2 -2
  131. package/src/bmm/workflows/4-implementation/code-review/bmad-skill-manifest.yaml +3 -0
  132. package/src/bmm/workflows/4-implementation/code-review/discover-inputs.md +88 -0
  133. package/src/bmm/workflows/4-implementation/code-review/workflow.md +271 -0
  134. package/src/bmm/workflows/4-implementation/correct-course/bmad-skill-manifest.yaml +3 -0
  135. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +1 -1
  136. package/src/bmm/workflows/4-implementation/correct-course/{instructions.md → workflow.md} +79 -12
  137. package/src/bmm/workflows/4-implementation/create-story/bmad-skill-manifest.yaml +3 -0
  138. package/src/bmm/workflows/4-implementation/create-story/checklist.md +9 -10
  139. package/src/bmm/workflows/4-implementation/create-story/discover-inputs.md +88 -0
  140. package/src/bmm/workflows/4-implementation/create-story/workflow.md +388 -0
  141. package/src/bmm/workflows/4-implementation/dev-story/bmad-skill-manifest.yaml +3 -0
  142. package/src/bmm/workflows/4-implementation/dev-story/{instructions.xml → workflow.md} +49 -2
  143. package/src/bmm/workflows/4-implementation/retrospective/bmad-skill-manifest.yaml +3 -0
  144. package/src/bmm/workflows/4-implementation/retrospective/{instructions.md → workflow.md} +64 -23
  145. package/src/bmm/workflows/4-implementation/sprint-planning/bmad-skill-manifest.yaml +3 -0
  146. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +1 -0
  147. package/src/bmm/workflows/4-implementation/sprint-planning/{instructions.md → workflow.md} +55 -10
  148. package/src/bmm/workflows/4-implementation/sprint-status/bmad-skill-manifest.yaml +3 -0
  149. package/src/bmm/workflows/4-implementation/sprint-status/{instructions.md → workflow.md} +45 -8
  150. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/SKILL.md +6 -0
  151. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/bmad-skill-manifest.yaml +1 -0
  152. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-01-clarify-and-route.md +54 -0
  153. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-02-plan.md +39 -0
  154. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-03-implement.md +35 -0
  155. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-04-review.md +55 -0
  156. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-05-present.md +19 -0
  157. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/tech-spec-template.md +90 -0
  158. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/workflow.md +84 -0
  159. package/src/bmm/workflows/bmad-quick-flow/quick-dev/bmad-skill-manifest.yaml +3 -0
  160. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +8 -14
  161. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +1 -1
  162. package/src/bmm/workflows/bmad-quick-flow/quick-spec/bmad-skill-manifest.yaml +3 -0
  163. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +4 -6
  164. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +1 -1
  165. package/src/bmm/workflows/document-project/bmad-skill-manifest.yaml +3 -0
  166. package/src/bmm/workflows/document-project/instructions.md +5 -7
  167. package/src/bmm/workflows/document-project/workflow.md +39 -0
  168. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -1
  169. package/src/bmm/workflows/document-project/workflows/deep-dive-workflow.md +42 -0
  170. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1
  171. package/src/bmm/workflows/document-project/workflows/full-scan-workflow.md +42 -0
  172. package/src/bmm/workflows/generate-project-context/bmad-skill-manifest.yaml +3 -0
  173. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +2 -2
  174. package/src/bmm/workflows/qa-generate-e2e-tests/bmad-skill-manifest.yaml +3 -0
  175. package/src/bmm/workflows/qa-generate-e2e-tests/checklist.md +1 -1
  176. package/src/bmm/workflows/qa-generate-e2e-tests/{instructions.md → workflow.md} +40 -7
  177. package/src/core/agents/bmad-master.agent.yaml +1 -1
  178. package/src/core/agents/bmad-skill-manifest.yaml +3 -0
  179. package/src/core/module-help.csv +3 -2
  180. package/src/core/module.yaml +1 -1
  181. package/src/core/tasks/bmad-help/SKILL.md +6 -0
  182. package/src/core/tasks/bmad-help/bmad-skill-manifest.yaml +1 -0
  183. package/src/core/tasks/{help.md → bmad-help/workflow.md} +6 -4
  184. package/src/core/tasks/bmad-review-adversarial-general/SKILL.md +6 -0
  185. package/src/core/tasks/bmad-review-adversarial-general/bmad-skill-manifest.yaml +1 -0
  186. package/src/core/tasks/bmad-review-adversarial-general/workflow.md +32 -0
  187. package/src/core/tasks/bmad-review-edge-case-hunter/SKILL.md +6 -0
  188. package/src/core/tasks/bmad-review-edge-case-hunter/bmad-skill-manifest.yaml +1 -0
  189. package/src/core/tasks/bmad-review-edge-case-hunter/workflow.md +62 -0
  190. package/src/core/tasks/bmad-skill-manifest.yaml +19 -0
  191. package/src/core/workflows/advanced-elicitation/bmad-skill-manifest.yaml +3 -0
  192. package/src/core/workflows/advanced-elicitation/workflow.md +138 -0
  193. package/src/core/workflows/brainstorming/bmad-skill-manifest.yaml +3 -0
  194. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +31 -18
  195. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +1 -1
  196. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +3 -3
  197. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +2 -2
  198. package/src/core/workflows/brainstorming/workflow.md +5 -3
  199. package/src/core/workflows/party-mode/bmad-skill-manifest.yaml +3 -0
  200. package/src/core/workflows/party-mode/workflow.md +1 -1
  201. package/src/utility/agent-components/activation-steps.txt +2 -2
  202. package/src/utility/agent-components/handler-multi.txt +1 -2
  203. package/test/adversarial-review-tests/README.md +3 -3
  204. package/test/adversarial-review-tests/test-cases.yaml +2 -2
  205. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +1 -1
  206. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +1 -1
  207. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +1 -2
  208. package/test/fixtures/file-refs-csv/valid/bmm-style.csv +1 -1
  209. package/test/test-file-refs-csv.js +1 -1
  210. package/test/test-install-to-bmad.js +154 -0
  211. package/test/test-installation-components.js +1586 -2
  212. package/test/test-workflow-path-regex.js +88 -0
  213. package/tools/cli/installers/install-messages.yaml +1 -1
  214. package/tools/cli/installers/lib/core/installer.js +34 -1
  215. package/tools/cli/installers/lib/core/manifest-generator.js +332 -41
  216. package/tools/cli/installers/lib/ide/_base-ide.js +24 -15
  217. package/tools/cli/installers/lib/ide/_config-driven.js +547 -53
  218. package/tools/cli/installers/lib/ide/manager.js +26 -62
  219. package/tools/cli/installers/lib/ide/platform-codes.yaml +116 -29
  220. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +1 -0
  221. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +7 -0
  222. package/tools/cli/installers/lib/ide/shared/path-utils.js +68 -3
  223. package/tools/cli/installers/lib/ide/shared/skill-manifest.js +90 -0
  224. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +2 -0
  225. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +6 -145
  226. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -1
  227. package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +1 -1
  228. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +1 -1
  229. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +1 -1
  230. package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +1 -1
  231. package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +0 -1
  232. package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +0 -1
  233. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +0 -1
  234. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +0 -1
  235. package/tools/cli/installers/lib/modules/manager.js +9 -132
  236. package/tools/cli/lib/agent/compiler.js +1 -10
  237. package/tools/cli/lib/agent-analyzer.js +2 -14
  238. package/tools/cli/lib/yaml-xml-builder.js +1 -18
  239. package/tools/docs/native-skills-migration-checklist.md +281 -0
  240. package/tools/platform-codes.yaml +1 -1
  241. package/tools/schema/agent.js +1 -3
  242. package/tools/validate-file-refs.js +2 -0
  243. package/website/astro.config.mjs +24 -3
  244. package/website/src/content/config.ts +2 -1
  245. package/website/src/content/i18n/zh-CN.json +28 -0
  246. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +0 -227
  247. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -43
  248. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -53
  249. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +0 -346
  250. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -52
  251. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -20
  252. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -52
  253. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -47
  254. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +0 -25
  255. package/src/bmm/workflows/document-project/workflow.yaml +0 -22
  256. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  257. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  258. package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +0 -42
  259. package/src/core/tasks/review-adversarial-general.xml +0 -49
  260. package/src/core/tasks/workflow.xml +0 -235
  261. package/src/core/workflows/advanced-elicitation/workflow.xml +0 -118
  262. package/src/utility/agent-components/handler-validate-workflow.txt +0 -7
  263. package/src/utility/agent-components/handler-workflow.txt +0 -10
  264. package/tools/cli/installers/lib/ide/codex.js +0 -440
  265. package/tools/cli/installers/lib/ide/github-copilot.js +0 -699
  266. package/tools/cli/installers/lib/ide/kilo.js +0 -269
  267. package/tools/cli/installers/lib/ide/rovodev.js +0 -257
  268. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +0 -14
  269. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +0 -15
  270. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +0 -13
  271. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +0 -5
@@ -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
@@ -32,7 +32,7 @@ This step will generate content and present choices:
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
@@ -305,7 +305,7 @@ Show the generated patterns content and present choices:
305
305
 
306
306
  #### If 'A' (Advanced Elicitation):
307
307
 
308
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with current patterns
308
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with current patterns
309
309
  - Process enhanced consistency rules that come back
310
310
  - Ask user: "Accept these additional pattern refinements? (y/n)"
311
311
  - If yes: Update content, then return to A/P/C menu
@@ -32,7 +32,7 @@ This step will generate content and present choices:
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
@@ -325,7 +325,7 @@ Show the generated project structure content and present choices:
325
325
 
326
326
  #### If 'A' (Advanced Elicitation):
327
327
 
328
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with current project structure
328
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with current project structure
329
329
  - Process enhanced organizational insights that come back
330
330
  - Ask user: "Accept these changes to the project structure? (y/n)"
331
331
  - If yes: Update content, then return to A/P/C menu
@@ -32,7 +32,7 @@ This step will generate content and present choices:
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
@@ -305,7 +305,7 @@ Show the validation results and present choices:
305
305
 
306
306
  #### If 'A' (Advanced Elicitation):
307
307
 
308
- - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with validation issues
308
+ - Read fully and follow: {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md with validation issues
309
309
  - Process enhanced solutions for complex concerns
310
310
  - Ask user: "Accept these architectural improvements? (y/n)"
311
311
  - If yes: Update content, then return to A/P/C menu
@@ -41,7 +41,7 @@ completedAt: '{{current_date}}'
41
41
 
42
42
  ### 3. Next Steps Guidance
43
43
 
44
- Architecture complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
44
+ Architecture complete. Invoke the `bmad-help` skill.
45
45
 
46
46
  Upon Completion of task output: offer to answer any questions about the Architecture Document.
47
47
 
@@ -0,0 +1,3 @@
1
+ canonicalId: bmad-create-epics-and-stories
2
+ type: workflow
3
+ description: "Break requirements into epics and user stories"
@@ -13,7 +13,7 @@ outputFile: '{planning_artifacts}/epics.md'
13
13
  epicsTemplate: '{workflow_path}/templates/epics-template.md'
14
14
 
15
15
  # Task References
16
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
16
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
17
17
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
18
18
 
19
19
  # Template References
@@ -12,7 +12,7 @@ workflowFile: '{workflow_path}/workflow.md'
12
12
  outputFile: '{planning_artifacts}/epics.md'
13
13
 
14
14
  # Task References
15
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
15
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
16
16
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
17
17
 
18
18
  # Template References
@@ -12,7 +12,7 @@ workflowFile: '{workflow_path}/workflow.md'
12
12
  outputFile: '{planning_artifacts}/epics.md'
13
13
 
14
14
  # Task References
15
- advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
15
+ advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.md'
16
16
  partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
17
17
 
18
18
  # Template References
@@ -11,7 +11,7 @@ workflowFile: '{workflow_path}/workflow.md'
11
11
  outputFile: '{planning_artifacts}/epics.md'
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
  # Template References
@@ -144,6 +144,6 @@ If all validations pass:
144
144
 
145
145
  When C is selected, the workflow is complete and the epics.md is ready for development.
146
146
 
147
- Epics and Stories complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
147
+ Epics and Stories complete. Invoke the `bmad-help` skill.
148
148
 
149
149
  Upon Completion of task output: offer to answer any questions about the Epics and Stories.
@@ -0,0 +1,3 @@
1
+ canonicalId: bmad-code-review
2
+ type: workflow
3
+ description: "Perform adversarial code review finding specific issues"