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
@@ -1,111 +1,113 @@
1
1
  ---
2
- title: Commands
3
- description: Reference for BMad slash commands — what they are, how they work, and where to find them.
2
+ title: Skills
3
+ description: Reference for BMad skills — what they are, how they work, and where to find them.
4
4
  sidebar:
5
5
  order: 3
6
6
  ---
7
7
 
8
- Slash commands are pre-built prompts that load agents, run workflows, or execute tasks inside your IDE. The BMad installer generates them from your installed modules at install time. If you later add, remove, or change modules, re-run the installer to keep commands in sync (see [Troubleshooting](#troubleshooting)).
8
+ Skills are pre-built prompts that load agents, run workflows, or execute tasks inside your IDE. The BMad installer generates them from your installed modules at install time. If you later add, remove, or change modules, re-run the installer to keep skills in sync (see [Troubleshooting](#troubleshooting)).
9
9
 
10
- ## Commands vs. Agent Menu Triggers
10
+ ## Skills vs. Agent Menu Triggers
11
11
 
12
12
  BMad offers two ways to start work, and they serve different purposes.
13
13
 
14
14
  | Mechanism | How you invoke it | What happens |
15
15
  | --- | --- | --- |
16
- | **Slash command** | Type `/bmad-...` in your IDE | Directly loads an agent, runs a workflow, or executes a task |
16
+ | **Skill** | Type the skill name (e.g. `bmad-help`) in your IDE | Directly loads an agent, runs a workflow, or executes a task |
17
17
  | **Agent menu trigger** | Load an agent first, then type a short code (e.g. `DS`) | The agent interprets the code and starts the matching workflow while staying in character |
18
18
 
19
- Agent menu triggers require an active agent session. Use slash commands when you know which workflow you want. Use triggers when you are already working with an agent and want to switch tasks without leaving the conversation.
19
+ Agent menu triggers require an active agent session. Use skills when you know which workflow you want. Use triggers when you are already working with an agent and want to switch tasks without leaving the conversation.
20
20
 
21
- ## How Commands Are Generated
21
+ ## How Skills Are Generated
22
22
 
23
- When you run `npx bmad-method install`, the installer reads the manifests for every selected module and writes one command file per agent, workflow, task, and tool. Each file is a short markdown prompt that instructs the AI to load the corresponding source file and follow its instructions.
23
+ When you run `npx bmad-method install`, the installer reads the manifests for every selected module and writes one skill per agent, workflow, task, and tool. Each skill is a directory containing a `SKILL.md` file that instructs the AI to load the corresponding source file and follow its instructions.
24
24
 
25
- The installer uses templates for each command type:
25
+ The installer uses templates for each skill type:
26
26
 
27
- | Command type | What the generated file does |
27
+ | Skill type | What the generated file does |
28
28
  | --- | --- |
29
29
  | **Agent launcher** | Loads the agent persona file, activates its menu, and stays in character |
30
- | **Workflow command** | Loads the workflow engine (`workflow.xml`) and passes the workflow config |
31
- | **Task command** | Loads a standalone task file and follows its instructions |
32
- | **Tool command** | Loads a standalone tool file and follows its instructions |
30
+ | **Workflow skill** | Loads the workflow config and follows its steps |
31
+ | **Task skill** | Loads a standalone task file and follows its instructions |
32
+ | **Tool skill** | Loads a standalone tool file and follows its instructions |
33
33
 
34
34
  :::note[Re-running the installer]
35
- If you add or remove modules, run the installer again. It regenerates all command files to match your current module selection.
35
+ If you add or remove modules, run the installer again. It regenerates all skill files to match your current module selection.
36
36
  :::
37
37
 
38
- ## Where Command Files Live
38
+ ## Where Skill Files Live
39
39
 
40
- The installer writes command files into an IDE-specific directory inside your project. The exact path depends on which IDE you selected during installation.
40
+ The installer writes skill files into an IDE-specific directory inside your project. The exact path depends on which IDE you selected during installation.
41
41
 
42
- | IDE / CLI | Command directory |
42
+ | IDE / CLI | Skills directory |
43
43
  | --- | --- |
44
- | Claude Code | `.claude/commands/` |
45
- | Cursor | `.cursor/commands/` |
46
- | Windsurf | `.windsurf/workflows/` |
44
+ | Claude Code | `.claude/skills/` |
45
+ | Cursor | `.cursor/skills/` |
46
+ | Windsurf | `.windsurf/skills/` |
47
47
  | Other IDEs | See the installer output for the target path |
48
48
 
49
- All IDEs receive a flat set of command files in their command directory. For example, a Claude Code installation looks like:
49
+ Each skill is a directory containing a `SKILL.md` file. For example, a Claude Code installation looks like:
50
50
 
51
51
  ```text
52
- .claude/commands/
53
- ├── bmad-agent-bmm-dev.md
54
- ├── bmad-agent-bmm-pm.md
55
- ├── bmad-bmm-create-prd.md
56
- ├── bmad-editorial-review-prose.md
57
- ├── bmad-help.md
52
+ .claude/skills/
53
+ ├── bmad-help/
54
+ │ └── SKILL.md
55
+ ├── bmad-create-prd/
56
+ │ └── SKILL.md
57
+ ├── bmad-dev/
58
+ │ └── SKILL.md
58
59
  └── ...
59
60
  ```
60
61
 
61
- The filename determines the slash command name in your IDE. For example, the file `bmad-agent-bmm-dev.md` registers the command `/bmad-agent-bmm-dev`.
62
+ The directory name determines the skill name in your IDE. For example, the directory `bmad-dev/` registers the skill `bmad-dev`.
62
63
 
63
- ## How to Discover Your Commands
64
+ ## How to Discover Your Skills
64
65
 
65
- Type `/bmad` in your IDE and use autocomplete to browse available commands.
66
+ Type the skill name in your IDE to invoke it. Some platforms require you to enable skills in settings before they appear.
66
67
 
67
- Run `/bmad-help` for context-aware guidance on your next step.
68
+ Run `bmad-help` for context-aware guidance on your next step.
68
69
 
69
70
  :::tip[Quick discovery]
70
- The generated command folders in your project are the canonical list. Open them in your file explorer to see every command with its description.
71
+ The generated skill directories in your project are the canonical list. Open them in your file explorer to see every skill with its description.
71
72
  :::
72
73
 
73
- ## Command Categories
74
+ ## Skill Categories
74
75
 
75
- ### Agent Commands
76
+ ### Agent Skills
76
77
 
77
- Agent commands load a specialized AI persona with a defined role, communication style, and menu of workflows. Once loaded, the agent stays in character and responds to menu triggers.
78
+ Agent skills load a specialized AI persona with a defined role, communication style, and menu of workflows. Once loaded, the agent stays in character and responds to menu triggers.
78
79
 
79
- | Example command | Agent | Role |
80
+ | Example skill | Agent | Role |
80
81
  | --- | --- | --- |
81
- | `/bmad-agent-bmm-dev` | Amelia (Developer) | Implements stories with strict adherence to specs |
82
- | `/bmad-agent-bmm-pm` | John (Product Manager) | Creates and validates PRDs |
83
- | `/bmad-agent-bmm-architect` | Winston (Architect) | Designs system architecture |
84
- | `/bmad-agent-bmm-sm` | Bob (Scrum Master) | Manages sprints and stories |
82
+ | `bmad-dev` | Amelia (Developer) | Implements stories with strict adherence to specs |
83
+ | `bmad-pm` | John (Product Manager) | Creates and validates PRDs |
84
+ | `bmad-architect` | Winston (Architect) | Designs system architecture |
85
+ | `bmad-sm` | Bob (Scrum Master) | Manages sprints and stories |
85
86
 
86
87
  See [Agents](./agents.md) for the full list of default agents and their triggers.
87
88
 
88
- ### Workflow Commands
89
+ ### Workflow Skills
89
90
 
90
- Workflow commands run a structured, multi-step process without loading an agent persona first. They load the workflow engine and pass a specific workflow configuration.
91
+ Workflow skills run a structured, multi-step process without loading an agent persona first. They load a workflow configuration and follow its steps.
91
92
 
92
- | Example command | Purpose |
93
+ | Example skill | Purpose |
93
94
  | --- | --- |
94
- | `/bmad-bmm-create-prd` | Create a Product Requirements Document |
95
- | `/bmad-bmm-create-architecture` | Design system architecture |
96
- | `/bmad-bmm-dev-story` | Implement a story |
97
- | `/bmad-bmm-code-review` | Run a code review |
98
- | `/bmad-bmm-quick-spec` | Define an ad-hoc change (Quick Flow) |
95
+ | `bmad-create-prd` | Create a Product Requirements Document |
96
+ | `bmad-create-architecture` | Design system architecture |
97
+ | `bmad-create-epics-and-stories` | Create epics and stories |
98
+ | `bmad-dev-story` | Implement a story |
99
+ | `bmad-code-review` | Run a code review |
100
+ | `bmad-quick-spec` | Define an ad-hoc change (Quick Flow) |
99
101
 
100
102
  See [Workflow Map](./workflow-map.md) for the complete workflow reference organized by phase.
101
103
 
102
- ### Task and Tool Commands
104
+ ### Task and Tool Skills
103
105
 
104
106
  Tasks and tools are standalone operations that do not require an agent or workflow context.
105
107
 
106
108
  #### BMad-Help: Your Intelligent Guide
107
109
 
108
- **`/bmad-help`** is your primary interface for discovering what to do next. It's not just a lookup tool — it's an intelligent assistant that:
110
+ **`bmad-help`** is your primary interface for discovering what to do next. It's not just a lookup tool — it's an intelligent assistant that:
109
111
 
110
112
  - **Inspects your project** to see what's already been done
111
113
  - **Understands natural language queries** — ask questions in plain English
@@ -116,36 +118,28 @@ Tasks and tools are standalone operations that do not require an agent or workfl
116
118
  **Examples:**
117
119
 
118
120
  ```
119
- /bmad-help
120
- /bmad-help I have a SaaS idea and know all the features. Where do I start?
121
- /bmad-help What are my options for UX design?
122
- /bmad-help I'm stuck on the PRD workflow
121
+ bmad-help
122
+ bmad-help I have a SaaS idea and know all the features. Where do I start?
123
+ bmad-help What are my options for UX design?
124
+ bmad-help I'm stuck on the PRD workflow
123
125
  ```
124
126
 
125
127
  #### Other Tasks and Tools
126
128
 
127
- | Example command | Purpose |
129
+ | Example skill | Purpose |
128
130
  | --- | --- |
129
- | `/bmad-shard-doc` | Split a large markdown file into smaller sections |
130
- | `/bmad-index-docs` | Index project documentation |
131
- | `/bmad-editorial-review-prose` | Review document prose quality |
131
+ | `bmad-shard-doc` | Split a large markdown file into smaller sections |
132
+ | `bmad-index-docs` | Index project documentation |
133
+ | `bmad-editorial-review-prose` | Review document prose quality |
132
134
 
133
135
  ## Naming Convention
134
136
 
135
- Command names follow a predictable pattern.
136
-
137
- | Pattern | Meaning | Example |
138
- | --- | --- | --- |
139
- | `bmad-agent-<module>-<name>` | Agent launcher | `bmad-agent-bmm-dev` |
140
- | `bmad-<module>-<workflow>` | Workflow command | `bmad-bmm-create-prd` |
141
- | `bmad-<name>` | Core task or tool | `bmad-help` |
142
-
143
- Module codes: `bmm` (Agile suite), `bmb` (Builder), `tea` (Test Architect), `cis` (Creative Intelligence), `gds` (Game Dev Studio). See [Modules](./modules.md) for descriptions.
137
+ All skills use the `bmad-` prefix followed by a descriptive name (e.g., `bmad-dev`, `bmad-create-prd`, `bmad-help`). See [Modules](./modules.md) for available modules.
144
138
 
145
139
  ## Troubleshooting
146
140
 
147
- **Commands not appearing after install.** Restart your IDE or reload the window. Some IDEs cache the command list and require a refresh to pick up new files.
141
+ **Skills not appearing after install.** Some platforms require skills to be explicitly enabled in settings. Check your IDE's documentation or ask your AI assistant how to enable skills. You may also need to restart your IDE or reload the window.
148
142
 
149
- **Expected commands are missing.** The installer only generates commands for modules you selected. Run `npx bmad-method install` again and verify your module selection. Check that the command files exist in the expected directory.
143
+ **Expected skills are missing.** The installer only generates skills for modules you selected. Run `npx bmad-method install` again and verify your module selection. Check that the skill files exist in the expected directory.
150
144
 
151
- **Commands from a removed module still appear.** The installer does not delete old command files automatically. Remove the stale files from your IDE's command directory, or delete the entire command directory and re-run the installer for a clean set.
145
+ **Skills from a removed module still appear.** The installer does not delete old skill files automatically. Remove the stale directories from your IDE's skills directory, or delete the entire skills directory and re-run the installer for a clean set.
@@ -26,7 +26,7 @@ Most projects should start with Quinn. If you later need test strategy, quality
26
26
 
27
27
  Quinn is the built-in QA agent in the BMM (Agile suite) module. It generates working tests quickly using your project's existing test framework -- no configuration or additional installation required.
28
28
 
29
- **Trigger:** `QA` or `bmad-bmm-qa-automate`
29
+ **Trigger:** `QA` or `bmad-qa-generate-e2e-tests`
30
30
 
31
31
  ### What Quinn Does
32
32
 
@@ -9,9 +9,9 @@ The BMad Method (BMM) is a module in the BMad Ecosystem, targeted at following t
9
9
 
10
10
  The rationale and concepts come from agile methodologies that have been used across the industry with great success as a mental framework.
11
11
 
12
- If at any time you are unsure what to do, the `/bmad-help` command will help you stay on track or know what to do next. You can always refer to this for reference also - but /bmad-help is fully interactive and much quicker if you have already installed the BMad Method. Additionally, if you are using different modules that have extended the BMad Method or added other complementary non-extension modules - the /bmad-help evolves to know all that is available to give you the best in-the-moment advice.
12
+ If at any time you are unsure what to do, the `bmad-help` skill will help you stay on track or know what to do next. You can always refer to this for reference also - but `bmad-help` is fully interactive and much quicker if you have already installed the BMad Method. Additionally, if you are using different modules that have extended the BMad Method or added other complementary non-extension modules - `bmad-help` evolves to know all that is available to give you the best in-the-moment advice.
13
13
 
14
- Final important note: Every workflow below can be run directly with your tool of choice via slash command or by loading an agent first and using the entry from the agents menu.
14
+ Final important note: Every workflow below can be run directly with your tool of choice via skill or by loading an agent first and using the entry from the agents menu.
15
15
 
16
16
  <iframe src="/workflow-map-diagram.html" title="BMad Method Workflow Map Diagram" width="100%" height="100%" style="border-radius: 8px; border: 1px solid #334155; min-height: 900px;"></iframe>
17
17
 
@@ -26,8 +26,8 @@ Explore the problem space and validate ideas before committing to planning.
26
26
  | Workflow | Purpose | Produces |
27
27
  | ------------------------------- | -------------------------------------------------------------------------- | ------------------------- |
28
28
  | `bmad-brainstorming` | Brainstorm Project Ideas with guided facilitation of a brainstorming coach | `brainstorming-report.md` |
29
- | `bmad-bmm-research` | Validate market, technical, or domain assumptions | Research findings |
30
- | `bmad-bmm-create-product-brief` | Capture strategic vision | `product-brief.md` |
29
+ | `bmad-domain-research`, `bmad-market-research`, `bmad-technical-research` | Validate market, technical, or domain assumptions | Research findings |
30
+ | `bmad-create-product-brief` | Capture strategic vision | `product-brief.md` |
31
31
 
32
32
  ## Phase 2: Planning
33
33
 
@@ -35,8 +35,8 @@ Define what to build and for whom.
35
35
 
36
36
  | Workflow | Purpose | Produces |
37
37
  | --------------------------- | ---------------------------------------- | ------------ |
38
- | `bmad-bmm-create-prd` | Define requirements (FRs/NFRs) | `PRD.md` |
39
- | `bmad-bmm-create-ux-design` | Design user experience (when UX matters) | `ux-spec.md` |
38
+ | `bmad-create-prd` | Define requirements (FRs/NFRs) | `PRD.md` |
39
+ | `bmad-create-ux-design` | Design user experience (when UX matters) | `ux-spec.md` |
40
40
 
41
41
  ## Phase 3: Solutioning
42
42
 
@@ -44,9 +44,9 @@ Decide how to build it and break work into stories.
44
44
 
45
45
  | Workflow | Purpose | Produces |
46
46
  | ----------------------------------------- | ------------------------------------------ | --------------------------- |
47
- | `bmad-bmm-create-architecture` | Make technical decisions explicit | `architecture.md` with ADRs |
48
- | `bmad-bmm-create-epics-and-stories` | Break requirements into implementable work | Epic files with stories |
49
- | `bmad-bmm-check-implementation-readiness` | Gate check before implementation | PASS/CONCERNS/FAIL decision |
47
+ | `bmad-create-architecture` | Make technical decisions explicit | `architecture.md` with ADRs |
48
+ | `bmad-create-epics-and-stories` | Break requirements into implementable work | Epic files with stories |
49
+ | `bmad-check-implementation-readiness` | Gate check before implementation | PASS/CONCERNS/FAIL decision |
50
50
 
51
51
  ## Phase 4: Implementation
52
52
 
@@ -54,13 +54,13 @@ Build it, one story at a time. Coming soon, full phase 4 automation!
54
54
 
55
55
  | Workflow | Purpose | Produces |
56
56
  | -------------------------- | ------------------------------------------------------------------------ | -------------------------------- |
57
- | `bmad-bmm-sprint-planning` | Initialize tracking (once per project to sequence the dev cycle) | `sprint-status.yaml` |
58
- | `bmad-bmm-create-story` | Prepare next story for implementation | `story-[slug].md` |
59
- | `bmad-bmm-dev-story` | Implement the story | Working code + tests |
60
- | `bmad-bmm-code-review` | Validate implementation quality | Approved or changes requested |
61
- | `bmad-bmm-correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
62
- | `bmad-bmm-automate` | Generate tests for existing features - Use after a full epic is complete | End to End UI Focused Test suite |
63
- | `bmad-bmm-retrospective` | Review after epic completion | Lessons learned |
57
+ | `bmad-sprint-planning` | Initialize tracking (once per project to sequence the dev cycle) | `sprint-status.yaml` |
58
+ | `bmad-create-story` | Prepare next story for implementation | `story-[slug].md` |
59
+ | `bmad-dev-story` | Implement the story | Working code + tests |
60
+ | `bmad-code-review` | Validate implementation quality | Approved or changes requested |
61
+ | `bmad-correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
62
+ | `bmad-sprint-status` | Track sprint progress and story status | Sprint status update |
63
+ | `bmad-retrospective` | Review after epic completion | Lessons learned |
64
64
 
65
65
  ## Quick Flow (Parallel Track)
66
66
 
@@ -68,8 +68,8 @@ Skip phases 1-3 for small, well-understood work.
68
68
 
69
69
  | Workflow | Purpose | Produces |
70
70
  | --------------------- | ------------------------------------------ | --------------------------------------------- |
71
- | `bmad-bmm-quick-spec` | Define an ad-hoc change | `tech-spec.md` (story file for small changes) |
72
- | `bmad-bmm-quick-dev` | Implement from spec or direct instructions | Working code + tests |
71
+ | `bmad-quick-spec` | Define an ad-hoc change | `tech-spec.md` (story file for small changes) |
72
+ | `bmad-quick-dev` | Implement from spec or direct instructions | Working code + tests |
73
73
 
74
74
  ## Context Management
75
75
 
@@ -84,6 +84,6 @@ Create `project-context.md` to ensure AI agents follow your project's rules and
84
84
  **How to create it:**
85
85
 
86
86
  - **Manually** — Create `_bmad-output/project-context.md` with your technology stack and implementation rules
87
- - **Generate it** — Run `/bmad-bmm-generate-project-context` to auto-generate from your architecture or codebase
87
+ - **Generate it** — Run `bmad-generate-project-context` to auto-generate from your architecture or codebase
88
88
 
89
89
  [**Learn more about project-context.md**](../explanation/project-context.md)
@@ -37,16 +37,16 @@ Build software faster using AI-powered workflows with specialized agents that gu
37
37
 
38
38
  ### How to Use BMad-Help
39
39
 
40
- Run it in your AI IDE with just the slash command:
40
+ Run it in your AI IDE by invoking the skill:
41
41
 
42
42
  ```
43
- /bmad-help
43
+ bmad-help
44
44
  ```
45
45
 
46
46
  Or combine it with a question for context-aware guidance:
47
47
 
48
48
  ```
49
- /bmad-help I have an idea for a SaaS product, I already know all the features I want. where do I get started?
49
+ bmad-help I have an idea for a SaaS product, I already know all the features I want. where do I get started?
50
50
  ```
51
51
 
52
52
  BMad-Help will respond with:
@@ -112,7 +112,7 @@ BMad-Help will detect what you've completed and recommend exactly what to do nex
112
112
  :::
113
113
 
114
114
  :::note[How to Load Agents and Run Workflows]
115
- Each workflow has a **slash command** you run in your IDE (e.g., `/bmad-bmm-create-prd`). Running a workflow command automatically loads the appropriate agent — you don't need to load agents separately. You can also load an agent directly for general conversation (e.g., `/bmad-agent-bmm-pm` for the PM agent).
115
+ Each workflow has a **skill** you invoke in your IDE (e.g., `/bmad-create-prd`). Running a workflow skill automatically loads the appropriate agent — you don't need to load agents separately. You can also invoke an agent directly for general conversation (e.g., `/bmad-pm` for the PM agent).
116
116
  :::
117
117
 
118
118
  :::caution[Fresh Chats]
@@ -126,35 +126,35 @@ Work through phases 1-3. **Use fresh chats for each workflow.**
126
126
  :::tip[Project Context (Optional)]
127
127
  Before starting, consider creating `project-context.md` to document your technical preferences and implementation rules. This ensures all AI agents follow your conventions throughout the project.
128
128
 
129
- Create it manually at `_bmad-output/project-context.md` or generate it after architecture using `/bmad-bmm-generate-project-context`. [Learn more](../explanation/project-context.md).
129
+ Create it manually at `_bmad-output/project-context.md` or generate it after architecture using `/bmad-generate-project-context`. [Learn more](../explanation/project-context.md).
130
130
  :::
131
131
 
132
132
  ### Phase 1: Analysis (Optional)
133
133
 
134
134
  All workflows in this phase are optional:
135
135
  - **brainstorming** (`/bmad-brainstorming`) — Guided ideation
136
- - **research** (`/bmad-bmm-research`) — Market and technical research
137
- - **create-product-brief** (`/bmad-bmm-create-product-brief`) — Recommended foundation document
136
+ - **research** (`/bmad-research`) — Market and technical research
137
+ - **create-product-brief** (`/bmad-create-product-brief`) — Recommended foundation document
138
138
 
139
139
  ### Phase 2: Planning (Required)
140
140
 
141
141
  **For BMad Method and Enterprise tracks:**
142
- 1. Load the **PM agent** (`/bmad-agent-bmm-pm`) in a new chat
143
- 2. Run the `prd` workflow (`/bmad-bmm-create-prd`)
142
+ 1. Invoke the **PM agent** (`/bmad-pm`) in a new chat
143
+ 2. Run the `bmad-create-prd` workflow (`/bmad-create-prd`)
144
144
  3. Output: `PRD.md`
145
145
 
146
146
  **For Quick Flow track:**
147
- - Use the `quick-spec` workflow (`/bmad-bmm-quick-spec`) instead of PRD, then skip to implementation
147
+ - Use the `bmad-quick-spec` workflow (`/bmad-quick-spec`) instead of PRD, then skip to implementation
148
148
 
149
149
  :::note[UX Design (Optional)]
150
- If your project has a user interface, load the **UX-Designer agent** (`/bmad-agent-bmm-ux-designer`) and run the UX design workflow (`/bmad-bmm-create-ux-design`) after creating your PRD.
150
+ If your project has a user interface, invoke the **UX-Designer agent** (`/bmad-ux-designer`) and run the UX design workflow (`/bmad-create-ux-design`) after creating your PRD.
151
151
  :::
152
152
 
153
153
  ### Phase 3: Solutioning (BMad Method/Enterprise)
154
154
 
155
155
  **Create Architecture**
156
- 1. Load the **Architect agent** (`/bmad-agent-bmm-architect`) in a new chat
157
- 2. Run `create-architecture` (`/bmad-bmm-create-architecture`)
156
+ 1. Invoke the **Architect agent** (`/bmad-architect`) in a new chat
157
+ 2. Run `bmad-create-architecture` (`/bmad-create-architecture`)
158
158
  3. Output: Architecture document with technical decisions
159
159
 
160
160
  **Create Epics and Stories**
@@ -163,13 +163,13 @@ If your project has a user interface, load the **UX-Designer agent** (`/bmad-age
163
163
  Epics and stories are now created *after* architecture. This produces better quality stories because architecture decisions (database, API patterns, tech stack) directly affect how work should be broken down.
164
164
  :::
165
165
 
166
- 1. Load the **PM agent** (`/bmad-agent-bmm-pm`) in a new chat
167
- 2. Run `create-epics-and-stories` (`/bmad-bmm-create-epics-and-stories`)
166
+ 1. Invoke the **PM agent** (`/bmad-pm`) in a new chat
167
+ 2. Run `bmad-create-epics-and-stories` (`/bmad-create-epics-and-stories`)
168
168
  3. The workflow uses both PRD and Architecture to create technically-informed stories
169
169
 
170
170
  **Implementation Readiness Check** *(Highly Recommended)*
171
- 1. Load the **Architect agent** (`/bmad-agent-bmm-architect`) in a new chat
172
- 2. Run `check-implementation-readiness` (`/bmad-bmm-check-implementation-readiness`)
171
+ 1. Invoke the **Architect agent** (`/bmad-architect`) in a new chat
172
+ 2. Run `bmad-check-implementation-readiness` (`/bmad-check-implementation-readiness`)
173
173
  3. Validates cohesion across all planning documents
174
174
 
175
175
  ## Step 2: Build Your Project
@@ -178,7 +178,7 @@ Once planning is complete, move to implementation. **Each workflow should run in
178
178
 
179
179
  ### Initialize Sprint Planning
180
180
 
181
- Load the **SM agent** (`/bmad-agent-bmm-sm`) and run `sprint-planning` (`/bmad-bmm-sprint-planning`). This creates `sprint-status.yaml` to track all epics and stories.
181
+ Invoke the **SM agent** (`/bmad-sm`) and run `bmad-sprint-planning` (`/bmad-sprint-planning`). This creates `sprint-status.yaml` to track all epics and stories.
182
182
 
183
183
  ### The Build Cycle
184
184
 
@@ -186,11 +186,11 @@ For each story, repeat this cycle with fresh chats:
186
186
 
187
187
  | Step | Agent | Workflow | Command | Purpose |
188
188
  | ---- | ----- | -------------- | -------------------------- | ---------------------------------- |
189
- | 1 | SM | `create-story` | `/bmad-bmm-create-story` | Create story file from epic |
190
- | 2 | DEV | `dev-story` | `/bmad-bmm-dev-story` | Implement the story |
191
- | 3 | DEV | `code-review` | `/bmad-bmm-code-review` | Quality validation *(recommended)* |
189
+ | 1 | SM | `bmad-create-story` | `/bmad-create-story` | Create story file from epic |
190
+ | 2 | DEV | `bmad-dev-story` | `/bmad-dev-story` | Implement the story |
191
+ | 3 | DEV | `bmad-code-review` | `/bmad-code-review` | Quality validation *(recommended)* |
192
192
 
193
- After completing all stories in an epic, load the **SM agent** (`/bmad-agent-bmm-sm`) and run `retrospective` (`/bmad-bmm-retrospective`).
193
+ After completing all stories in an epic, invoke the **SM agent** (`/bmad-sm`) and run `bmad-retrospective` (`/bmad-retrospective`).
194
194
 
195
195
  ## What You've Accomplished
196
196
 
@@ -221,16 +221,16 @@ your-project/
221
221
 
222
222
  | Workflow | Command | Agent | Purpose |
223
223
  | ------------------------------------- | ------------------------------------------ | --------- | ----------------------------------------------- |
224
- | **`help`** ⭐ | `/bmad-help` | Any | **Your intelligent guide — ask anything!** |
225
- | `prd` | `/bmad-bmm-create-prd` | PM | Create Product Requirements Document |
226
- | `create-architecture` | `/bmad-bmm-create-architecture` | Architect | Create architecture document |
227
- | `generate-project-context` | `/bmad-bmm-generate-project-context` | Analyst | Create project context file |
228
- | `create-epics-and-stories` | `/bmad-bmm-create-epics-and-stories` | PM | Break down PRD into epics |
229
- | `check-implementation-readiness` | `/bmad-bmm-check-implementation-readiness` | Architect | Validate planning cohesion |
230
- | `sprint-planning` | `/bmad-bmm-sprint-planning` | SM | Initialize sprint tracking |
231
- | `create-story` | `/bmad-bmm-create-story` | SM | Create a story file |
232
- | `dev-story` | `/bmad-bmm-dev-story` | DEV | Implement a story |
233
- | `code-review` | `/bmad-bmm-code-review` | DEV | Review implemented code |
224
+ | **`bmad-help`** ⭐ | `/bmad-help` | Any | **Your intelligent guide — ask anything!** |
225
+ | `bmad-create-prd` | `/bmad-create-prd` | PM | Create Product Requirements Document |
226
+ | `bmad-create-architecture` | `/bmad-create-architecture` | Architect | Create architecture document |
227
+ | `bmad-generate-project-context` | `/bmad-generate-project-context` | Analyst | Create project context file |
228
+ | `bmad-create-epics-and-stories` | `/bmad-create-epics-and-stories` | PM | Break down PRD into epics |
229
+ | `bmad-check-implementation-readiness` | `/bmad-check-implementation-readiness` | Architect | Validate planning cohesion |
230
+ | `bmad-sprint-planning` | `/bmad-sprint-planning` | SM | Initialize sprint tracking |
231
+ | `bmad-create-story` | `/bmad-create-story` | SM | Create a story file |
232
+ | `bmad-dev-story` | `/bmad-dev-story` | DEV | Implement a story |
233
+ | `bmad-code-review` | `/bmad-code-review` | DEV | Review implemented code |
234
234
 
235
235
  ## Common Questions
236
236
 
@@ -238,10 +238,10 @@ your-project/
238
238
  Only for BMad Method and Enterprise tracks. Quick Flow skips from tech-spec to implementation.
239
239
 
240
240
  **Can I change my plan later?**
241
- Yes. The SM agent has a `correct-course` workflow (`/bmad-bmm-correct-course`) for handling scope changes.
241
+ Yes. The SM agent has a `bmad-correct-course` workflow (`/bmad-correct-course`) for handling scope changes.
242
242
 
243
243
  **What if I want to brainstorm first?**
244
- Load the Analyst agent (`/bmad-agent-bmm-analyst`) and run `brainstorming` (`/bmad-brainstorming`) before starting your PRD.
244
+ Invoke the Analyst agent (`/bmad-analyst`) and run `bmad-brainstorming` (`/bmad-brainstorming`) before starting your PRD.
245
245
 
246
246
  **Do I need to follow a strict order?**
247
247
  Not strictly. Once you learn the flow, you can run workflows directly using the Quick Reference above.
@@ -0,0 +1,9 @@
1
+ ---
2
+ title: 页面未找到
3
+ template: splash
4
+ ---
5
+
6
+
7
+ 您查找的页面不存在或已被移动。
8
+
9
+ [返回首页](./index.md)