bmad-method 6.0.4 → 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 (252) hide show
  1. package/.augment/code_review_guidelines.yaml +2 -42
  2. package/.claude/skills/bmad-os-findings-triage/SKILL.md +6 -0
  3. package/.claude/skills/bmad-os-findings-triage/prompts/agent-prompt.md +104 -0
  4. package/.claude/skills/bmad-os-findings-triage/prompts/instructions.md +286 -0
  5. package/.claude/skills/bmad-os-review-pr/SKILL.md +1 -1
  6. package/.claude/skills/bmad-os-review-pr/prompts/instructions.md +63 -6
  7. package/.claude/skills/bmad-os-review-prompt/SKILL.md +177 -0
  8. package/.github/workflows/publish.yaml +243 -0
  9. package/CONTRIBUTING.md +1 -1
  10. package/README_CN.md +121 -0
  11. package/docs/_STYLE_GUIDE.md +10 -10
  12. package/docs/explanation/brainstorming.md +1 -1
  13. package/docs/explanation/party-mode.md +1 -1
  14. package/docs/explanation/preventing-agent-conflicts.md +1 -1
  15. package/docs/explanation/project-context.md +15 -15
  16. package/docs/explanation/quick-flow.md +9 -9
  17. package/docs/how-to/established-projects.md +7 -7
  18. package/docs/how-to/get-answers-about-bmad.md +2 -2
  19. package/docs/how-to/install-bmad.md +16 -6
  20. package/docs/how-to/project-context.md +2 -2
  21. package/docs/how-to/quick-fixes.md +5 -5
  22. package/docs/how-to/shard-large-documents.md +1 -1
  23. package/docs/how-to/upgrade-to-v6.md +8 -5
  24. package/docs/index.md +1 -1
  25. package/docs/reference/agents.md +14 -14
  26. package/docs/reference/commands.md +64 -70
  27. package/docs/reference/testing.md +1 -1
  28. package/docs/reference/workflow-map.md +19 -19
  29. package/docs/tutorials/getting-started.md +34 -34
  30. package/docs/zh-cn/404.md +9 -0
  31. package/docs/zh-cn/_STYLE_GUIDE.md +370 -0
  32. package/docs/zh-cn/explanation/advanced-elicitation.md +62 -0
  33. package/docs/zh-cn/explanation/adversarial-review.md +71 -0
  34. package/docs/zh-cn/explanation/brainstorming.md +43 -0
  35. package/docs/zh-cn/explanation/established-projects-faq.md +60 -0
  36. package/docs/zh-cn/explanation/party-mode.md +79 -0
  37. package/docs/zh-cn/explanation/preventing-agent-conflicts.md +137 -0
  38. package/docs/zh-cn/explanation/project-context.md +176 -0
  39. package/docs/zh-cn/explanation/quick-flow.md +93 -0
  40. package/docs/zh-cn/explanation/why-solutioning-matters.md +90 -0
  41. package/docs/zh-cn/how-to/customize-bmad.md +182 -0
  42. package/docs/zh-cn/how-to/established-projects.md +134 -0
  43. package/docs/zh-cn/how-to/get-answers-about-bmad.md +144 -0
  44. package/docs/zh-cn/how-to/install-bmad.md +105 -0
  45. package/docs/zh-cn/how-to/non-interactive-installation.md +181 -0
  46. package/docs/zh-cn/how-to/project-context.md +152 -0
  47. package/docs/zh-cn/how-to/quick-fixes.md +140 -0
  48. package/docs/zh-cn/how-to/shard-large-documents.md +86 -0
  49. package/docs/zh-cn/how-to/upgrade-to-v6.md +120 -0
  50. package/docs/zh-cn/index.md +69 -0
  51. package/docs/zh-cn/reference/agents.md +41 -0
  52. package/docs/zh-cn/reference/commands.md +166 -0
  53. package/docs/zh-cn/reference/modules.md +94 -0
  54. package/docs/zh-cn/reference/testing.md +122 -0
  55. package/docs/zh-cn/reference/workflow-map.md +104 -0
  56. package/docs/zh-cn/roadmap.mdx +152 -0
  57. package/docs/zh-cn/tutorials/getting-started.md +300 -0
  58. package/package.json +1 -1
  59. package/src/bmm/agents/analyst.agent.yaml +1 -1
  60. package/src/bmm/agents/bmad-skill-manifest.yaml +39 -0
  61. package/src/bmm/agents/dev.agent.yaml +2 -2
  62. package/src/bmm/agents/pm.agent.yaml +1 -1
  63. package/src/bmm/agents/qa.agent.yaml +1 -1
  64. package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +6 -2
  65. package/src/bmm/agents/sm.agent.yaml +4 -4
  66. package/src/bmm/agents/tech-writer/bmad-skill-manifest.yaml +3 -0
  67. package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +1 -1
  68. package/src/bmm/module-help.csv +11 -10
  69. package/src/bmm/workflows/1-analysis/create-product-brief/bmad-skill-manifest.yaml +3 -0
  70. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +1 -1
  71. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +1 -1
  72. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +1 -1
  73. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +1 -1
  74. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +1 -1
  75. package/src/bmm/workflows/1-analysis/research/bmad-skill-manifest.yaml +14 -0
  76. package/src/bmm/workflows/2-plan-workflows/create-prd/bmad-skill-manifest.yaml +14 -0
  77. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +1 -1
  78. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +1 -1
  79. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +1 -1
  80. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +1 -1
  81. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +1 -1
  82. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +1 -1
  83. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +1 -1
  84. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +1 -1
  85. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +1 -1
  86. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +1 -1
  87. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +1 -1
  88. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +1 -1
  89. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +1 -1
  90. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +1 -1
  91. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +1 -1
  92. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +1 -1
  93. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +1 -1
  94. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +1 -1
  95. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +1 -1
  96. package/src/bmm/workflows/2-plan-workflows/create-ux-design/bmad-skill-manifest.yaml +3 -0
  97. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +1 -1
  98. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +2 -2
  99. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +2 -2
  100. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +2 -2
  101. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +2 -2
  102. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +2 -2
  103. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +2 -2
  104. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +2 -2
  105. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +2 -2
  106. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +2 -2
  107. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +2 -2
  108. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +2 -2
  109. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +1 -1
  110. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/bmad-skill-manifest.yaml +3 -0
  111. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +1 -1
  112. package/src/bmm/workflows/3-solutioning/create-architecture/bmad-skill-manifest.yaml +3 -0
  113. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +2 -2
  114. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +2 -2
  115. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +2 -2
  116. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +2 -2
  117. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +2 -2
  118. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +2 -2
  119. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +1 -1
  120. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/bmad-skill-manifest.yaml +3 -0
  121. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +1 -1
  122. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +1 -1
  123. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +1 -1
  124. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +2 -2
  125. package/src/bmm/workflows/4-implementation/code-review/bmad-skill-manifest.yaml +3 -0
  126. package/src/bmm/workflows/4-implementation/code-review/discover-inputs.md +88 -0
  127. package/src/bmm/workflows/4-implementation/code-review/workflow.md +271 -0
  128. package/src/bmm/workflows/4-implementation/correct-course/bmad-skill-manifest.yaml +3 -0
  129. package/src/bmm/workflows/4-implementation/correct-course/checklist.md +1 -1
  130. package/src/bmm/workflows/4-implementation/correct-course/{instructions.md → workflow.md} +79 -12
  131. package/src/bmm/workflows/4-implementation/create-story/bmad-skill-manifest.yaml +3 -0
  132. package/src/bmm/workflows/4-implementation/create-story/checklist.md +9 -10
  133. package/src/bmm/workflows/4-implementation/create-story/discover-inputs.md +88 -0
  134. package/src/bmm/workflows/4-implementation/create-story/workflow.md +388 -0
  135. package/src/bmm/workflows/4-implementation/dev-story/bmad-skill-manifest.yaml +3 -0
  136. package/src/bmm/workflows/4-implementation/dev-story/{instructions.xml → workflow.md} +49 -2
  137. package/src/bmm/workflows/4-implementation/retrospective/bmad-skill-manifest.yaml +3 -0
  138. package/src/bmm/workflows/4-implementation/retrospective/{instructions.md → workflow.md} +64 -23
  139. package/src/bmm/workflows/4-implementation/sprint-planning/bmad-skill-manifest.yaml +3 -0
  140. package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +1 -0
  141. package/src/bmm/workflows/4-implementation/sprint-planning/{instructions.md → workflow.md} +55 -10
  142. package/src/bmm/workflows/4-implementation/sprint-status/bmad-skill-manifest.yaml +3 -0
  143. package/src/bmm/workflows/4-implementation/sprint-status/{instructions.md → workflow.md} +45 -8
  144. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/SKILL.md +6 -0
  145. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/bmad-skill-manifest.yaml +1 -0
  146. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-01-clarify-and-route.md +54 -0
  147. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-02-plan.md +39 -0
  148. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-03-implement.md +35 -0
  149. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-04-review.md +55 -0
  150. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/steps/step-05-present.md +19 -0
  151. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/tech-spec-template.md +90 -0
  152. package/src/bmm/workflows/bmad-quick-flow/bmad-quick-dev-new-preview/workflow.md +84 -0
  153. package/src/bmm/workflows/bmad-quick-flow/quick-dev/bmad-skill-manifest.yaml +3 -0
  154. package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +8 -14
  155. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +1 -1
  156. package/src/bmm/workflows/bmad-quick-flow/quick-spec/bmad-skill-manifest.yaml +3 -0
  157. package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +4 -6
  158. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +1 -1
  159. package/src/bmm/workflows/document-project/bmad-skill-manifest.yaml +3 -0
  160. package/src/bmm/workflows/document-project/instructions.md +5 -7
  161. package/src/bmm/workflows/document-project/workflow.md +39 -0
  162. package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -1
  163. package/src/bmm/workflows/document-project/workflows/deep-dive-workflow.md +42 -0
  164. package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1
  165. package/src/bmm/workflows/document-project/workflows/full-scan-workflow.md +42 -0
  166. package/src/bmm/workflows/generate-project-context/bmad-skill-manifest.yaml +3 -0
  167. package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +2 -2
  168. package/src/bmm/workflows/qa-generate-e2e-tests/bmad-skill-manifest.yaml +3 -0
  169. package/src/bmm/workflows/qa-generate-e2e-tests/checklist.md +1 -1
  170. package/src/bmm/workflows/qa-generate-e2e-tests/{instructions.md → workflow.md} +40 -7
  171. package/src/core/agents/bmad-master.agent.yaml +1 -1
  172. package/src/core/agents/bmad-skill-manifest.yaml +3 -0
  173. package/src/core/module-help.csv +3 -3
  174. package/src/core/module.yaml +1 -1
  175. package/src/core/tasks/bmad-help/SKILL.md +6 -0
  176. package/src/core/tasks/bmad-help/bmad-skill-manifest.yaml +1 -0
  177. package/src/core/tasks/{help.md → bmad-help/workflow.md} +6 -4
  178. package/src/core/tasks/bmad-review-adversarial-general/SKILL.md +6 -0
  179. package/src/core/tasks/bmad-review-adversarial-general/bmad-skill-manifest.yaml +1 -0
  180. package/src/core/tasks/bmad-review-adversarial-general/workflow.md +32 -0
  181. package/src/core/tasks/bmad-review-edge-case-hunter/SKILL.md +6 -0
  182. package/src/core/tasks/bmad-review-edge-case-hunter/bmad-skill-manifest.yaml +1 -0
  183. package/src/core/tasks/bmad-review-edge-case-hunter/workflow.md +62 -0
  184. package/src/core/tasks/bmad-skill-manifest.yaml +19 -0
  185. package/src/core/workflows/advanced-elicitation/bmad-skill-manifest.yaml +3 -0
  186. package/src/core/workflows/advanced-elicitation/workflow.md +138 -0
  187. package/src/core/workflows/brainstorming/bmad-skill-manifest.yaml +3 -0
  188. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +1 -1
  189. package/src/core/workflows/brainstorming/workflow.md +1 -1
  190. package/src/core/workflows/party-mode/bmad-skill-manifest.yaml +3 -0
  191. package/src/utility/agent-components/activation-steps.txt +2 -2
  192. package/src/utility/agent-components/handler-multi.txt +1 -2
  193. package/test/adversarial-review-tests/README.md +3 -3
  194. package/test/adversarial-review-tests/test-cases.yaml +2 -2
  195. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +1 -1
  196. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +1 -1
  197. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +1 -2
  198. package/test/fixtures/file-refs-csv/valid/bmm-style.csv +1 -1
  199. package/test/test-file-refs-csv.js +1 -1
  200. package/test/test-install-to-bmad.js +154 -0
  201. package/test/test-installation-components.js +1586 -2
  202. package/test/test-workflow-path-regex.js +88 -0
  203. package/tools/cli/installers/lib/core/installer.js +34 -1
  204. package/tools/cli/installers/lib/core/manifest-generator.js +328 -35
  205. package/tools/cli/installers/lib/ide/_base-ide.js +24 -15
  206. package/tools/cli/installers/lib/ide/_config-driven.js +472 -53
  207. package/tools/cli/installers/lib/ide/manager.js +23 -61
  208. package/tools/cli/installers/lib/ide/platform-codes.yaml +108 -30
  209. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +1 -0
  210. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +7 -0
  211. package/tools/cli/installers/lib/ide/shared/path-utils.js +68 -3
  212. package/tools/cli/installers/lib/ide/shared/skill-manifest.js +90 -0
  213. package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +2 -0
  214. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +6 -145
  215. package/tools/cli/installers/lib/modules/manager.js +9 -132
  216. package/tools/cli/lib/agent/compiler.js +1 -10
  217. package/tools/cli/lib/agent-analyzer.js +2 -14
  218. package/tools/cli/lib/yaml-xml-builder.js +1 -18
  219. package/tools/docs/native-skills-migration-checklist.md +281 -0
  220. package/tools/platform-codes.yaml +1 -1
  221. package/tools/schema/agent.js +1 -3
  222. package/tools/validate-file-refs.js +2 -0
  223. package/website/astro.config.mjs +24 -3
  224. package/website/src/content/config.ts +2 -1
  225. package/website/src/content/i18n/zh-CN.json +28 -0
  226. package/src/bmm/workflows/4-implementation/code-review/instructions.xml +0 -227
  227. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -43
  228. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -53
  229. package/src/bmm/workflows/4-implementation/create-story/instructions.xml +0 -346
  230. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -52
  231. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -20
  232. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -52
  233. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -47
  234. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +0 -25
  235. package/src/bmm/workflows/document-project/workflow.yaml +0 -22
  236. package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
  237. package/src/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
  238. package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +0 -42
  239. package/src/core/tasks/review-adversarial-general.xml +0 -49
  240. package/src/core/tasks/review-edge-case-hunter.xml +0 -63
  241. package/src/core/tasks/workflow.xml +0 -235
  242. package/src/core/workflows/advanced-elicitation/workflow.xml +0 -118
  243. package/src/utility/agent-components/handler-validate-workflow.txt +0 -7
  244. package/src/utility/agent-components/handler-workflow.txt +0 -10
  245. package/tools/cli/installers/lib/ide/codex.js +0 -440
  246. package/tools/cli/installers/lib/ide/github-copilot.js +0 -699
  247. package/tools/cli/installers/lib/ide/kilo.js +0 -269
  248. package/tools/cli/installers/lib/ide/rovodev.js +0 -257
  249. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +0 -14
  250. package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +0 -15
  251. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +0 -13
  252. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +0 -5
@@ -0,0 +1,177 @@
1
+ ---
2
+ name: bmad-os-review-prompt
3
+ description: Review LLM workflow step prompts for known failure modes (silent ignoring, negation fragility, scope creep, etc). Use when user asks to "review a prompt" or "audit a workflow step".
4
+ ---
5
+
6
+ # Prompt Review Skill: PromptSentinel v1.2
7
+
8
+ **Version:** v1.2
9
+ **Date:** March 2026
10
+ **Target Models:** Frontier LLMs (Claude 4.6, GPT-5.3, Gemini 3.1 Pro and equivalents) executing autonomous multi-step workflows at million-executions-per-day scale
11
+ **Purpose:** Detect and eliminate LLM-specific failure modes that survive generic editing, few-shot examples, and even multi-layer prompting. Output is always actionable, quoted, risk-quantified, and mitigation-ready.
12
+
13
+ ---
14
+
15
+ ### System Role (copy verbatim into reviewer agent)
16
+
17
+ You are **PromptSentinel v1.2**, a Prompt Auditor for production-grade LLM agent systems.
18
+
19
+ Your sole objective is to prevent silent, non-deterministic, or cascading failures in prompts that will be executed millions of times daily across heterogeneous models, tool stacks, and sub-agent contexts.
20
+
21
+ **Core Principles (required for every finding)**
22
+ - Every finding must populate all columns of the output table defined in the Strict Output Format section.
23
+ - Every finding must include: exact quote/location, failure mode ID or "ADV" (adversarial) / "PATH" (path-trace), production-calibrated risk, and a concrete mitigation with positive, deterministic rewritten example.
24
+ - Assume independent sub-agent contexts, variable context-window pressure, and model variance.
25
+
26
+ ---
27
+
28
+ ### Mandatory Review Procedure
29
+
30
+ Execute steps in order. Steps 0-1 run sequentially. Steps 2A/2B/2C run in parallel. Steps 3-4 run sequentially after all parallel tracks complete.
31
+
32
+ ---
33
+
34
+ **Step 0: Input Validation**
35
+ If the input is not a clear LLM instruction prompt (raw code, data table, empty, or fewer than 50 tokens), output exactly:
36
+ `INPUT_NOT_A_PROMPT: [one-sentence reason]. Review aborted.`
37
+ and stop.
38
+
39
+ **Step 1: Context & Dependency Inventory**
40
+ Parse the entire prompt. Derive the **Prompt Title** as follows:
41
+ - First # or ## heading if present, OR
42
+ - Filename if provided, OR
43
+ - First complete sentence (truncated to 80 characters).
44
+
45
+ Build an explicit inventory table listing:
46
+ - All numbered/bulleted steps
47
+ - All variables, placeholders, file references, prior-step outputs
48
+ - All conditionals, loops, halts, tool calls
49
+ - All assumptions about persistent memory or ordering
50
+
51
+ Flag any unresolved dependencies.
52
+ Step 1 is complete when the full inventory table is populated.
53
+
54
+ This inventory is shared context for all three parallel tracks below.
55
+
56
+ ---
57
+
58
+ ### Step 2: Three Parallel Review Tracks
59
+
60
+ Launch all three tracks concurrently. Each track produces findings in the same table format. Tracks are independent — no track reads another track's output.
61
+
62
+ ---
63
+
64
+ **Track A: Adversarial Review (sub-agent)**
65
+
66
+ Spawn a sub-agent with the following brief and the full prompt text. Give it the Step 1 inventory for reference. Give it NO catalog, NO checklist, and NO further instructions beyond this brief:
67
+
68
+ > You are reviewing an LLM prompt that will execute millions of times daily across different models. Find every way this prompt could fail, produce wrong results, or behave inconsistently. For each issue found, provide: exact quote or location, what goes wrong at scale, and a concrete fix. Use only training knowledge — rely on your own judgment, not any external checklist.
69
+
70
+ Track A is complete when the sub-agent returns its findings.
71
+
72
+ ---
73
+
74
+ **Track B: Catalog Scan + Execution Simulation (main agent)**
75
+
76
+ **B.1 — Failure Mode Audit**
77
+ Scan the prompt against all 17 failure modes in the catalog below. Quote every relevant instance. For modes with zero findings, list them in a single summary line (e.g., "Modes 3, 7, 10, 12: no instances found").
78
+ B.1 is complete when every mode has been explicitly checked.
79
+
80
+ **B.2 — Execution Simulation**
81
+ Simulate the prompt under 3 scenarios:
82
+ - Scenario A: Small-context model (32k window) under load
83
+ - Scenario B: Large-context model (200k window), fresh session
84
+ - Scenario C: Different model vendor with weaker instruction-following
85
+
86
+ For each scenario, produce one row in this table:
87
+
88
+ | Scenario | Likely Failure Location | Failure Mode | Expected Symptom |
89
+ |----------|-------------------------|--------------|------------------|
90
+
91
+ B.2 is complete when the table contains 3 fully populated rows.
92
+
93
+ Track B is complete when both B.1 and B.2 are finished.
94
+
95
+ ---
96
+
97
+ **Track C: Prompt Path Tracer (sub-agent)**
98
+
99
+ Spawn a sub-agent with the following brief, the full prompt text, and the Step 1 inventory:
100
+
101
+ > You are a mechanical path tracer for LLM prompts. Walk every execution path through this prompt — every conditional, branch, loop, halt, optional step, tool call, and error path. For each path, determine: is the entry condition unambiguous? Is there a defined done-state? Are all required inputs guaranteed to be available? Report only paths with gaps — discard clean paths silently.
102
+ >
103
+ > For each finding, provide:
104
+ > - **Location**: step/section reference
105
+ > - **Path**: the specific conditional or branch
106
+ > - **Gap**: what is missing (unclear entry, no done-state, unresolved input)
107
+ > - **Fix**: concrete rewrite that closes the gap
108
+
109
+ Track C is complete when the sub-agent returns its findings.
110
+
111
+ ---
112
+
113
+ **Step 3: Merge & Deduplicate**
114
+
115
+ Collect all findings from Tracks A, B, and C. Tag each finding with its source (ADV, catalog mode number, or PATH). Deduplicate by exact quote — when multiple tracks flag the same issue, keep the finding with the most specific mitigation and note all sources.
116
+
117
+ Assign severity to each finding: Critical / High / Medium / Low.
118
+
119
+ Step 3 is complete when the merged, deduplicated, severity-scored findings table is populated.
120
+
121
+ **Step 4: Final Synthesis**
122
+
123
+ Format the entire review using the Strict Output Format below. Emit the complete review only after Step 3 is finished.
124
+
125
+ ---
126
+
127
+ ### Complete Failure Mode Catalog (Track B — scan all 17)
128
+
129
+ 1. **Silent Ignoring** — Instructions buried mid-paragraph, nested >2-deep conditionals, parentheticals, or "also remember to..." after long text.
130
+ 2. **Ambiguous Completion** — Steps with no observable done-state or verification criterion ("think about it", "finalize").
131
+ 3. **Context Window Assumptions** — References to "previous step output", "the file we created earlier", or variables not re-passed.
132
+ 4. **Over-specification vs Under-specification** — Wall-of-text detail causing selective attention OR vague verbs inviting hallucination.
133
+ 5. **Non-deterministic Phrasing** — "Consider", "you may", "if appropriate", "best way", "optionally", "try to".
134
+ 6. **Negation Fragility** — "Do NOT", "avoid", "never" (especially multiple or under load).
135
+ 7. **Implicit Ordering** — Step B assumes Step A completed without explicit sequencing or guardrails.
136
+ 8. **Variable Resolution Gaps** — `{{VAR}}` or "the result from tool X" never initialized upstream.
137
+ 9. **Scope Creep Invitation** — "Explore", "improve", "make it better", open-ended goals without hard boundaries.
138
+ 10. **Halt / Checkpoint Gaps** — Human-in-loop required but no explicit `STOP_AND_WAIT_FOR_HUMAN` or output format that forces pause.
139
+ 11. **Teaching Known Knowledge** — Re-explaining basic facts, tool usage, or reasoning patterns frontier models already know (2026 cutoff).
140
+ 12. **Obsolete Prompting Techniques** — Outdated patterns (vanilla "think step by step" without modern scaffolding, deprecated few-shot styles).
141
+ 13. **Missing Strict Output Schema** — No enforced JSON mode or structured output format.
142
+ 14. **Missing Error Handling** — No recovery instructions for tool failures, timeouts, or malformed inputs.
143
+ 15. **Missing Success Criteria** — No quality gates or measurable completion standards.
144
+ 16. **Monolithic Prompt Anti-pattern** — Single large prompt that should be split into specialized sub-agents.
145
+ 17. **Missing Grounding Instructions** — Factual claims required without explicit requirement to base them on retrieved evidence.
146
+
147
+ ---
148
+
149
+ ### Strict Output Format (use this template exactly as shown)
150
+
151
+ ```markdown
152
+ # PromptSentinel Review: [Derived Prompt Title]
153
+
154
+ **Overall Risk Level:** Critical / High / Medium / Low
155
+ **Critical Issues:** X | **High:** Y | **Medium:** Z | **Low:** W
156
+ **Estimated Production Failure Rate if Unfixed:** ~XX% of runs
157
+
158
+ ## Critical & High Findings
159
+ | # | Source | Failure Mode | Exact Quote / Location | Risk (High-Volume) | Mitigation & Rewritten Example |
160
+ |---|--------|--------------|------------------------|--------------------|-------------------------------|
161
+ | | | | | | |
162
+
163
+ ## Medium & Low Findings
164
+ (same table format)
165
+
166
+ ## Positive Observations
167
+ (only practices that actively mitigate known failure modes)
168
+
169
+ ## Recommended Refactor Summary
170
+ - Highest-leverage changes (bullets)
171
+
172
+ ## Revised Prompt Sections (Critical/High items only)
173
+ Provide full rewritten paragraphs/sections with changes clearly marked.
174
+
175
+ **Reviewer Confidence:** XX/100
176
+ **Review Complete** – ready for re-submission or automated patching.
177
+ ```
@@ -0,0 +1,243 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - "src/**"
8
+ - "tools/cli/**"
9
+ - "package.json"
10
+ workflow_dispatch:
11
+ inputs:
12
+ channel:
13
+ description: "Publish channel"
14
+ required: true
15
+ default: "latest"
16
+ type: choice
17
+ options:
18
+ - latest
19
+ - next
20
+ bump:
21
+ description: "Version bump type (latest channel only)"
22
+ required: false
23
+ default: "patch"
24
+ type: choice
25
+ options:
26
+ - patch
27
+ - minor
28
+ - major
29
+
30
+ concurrency:
31
+ group: publish
32
+ cancel-in-progress: ${{ github.event_name == 'push' }}
33
+
34
+ permissions:
35
+ id-token: write
36
+ contents: write
37
+
38
+ jobs:
39
+ publish:
40
+ if: github.event_name != 'workflow_dispatch' || github.ref == 'refs/heads/main'
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - name: Checkout
44
+ uses: actions/checkout@v4
45
+ with:
46
+ fetch-depth: 0
47
+ token: ${{ secrets.GITHUB_TOKEN }}
48
+
49
+ - name: Setup Node
50
+ uses: actions/setup-node@v4
51
+ with:
52
+ node-version-file: ".nvmrc"
53
+ cache: "npm"
54
+
55
+ - name: Ensure trusted publishing toolchain
56
+ run: |
57
+ # npm trusted publishing requires Node >= 22.14.0 and npm >= 11.5.1.
58
+ npm install --global npm@11.6.2
59
+ echo "Node: $(node --version)"
60
+ echo "npm: $(npm --version)"
61
+
62
+ - name: Debug npm auth config surface
63
+ run: |
64
+ USERCONFIG=$(npm config get userconfig)
65
+ echo "npm userconfig: $USERCONFIG"
66
+ if [ -f "$USERCONFIG" ]; then
67
+ if rg -n "_authToken|always-auth|registry.npmjs.org" "$USERCONFIG" >/dev/null 2>&1; then
68
+ echo "npm userconfig contains registry auth-related entries"
69
+ rg -n "_authToken|always-auth|registry.npmjs.org" "$USERCONFIG" | sed -E 's/(_authToken=).*/\1***MASKED***/'
70
+ else
71
+ echo "npm userconfig has no registry auth-related entries"
72
+ fi
73
+ else
74
+ echo "npm userconfig file not found"
75
+ fi
76
+
77
+ - name: Debug trusted publishing identity
78
+ run: |
79
+ echo "GitHub workflow context:"
80
+ echo " repository: ${{ github.repository }}"
81
+ echo " repository_owner: ${{ github.repository_owner }}"
82
+ echo " ref: ${{ github.ref }}"
83
+ echo " event_name: ${{ github.event_name }}"
84
+ echo " workflow: ${{ github.workflow }}"
85
+ echo " workflow_ref: ${{ github.workflow_ref }}"
86
+ echo " actor: ${{ github.actor }}"
87
+ echo " selected_channel: ${{ inputs.channel || 'n/a' }}"
88
+ echo " selected_bump: ${{ inputs.bump || 'n/a' }}"
89
+ if [ "${NODE_AUTH_TOKEN+x}" = "x" ]; then
90
+ if [ -n "$NODE_AUTH_TOKEN" ]; then
91
+ echo " node_auth_token_state: set-nonempty"
92
+ else
93
+ echo " node_auth_token_state: set-empty"
94
+ fi
95
+ else
96
+ echo " node_auth_token_state: unset"
97
+ fi
98
+
99
+ WORKFLOW_FILE=$(node -e "
100
+ const ref = process.argv[1] || '';
101
+ const match = ref.match(/\.github\/workflows\/([^@]+)@/);
102
+ process.stdout.write(match ? match[1] : '');
103
+ " "${{ github.workflow_ref }}")
104
+ echo " workflow_filename_for_npm: ${WORKFLOW_FILE:-unknown}"
105
+
106
+ echo "OIDC claims (sanitized):"
107
+ RESPONSE=$(curl -fsS -H "Authorization: Bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "${ACTIONS_ID_TOKEN_REQUEST_URL}&audience=npm:registry.npmjs.org")
108
+ ID_TOKEN=$(node -e "
109
+ const fs = require('fs');
110
+ const data = JSON.parse(fs.readFileSync(0, 'utf8'));
111
+ process.stdout.write(data.value || '');
112
+ " <<<"$RESPONSE")
113
+
114
+ node -e "
115
+ const token = process.argv[1];
116
+ if (!token) {
117
+ console.log(JSON.stringify({ error: 'missing_id_token' }, null, 2));
118
+ process.exit(0);
119
+ }
120
+ const payloadPart = token.split('.')[1] || '';
121
+ const padded = payloadPart.replace(/-/g, '+').replace(/_/g, '/') + '='.repeat((4 - (payloadPart.length % 4)) % 4);
122
+ const claims = JSON.parse(Buffer.from(padded, 'base64').toString('utf8'));
123
+ const out = {
124
+ iss: claims.iss,
125
+ sub: claims.sub,
126
+ aud: claims.aud,
127
+ repository: claims.repository,
128
+ repository_owner: claims.repository_owner,
129
+ workflow: claims.workflow,
130
+ workflow_ref: claims.workflow_ref,
131
+ job_workflow_ref: claims.job_workflow_ref,
132
+ ref: claims.ref,
133
+ environment: claims.environment || null,
134
+ runner_environment: claims.runner_environment || null,
135
+ };
136
+ console.log(JSON.stringify(out, null, 2));
137
+ " "$ID_TOKEN"
138
+
139
+ - name: Configure git user
140
+ if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
141
+ run: |
142
+ git config user.name "github-actions[bot]"
143
+ git config user.email "github-actions[bot]@users.noreply.github.com"
144
+
145
+ - name: Install dependencies
146
+ run: npm ci
147
+
148
+ - name: Run tests
149
+ run: npm test
150
+
151
+ - name: Derive next prerelease version
152
+ if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.channel == 'next')
153
+ run: |
154
+ NEXT_VER=$(npm view bmad-method@next version 2>/dev/null || echo "")
155
+ LATEST_VER=$(npm view bmad-method@latest version 2>/dev/null || echo "")
156
+
157
+ # Determine the best base version for the next prerelease.
158
+ BASE=$(node -e "
159
+ const semver = require('semver');
160
+ const next = process.argv[1] || null;
161
+ const latest = process.argv[2] || null;
162
+ if (!next && !latest) process.exit(0);
163
+ if (!next) { console.log(latest); process.exit(0); }
164
+ if (!latest) { console.log(next); process.exit(0); }
165
+ const nextBase = next.replace(/-next\.\d+$/, '');
166
+ console.log(semver.gt(latest, nextBase) ? latest : next);
167
+ " "$NEXT_VER" "$LATEST_VER")
168
+
169
+ if [ -n "$BASE" ]; then
170
+ npm version "$BASE" --no-git-tag-version --allow-same-version
171
+ fi
172
+ npm version prerelease --preid=next --no-git-tag-version
173
+
174
+ - name: Bump stable version
175
+ if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
176
+ run: 'npm version ${{ inputs.bump }} -m "chore(release): v%s [skip ci]"'
177
+
178
+ - name: Debug publish target and registry state
179
+ run: |
180
+ echo "Local package target:"
181
+ node -e "
182
+ const pkg = require('./package.json');
183
+ console.log(JSON.stringify({ name: pkg.name, version: pkg.version }, null, 2));
184
+ "
185
+
186
+ echo "Registry package view (bmad-method):"
187
+ npm view bmad-method name version dist-tags --json || true
188
+
189
+ - name: Publish prerelease to npm
190
+ if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.channel == 'next')
191
+ run: npm publish --tag next --provenance
192
+
193
+ - name: Publish stable release to npm
194
+ if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
195
+ run: npm publish --tag latest --provenance
196
+
197
+ - name: Print npm debug logs
198
+ if: always()
199
+ run: |
200
+ LOG_DIR="$HOME/.npm/_logs"
201
+ echo "npm log directory: $LOG_DIR"
202
+ ls -la "$LOG_DIR" || true
203
+
204
+ found=0
205
+ for file in "$LOG_DIR"/*-debug-0.log; do
206
+ [ -e "$file" ] || continue
207
+ found=1
208
+ echo "::group::npm-debug $(basename "$file")"
209
+ cat "$file"
210
+ echo "::endgroup::"
211
+ done
212
+
213
+ if [ "$found" -eq 0 ]; then
214
+ echo "No npm *-debug-0.log files found."
215
+ fi
216
+
217
+ - name: Push version commit and tag
218
+ if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
219
+ run: git push origin main --follow-tags
220
+
221
+ - name: Create GitHub Release
222
+ if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
223
+ run: |
224
+ TAG="v$(node -p 'require("./package.json").version')"
225
+ gh release create "$TAG" --generate-notes
226
+ env:
227
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
228
+
229
+ - name: Notify Discord
230
+ if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
231
+ continue-on-error: true
232
+ run: |
233
+ set -o pipefail
234
+ source .github/scripts/discord-helpers.sh
235
+ [ -z "$WEBHOOK" ] && exit 0
236
+
237
+ VERSION=$(node -p 'require("./package.json").version')
238
+ RELEASE_URL="${{ github.server_url }}/${{ github.repository }}/releases/tag/v${VERSION}"
239
+ MSG=$(printf '📦 **[bmad-method v%s released](<%s>)**' "$VERSION" "$RELEASE_URL" | esc)
240
+
241
+ jq -n --arg content "$MSG" '{content: $content}' | curl -sf --retry 2 -X POST "$WEBHOOK" -H "Content-Type: application/json" -d @-
242
+ env:
243
+ WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
package/CONTRIBUTING.md CHANGED
@@ -73,7 +73,7 @@ After searching, use the [feature request template](https://github.com/bmad-code
73
73
 
74
74
  ### Target Branch
75
75
 
76
- Submit PRs to the `main` branch. We use [trunk-based development](https://trunkbaseddevelopment.com/branch-for-release/): `main` is the trunk where all work lands, and stable release branches receive only cherry-picked fixes.
76
+ Submit PRs to the `main` branch. We use trunk-based development. Every push to `main` auto-publishes to `npm` under the `next` tag. Stable releases are cut ~weekly to the `latest` tag.
77
77
 
78
78
  ### PR Size
79
79
 
package/README_CN.md ADDED
@@ -0,0 +1,121 @@
1
+ ![BMad Method](banner-bmad-method.png)
2
+
3
+ [![Version](https://img.shields.io/npm/v/bmad-method?color=blue&label=version)](https://www.npmjs.com/package/bmad-method)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen)](https://nodejs.org)
6
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Community-7289da?logo=discord&logoColor=white)](https://discord.gg/gk8jAdXWmj)
7
+
8
+ **突破性敏捷 AI 驱动开发方法** — 简称 “BMAD 方法论” ,BMAD方法论是由多个模块生态构成的AI驱动敏捷开发模块系统,这是最佳且最全面的敏捷 AI 驱动开发框架,具备真正的规模自适应人工智能,可适应快速开发,适应企业规模化开发。
9
+
10
+ **100% 免费且开源。** 无付费。无内容门槛。无封闭 Discord。我们赋能每个人,我们将为全球现在在人工智能领域发展的普通人提供公平的学习机会。
11
+
12
+ ## 为什么选择 BMad 方法?
13
+
14
+ 传统 AI 工具替你思考,产生平庸的结果。BMad 智能体和辅助工作流充当专家协作者,引导你通过结构化流程,与 AI 的合作发挥最佳思维,产出最有效优秀的结果。
15
+
16
+ - **AI 智能帮助** — 随时使用 `/bmad-help` 获取下一步指导
17
+ - **规模-领域自适应** — 根据项目复杂度自动调整规划深度
18
+ - **结构化工作流** — 基于分析、规划、架构和实施的敏捷最佳实践
19
+ - **专业智能体** — 12+ 领域专家(PM、架构师、开发者、UX、Scrum Master 等)
20
+ - **派对模式** — 将多个智能体角色带入一个会话进行协作和讨论
21
+ - **完整生命周期** — 从想法开始(头脑风暴)到部署发布
22
+
23
+ [在 **docs.bmad-method.org** 了解更多](http://docs.bmad-method.org)
24
+
25
+ ---
26
+
27
+ ## 🚀 BMad 的下一步是什么?
28
+
29
+ **V6 已到来,我们才刚刚开始!** BMad 方法正在快速发展,包括跨平台智能体团队和子智能体集成、技能架构、BMad Builder v1、开发循环自动化等优化,以及更多正在开发中的功能。
30
+
31
+ **[📍 查看完整路线图 →](http://docs.bmad-method.org/roadmap/)**
32
+
33
+ ---
34
+
35
+ ## 快速开始
36
+
37
+ **先决条件**:[Node.js](https://nodejs.org) v20+
38
+
39
+ ```bash
40
+ npx bmad-method install
41
+ ```
42
+
43
+ > 如果你获得的是过时的测试版,请使用:`npx bmad-method@6.0.1 install`
44
+
45
+ 按照安装程序提示操作,然后在项目文件夹中打开你的 AI IDE(Claude Code、Cursor 等)。
46
+
47
+ **非交互式安装**(用于 CI/CD):
48
+
49
+ ```bash
50
+ npx bmad-method install --directory /path/to/project --modules bmm --tools claude-code --yes
51
+ ```
52
+
53
+ [查看所有安装选项](http://docs.bmad-method.org/how-to/non-interactive-installation/)
54
+
55
+ > **不确定该做什么?** 运行 `/bmad-help` — 它会准确告诉你下一步做什么以及什么是可选的。你也可以问诸如 `/bmad-help 我刚刚完成了架构设计,接下来该做什么?` 之类的问题。
56
+
57
+ ## 模块
58
+
59
+ BMad 方法通过官方模块扩展到专业领域。可在安装期间或之后的任何时间使用。
60
+
61
+ | Module | Purpose |
62
+ | ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------------- |
63
+ | **[BMad Method (BMM)](https://github.com/bmad-code-org/BMAD-METHOD)** | 包含 34+ 工作流的核心框架 |
64
+ | **[BMad Builder (BMB)](https://github.com/bmad-code-org/bmad-builder)** | 创建自定义 BMad 智能体和工作流 |
65
+ | **[Test Architect (TEA)](https://github.com/bmad-code-org/tea)** | 基于风险的测试策略和自动化 |
66
+ | **[Game Dev Studio (BMGD)](https://github.com/bmad-code-org/bmad-module-game-dev-studio)** | 游戏开发工作流(Unity、Unreal、Godot) |
67
+ | **[Creative Intelligence Suite (CIS)](https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite)** | 创新、头脑风暴、设计思维 |
68
+
69
+ ## 文档
70
+
71
+ [BMad 方法文档站点](http://docs.bmad-method.org) — 教程、指南、概念和参考
72
+
73
+ **快速链接:**
74
+ - [入门教程](http://docs.bmad-method.org/tutorials/getting-started/)
75
+ - [从先前版本升级](http://docs.bmad-method.org/how-to/upgrade-to-v6/)
76
+ - [测试架构师文档](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)
77
+
78
+
79
+ ## 社区
80
+
81
+ - [Discord](https://discord.gg/gk8jAdXWmj) — 获取帮助、分享想法、协作
82
+ - [在 YouTube 上订阅](https://www.youtube.com/@BMadCode) — 教程、大师课和播客(2025 年 2 月推出)
83
+ - [GitHub Issues](https://github.com/bmad-code-org/BMAD-METHOD/issues) — 错误报告和功能请求
84
+ - [讨论](https://github.com/bmad-code-org/BMAD-METHOD/discussions) — 社区对话
85
+
86
+ ## 支持 BMad
87
+
88
+ BMad 对每个人都是免费的 — 并且永远如此。如果你想支持开发:
89
+
90
+ - ⭐ 请点击此页面右上角附近的项目星标图标
91
+ - ☕ [请我喝咖啡](https://buymeacoffee.com/bmad) — 为开发提供动力
92
+ - 🏢 企业赞助 — 在 Discord 上私信
93
+ - 🎤 演讲与媒体 — 可参加会议、播客、采访(在 Discord 上联系 BM)
94
+
95
+ ## 贡献
96
+
97
+ 我们欢迎贡献!请参阅 [CONTRIBUTING.md](CONTRIBUTING.md) 了解指南。
98
+
99
+ ## 许可证
100
+
101
+ MIT 许可证 — 详见 [LICENSE](LICENSE)。
102
+
103
+ ---
104
+
105
+ **BMad** 和 **BMAD-METHOD** 是 BMad Code, LLC 的商标。详见 [TRADEMARK.md](TRADEMARK.md)。
106
+
107
+ [![Contributors](https://contrib.rocks/image?repo=bmad-code-org/BMAD-METHOD)](https://github.com/bmad-code-org/BMAD-METHOD/graphs/contributors)
108
+
109
+ 请参阅 [CONTRIBUTORS.md](CONTRIBUTORS.md) 了解贡献者信息。
110
+
111
+ ---
112
+ ## 术语说明
113
+
114
+ - **agent**:智能体。在人工智能与编程文档中,指具备自主决策或执行能力的单元。
115
+ - **workflow**:工作流。指一系列有序的任务或步骤,用于完成特定目标。
116
+ - **CI/CD**:持续集成/持续部署。一种自动化软件开发实践,用于频繁集成代码更改并自动部署。
117
+ - **IDE**:集成开发环境。提供代码编辑、调试、构建等功能的软件开发工具。
118
+ - **PM**:产品经理。负责产品规划、需求管理和团队协调的角色。
119
+ - **UX**:用户体验。指用户在使用产品或服务过程中的整体感受和交互体验。
120
+ - **Scrum Master**:Scrum 主管。敏捷开发 Scrum 框架中的角色,负责促进团队遵循 Scrum 流程。
121
+ - **PRD**:产品需求文档。详细描述产品功能、需求和规格的文档。
@@ -59,13 +59,13 @@ Critical warnings only — data loss, security issues
59
59
  | 2 | Planning | Requirements — PRD or tech-spec *(required)* |
60
60
  ```
61
61
 
62
- **Commands:**
62
+ **Skills:**
63
63
 
64
64
  ```md
65
- | Command | Agent | Purpose |
65
+ | Skill | Agent | Purpose |
66
66
  | ------------ | ------- | ------------------------------------ |
67
- | `brainstorm` | Analyst | Brainstorm a new project |
68
- | `prd` | PM | Create Product Requirements Document |
67
+ | `bmad-brainstorming` | Analyst | Brainstorm a new project |
68
+ | `bmad-create-prd` | PM | Create Product Requirements Document |
69
69
  ```
70
70
 
71
71
  ## Folder Structure Blocks
@@ -99,7 +99,7 @@ your-project/
99
99
  9. Step 2: [Second Major Task]
100
100
  10. Step 3: [Third Major Task]
101
101
  11. What You've Accomplished (summary + folder structure)
102
- 12. Quick Reference (commands table)
102
+ 12. Quick Reference (skills table)
103
103
  13. Common Questions (FAQ format)
104
104
  14. Getting Help (community links)
105
105
  15. Key Takeaways (tip admonition)
@@ -111,7 +111,7 @@ your-project/
111
111
  - [ ] "What You'll Learn" section present
112
112
  - [ ] Prerequisites in admonition
113
113
  - [ ] Quick Path TL;DR admonition at top
114
- - [ ] Tables for phases, commands, agents
114
+ - [ ] Tables for phases, skills, agents
115
115
  - [ ] "What You've Accomplished" section present
116
116
  - [ ] Quick Reference table present
117
117
  - [ ] Common Questions section present
@@ -243,7 +243,7 @@ your-project/
243
243
  1. Title + Hook
244
244
  2. Items (## for each item)
245
245
  - Brief description (one sentence)
246
- - **Commands:** or **Key Info:** as flat list
246
+ - **Skills:** or **Key Info:** as flat list
247
247
  3. Universal/Shared (## section) (optional)
248
248
  ```
249
249
 
@@ -252,7 +252,7 @@ your-project/
252
252
  ```text
253
253
  1. Title + Hook (one sentence purpose)
254
254
  2. Quick Facts (optional note admonition)
255
- - Module, Command, Input, Output as list
255
+ - Module, Skill, Input, Output as list
256
256
  3. Purpose/Overview (## section)
257
257
  4. How to Invoke (code block)
258
258
  5. Key Sections (## for each aspect)
@@ -280,7 +280,7 @@ your-project/
280
280
  - Diagram or table showing organization
281
281
  3. Major Sections (## for each phase/category)
282
282
  - Items (### for each item)
283
- - Standardized fields: Command, Agent, Input, Output, Description
283
+ - Standardized fields: Skill, Agent, Input, Output, Description
284
284
  4. Next Steps (optional)
285
285
  ```
286
286
 
@@ -353,7 +353,7 @@ Only for BMad Method and Enterprise tracks. Quick Flow skips to implementation.
353
353
 
354
354
  ### Can I change my plan later?
355
355
 
356
- Yes. The SM agent has a `correct-course` workflow for handling scope changes.
356
+ Yes. The SM agent has a `bmad-correct-course` workflow for handling scope changes.
357
357
 
358
358
  **Have a question not answered here?** [Open an issue](...) or ask in [Discord](...).
359
359
  ```
@@ -9,7 +9,7 @@ Unlock your creativity through guided exploration.
9
9
 
10
10
  ## What is Brainstorming?
11
11
 
12
- Run `brainstorming` and you've got a creative facilitator pulling ideas out of you - not generating them for you. The AI acts as coach and guide, using proven techniques to create conditions where your best thinking emerges.
12
+ Run `bmad-brainstorming` and you've got a creative facilitator pulling ideas out of you - not generating them for you. The AI acts as coach and guide, using proven techniques to create conditions where your best thinking emerges.
13
13
 
14
14
  **Good for:**
15
15
 
@@ -9,7 +9,7 @@ Get all your AI agents in one conversation.
9
9
 
10
10
  ## What is Party Mode?
11
11
 
12
- Run `party-mode` and you've got your whole AI team in one room - PM, Architect, Dev, UX Designer, whoever you need. BMad Master orchestrates, picking relevant agents per message. Agents respond in character, agree, disagree, and build on each other's ideas.
12
+ Run `bmad-party-mode` and you've got your whole AI team in one room - PM, Architect, Dev, UX Designer, whoever you need. BMad Master orchestrates, picking relevant agents per message. Agents respond in character, agree, disagree, and build on each other's ideas.
13
13
 
14
14
  The conversation continues as long as you want. Ask follow-ups, push back on answers, redirect the discussion - it's a real back-and-forth with your agents until you're done.
15
15
 
@@ -108,5 +108,5 @@ Common decisions that prevent conflicts:
108
108
  - Document decisions that cross epic boundaries
109
109
  - Focus on conflict-prone areas
110
110
  - Update architecture as you learn
111
- - Use `correct-course` for significant changes
111
+ - Use `bmad-correct-course` for significant changes
112
112
  :::