bmad-method 6.0.2 → 6.0.4

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 (73) hide show
  1. package/.claude/skills/bmad-os-root-cause-analysis/SKILL.md +12 -0
  2. package/.claude/skills/bmad-os-root-cause-analysis/prompts/instructions.md +74 -0
  3. package/.github/ISSUE_TEMPLATE/config.yaml +1 -1
  4. package/.github/ISSUE_TEMPLATE/documentation.yaml +1 -1
  5. package/CHANGELOG.md +40 -0
  6. package/README.md +8 -8
  7. package/docs/index.md +1 -1
  8. package/package.json +1 -1
  9. package/src/bmm/agents/qa.agent.yaml +1 -1
  10. package/src/bmm/module-help.csv +1 -1
  11. package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +1 -1
  12. package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +1 -1
  13. package/src/bmm/workflows/1-analysis/research/workflow-domain-research.md +1 -1
  14. package/src/bmm/workflows/1-analysis/research/workflow-market-research.md +1 -1
  15. package/src/bmm/workflows/1-analysis/research/workflow-technical-research.md +1 -1
  16. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +1 -1
  17. package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +1 -1
  18. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md +1 -1
  19. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md +1 -1
  20. package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +1 -1
  21. package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +1 -1
  22. package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +1 -1
  23. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +1 -1
  24. package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +1 -1
  25. package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +1 -1
  26. package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +1 -1
  27. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +1 -1
  28. package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +1 -1
  29. package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +1 -1
  30. package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +1 -1
  31. package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +1 -1
  32. package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +1 -1
  33. package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +1 -1
  34. package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +1 -1
  35. package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +1 -1
  36. package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +1 -1
  37. package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +1 -1
  38. package/src/bmm/workflows/document-project/workflow.yaml +1 -1
  39. package/src/bmm/workflows/generate-project-context/workflow.md +1 -1
  40. package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +2 -2
  41. package/src/core/module-help.csv +1 -0
  42. package/src/core/tasks/editorial-review-prose.xml +1 -1
  43. package/src/core/tasks/editorial-review-structure.xml +1 -1
  44. package/src/core/tasks/help.md +1 -1
  45. package/src/core/tasks/index-docs.xml +1 -1
  46. package/src/core/tasks/review-adversarial-general.xml +1 -1
  47. package/src/core/tasks/review-edge-case-hunter.xml +63 -0
  48. package/src/core/tasks/shard-doc.xml +1 -1
  49. package/src/core/workflows/advanced-elicitation/workflow.xml +1 -1
  50. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +31 -18
  51. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +1 -1
  52. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +2 -2
  53. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +2 -2
  54. package/src/core/workflows/brainstorming/workflow.md +4 -2
  55. package/src/core/workflows/party-mode/workflow.md +1 -1
  56. package/test/test-installation-components.js +1 -1
  57. package/tools/cli/installers/install-messages.yaml +1 -1
  58. package/tools/cli/installers/lib/core/manifest-generator.js +4 -6
  59. package/tools/cli/installers/lib/ide/_config-driven.js +80 -5
  60. package/tools/cli/installers/lib/ide/manager.js +3 -1
  61. package/tools/cli/installers/lib/ide/platform-codes.yaml +11 -2
  62. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -1
  63. package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +3 -3
  64. package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +1 -1
  65. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +1 -1
  66. package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +1 -1
  67. package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +1 -1
  68. package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +0 -1
  69. package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +0 -1
  70. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +0 -1
  71. package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +0 -1
  72. package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +2 -2
  73. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +1 -1
@@ -0,0 +1,12 @@
1
+ ---
2
+ name: bmad-os-root-cause-analysis
3
+ description: Analyzes a bug-fix commit or PR and produces a structured Root Cause Analysis report covering what went wrong, why, and what guardrails failed.
4
+ license: MIT
5
+ disable-model-invocation: true
6
+ metadata:
7
+ author: bmad-code-org
8
+ version: "1.0.0"
9
+ compatibility: Requires gh CLI and git repository
10
+ ---
11
+
12
+ Read `prompts/instructions.md` and execute.
@@ -0,0 +1,74 @@
1
+ # Bug-Fix Root Cause Analysis
2
+
3
+ Analyze a bug-fix commit or PR and produce a structured Root Cause Analysis report.
4
+
5
+ ## Principles
6
+
7
+ - **Direct attribution.** This report names the individual who introduced the defect. Industry convention advocates blameless postmortems. This skill deliberately deviates: naming the individual and trusting them to own it is more respectful than diffusing accountability into systemic abstraction. Direct, factual, not accusatory. If authorship can't be determined confidently, say so.
8
+ - **Pyramid communication.** The executive summary must convey the full picture. A reader who stops after the first paragraph gets the gist. Everything else is supporting evidence.
9
+
10
+ ## Preflight
11
+
12
+ Verify `gh auth status` and that you're in a git repository. Stop with a clear message if either fails.
13
+
14
+ ## Execution
15
+
16
+ 1. **Identify the fix.** Accept whatever the user provides — commit SHA, PR, issue, description. Resolve to the specific fix commit/PR using `gh` and `git`. If ambiguous, ask. Confirm the change is actually a bug fix before proceeding.
17
+ 2. **Gather evidence.** Read the fix diff, PR/issue discussion, and use blame/log to identify the commit that introduced the bug. Collect timeline data.
18
+ 3. **Analyze.** Apply 5 Whys. Classify the root cause. Identify contributing factors.
19
+ 4. **Evaluate guardrails.** Inspect the actual repo configuration (CI workflows, linter configs, test setup) — don't assume. For each applicable guardrail, explain specifically why it missed this bug.
20
+ 5. **Write the report** to `_bmad-output/rca-reports/rca-{YYYY-MM-DD}-{slug}.md`. Present the executive summary in chat.
21
+
22
+ ## Report Structure
23
+
24
+ ```markdown
25
+ # Root Cause Analysis: {Bug Title}
26
+
27
+ **Date:** {today}
28
+ **Fix:** {PR link or commit SHA}
29
+ **Severity:** {Critical | High | Medium | Low}
30
+ **Root Cause Category:** {Requirements | Design | Code Logic | Test Gap | Process | Environment/Config}
31
+
32
+ ## Executive Summary
33
+
34
+ {One paragraph. What the bug was, root cause, who introduced it and when, detection
35
+ latency (introduced → detected), severity, and the key preventive recommendation.}
36
+
37
+ ## What Was the Problem?
38
+
39
+ ## When Did It Happen?
40
+
41
+ | Event | Date | Reference |
42
+ |-------|------|-----------|
43
+ | Introduced | | |
44
+ | Detected | | |
45
+ | Fixed | | |
46
+ | **Detection Latency** | **{introduced → detected}** | |
47
+
48
+ ## Who Caused It?
49
+
50
+ {Author, commit/PR that introduced the defect, and the context — what were they
51
+ trying to do?}
52
+
53
+ ## How Did It Happen?
54
+
55
+ ## Why Did It Happen?
56
+
57
+ {5 Whys analysis. Root cause category. Contributing factors.}
58
+
59
+ ## Failed Guardrails Analysis
60
+
61
+ | Guardrail | In Place? | Why It Failed |
62
+ |-----------|-----------|---------------|
63
+ | | | |
64
+
65
+ **Most Critical Failure:** {Which one mattered most and why.}
66
+
67
+ ## Resolution
68
+
69
+ ## Corrective & Preventive Actions
70
+
71
+ | # | Action | Type | Priority |
72
+ |---|--------|------|----------|
73
+ | | | {Prevent/Detect/Mitigate} | |
74
+ ```
@@ -1,7 +1,7 @@
1
1
  blank_issues_enabled: false
2
2
  contact_links:
3
3
  - name: 📚 Documentation
4
- url: http://docs.bmad-method.org
4
+ url: https://docs.bmad-method.org
5
5
  about: Check the docs first — tutorials, guides, and reference
6
6
  - name: 💬 Discord Community
7
7
  url: https://discord.gg/gk8jAdXWmj
@@ -28,7 +28,7 @@ body:
28
28
  attributes:
29
29
  label: Documentation location
30
30
  description: Where is the documentation that needs improvement?
31
- placeholder: e.g., http://docs.bmad-method.org/tutorials/getting-started/ or "In the README"
31
+ placeholder: e.g., https://docs.bmad-method.org/tutorials/getting-started/ or "In the README"
32
32
  validations:
33
33
  required: true
34
34
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.0.4]
4
+
5
+ ### 🎁 Features
6
+
7
+ * Add edge case hunter review task - new reusable review task that exhaustively traces branching paths and boundary conditions in code, reporting only unhandled gaps. Method-driven analysis complementary to adversarial review (#1790)
8
+
9
+ ### 🐛 Bug Fixes
10
+
11
+ * Fix brainstorming to not overwrite previous sessions; now prompts to continue existing brainstorming or start a new one when older brainstorming sessions are found
12
+ * Fix installer templates - replace legacy `@` path prefixes with explicit `{project-root}` syntax for consistency (#1769)
13
+ * Fix edge case hunter - remove zero-findings halt condition that was pressuring the LLM to hallucinate findings when none legitimately exist (#1797)
14
+ * Fix broken docs domain references in README and GitHub issue templates (#1777)
15
+
16
+ ---
17
+
18
+ ## [6.0.3]
19
+
20
+ ### 🎁 Features
21
+
22
+ * Add bmad-os-root-cause-analysis skill for analyzing bug-fix commits and producing structured root cause analysis reports with pyramid communication format (#1741)
23
+
24
+ ### 🐛 Bug Fixes
25
+
26
+ * Fix installer to refuse installation when ancestor directory has BMAD commands, preventing duplicate command autocompletion in nested directories (#1735)
27
+ * Fix OpenCode integration by replacing unsupported `name` frontmatter with `mode: all` and update directory names to plural form (#1764)
28
+ * Fix CSV manifest pipeline double-escaping of quotes that was corrupting output files; switch Gemini templates to single quotes (#1746)
29
+ * Fix workflow descriptions to use proper quotes so they format better in skill conversion and don't break yaml front matter
30
+ * Fix workflow help task chaining by removing ambiguous "with-argument" clause that caused LLMs to misinterpret help.md as skill calls (#1740)
31
+
32
+ ### ♻️ Refactoring
33
+
34
+ * Standardize all workflow descriptions to use proper quotes to prevent breaking command or skill front matter during skill conversion
35
+
36
+ ### 📚 Documentation
37
+
38
+ * Fix broken TEA hyperlinks to point to new repository URL (#1772)
39
+ * Rebrand BMAD acronym to "Build More Architect Dreams" across documentation (#1765)
40
+
41
+ ---
42
+
3
43
  ## [6.0.2]
4
44
 
5
45
  ### 🎁 Features
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen)](https://nodejs.org)
6
6
  [![Discord](https://img.shields.io/badge/Discord-Join%20Community-7289da?logo=discord&logoColor=white)](https://discord.gg/gk8jAdXWmj)
7
7
 
8
- **Breakthrough Method of Agile AI Driven Development** — An AI-driven agile development module for the BMad Method Module Ecosystem, the best and most comprehensive Agile AI Driven Development framework that has true scale-adaptive intelligence that adjusts from bug fixes to enterprise systems.
8
+ **Build More Architect Dreams** — An AI-driven agile development module for the BMad Method Module Ecosystem, the best and most comprehensive Agile AI Driven Development framework that has true scale-adaptive intelligence that adjusts from bug fixes to enterprise systems.
9
9
 
10
10
  **100% free and open source.** No paywalls. No gated content. No gated Discord. We believe in empowering everyone, not just those who can pay for a gated community or courses.
11
11
 
@@ -20,7 +20,7 @@ Traditional AI tools do the thinking for you, producing average results. BMad ag
20
20
  - **Party Mode** — Bring multiple agent personas into one session to collaborate and discuss
21
21
  - **Complete Lifecycle** — From brainstorming to deployment
22
22
 
23
- [Learn more at **docs.bmad-method.org**](http://docs.bmad-method.org)
23
+ [Learn more at **docs.bmad-method.org**](https://docs.bmad-method.org)
24
24
 
25
25
  ---
26
26
 
@@ -28,7 +28,7 @@ Traditional AI tools do the thinking for you, producing average results. BMad ag
28
28
 
29
29
  **V6 is here and we're just getting started!** The BMad Method is evolving rapidly with optimizations including Cross Platform Agent Team and Sub Agent inclusion, Skills Architecture, BMad Builder v1, Dev Loop Automation, and so much more in the works.
30
30
 
31
- **[📍 Check out the complete Roadmap →](http://docs.bmad-method.org/roadmap/)**
31
+ **[📍 Check out the complete Roadmap →](https://docs.bmad-method.org/roadmap/)**
32
32
 
33
33
  ---
34
34
 
@@ -50,7 +50,7 @@ Follow the installer prompts, then open your AI IDE (Claude Code, Cursor, etc.)
50
50
  npx bmad-method install --directory /path/to/project --modules bmm --tools claude-code --yes
51
51
  ```
52
52
 
53
- [See all installation options](http://docs.bmad-method.org/how-to/non-interactive-installation/)
53
+ [See all installation options](https://docs.bmad-method.org/how-to/non-interactive-installation/)
54
54
 
55
55
  > **Not sure what to do?** Run `/bmad-help` — it tells you exactly what's next and what's optional. You can also ask questions like `/bmad-help I just finished the architecture, what do I do next?`
56
56
 
@@ -62,17 +62,17 @@ BMad Method extends with official modules for specialized domains. Available dur
62
62
  | ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------------- |
63
63
  | **[BMad Method (BMM)](https://github.com/bmad-code-org/BMAD-METHOD)** | Core framework with 34+ workflows |
64
64
  | **[BMad Builder (BMB)](https://github.com/bmad-code-org/bmad-builder)** | Create custom BMad agents and workflows |
65
- | **[Test Architect (TEA)](https://github.com/bmad-code-org/tea)** | Risk-based test strategy and automation |
65
+ | **[Test Architect (TEA)](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise)** | Risk-based test strategy and automation |
66
66
  | **[Game Dev Studio (BMGD)](https://github.com/bmad-code-org/bmad-module-game-dev-studio)** | Game development workflows (Unity, Unreal, Godot) |
67
67
  | **[Creative Intelligence Suite (CIS)](https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite)** | Innovation, brainstorming, design thinking |
68
68
 
69
69
  ## Documentation
70
70
 
71
- [BMad Method Docs Site](http://docs.bmad-method.org) — Tutorials, guides, concepts, and reference
71
+ [BMad Method Docs Site](https://docs.bmad-method.org) — Tutorials, guides, concepts, and reference
72
72
 
73
73
  **Quick links:**
74
- - [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/)
75
- - [Upgrading from Previous Versions](http://docs.bmad-method.org/how-to/upgrade-to-v6/)
74
+ - [Getting Started Tutorial](https://docs.bmad-method.org/tutorials/getting-started/)
75
+ - [Upgrading from Previous Versions](https://docs.bmad-method.org/how-to/upgrade-to-v6/)
76
76
  - [Test Architect Documentation](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)
77
77
 
78
78
 
package/docs/index.md CHANGED
@@ -3,7 +3,7 @@ title: Welcome to the BMad Method
3
3
  description: AI-driven development framework with specialized agents, guided workflows, and intelligent planning
4
4
  ---
5
5
 
6
- The BMad Method (**B**reakthrough **M**ethod of **A**gile AI **D**riven Development) is an AI-driven development framework module within the BMad Method Ecosystem that helps you build software through the whole process from ideation and planning all the way through agentic implementation. It provides specialized AI agents, guided workflows, and intelligent planning that adapts to your project's complexity, whether you're fixing a bug or building an enterprise platform.
6
+ The BMad Method (**B**uild **M**ore **A**rchitect **D**reams) is an AI-driven development framework module within the BMad Method Ecosystem that helps you build software through the whole process from ideation and planning all the way through agentic implementation. It provides specialized AI agents, guided workflows, and intelligent planning that adapts to your project's complexity, whether you're fixing a bug or building an enterprise platform.
7
7
 
8
8
  If you're comfortable working with AI coding assistants like Claude, Cursor, or GitHub Copilot, you're ready to get started.
9
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.0.2",
4
+ "version": "6.0.4",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -29,7 +29,7 @@ agent:
29
29
 
30
30
  menu:
31
31
  - trigger: QA or fuzzy match on qa-automate
32
- workflow: "{project-root}/_bmad/bmm/workflows/qa/automate/workflow.yaml"
32
+ workflow: "{project-root}/_bmad/bmm/workflows/qa-generate-e2e-tests/workflow.yaml"
33
33
  description: "[QA] Automate - Generate tests for existing features (simplified)"
34
34
 
35
35
  prompts:
@@ -27,5 +27,5 @@ bmm,4-implementation,Validate Story,VS,35,_bmad/bmm/workflows/4-implementation/c
27
27
  bmm,4-implementation,Create Story,CS,30,_bmad/bmm/workflows/4-implementation/create-story/workflow.yaml,bmad-bmm-create-story,true,sm,Create Mode,"Story cycle start: Prepare first found story in the sprint plan that is next, or if the command is run with a specific epic and story designation with context. Once complete, then VS then DS then CR then back to DS if needed or next CS or ER",implementation_artifacts,story,
28
28
  bmm,4-implementation,Dev Story,DS,40,_bmad/bmm/workflows/4-implementation/dev-story/workflow.yaml,bmad-bmm-dev-story,true,dev,Create Mode,"Story cycle: Execute story implementation tasks and tests then CR then back to DS if fixes needed",,,
29
29
  bmm,4-implementation,Code Review,CR,50,_bmad/bmm/workflows/4-implementation/code-review/workflow.yaml,bmad-bmm-code-review,false,dev,Create Mode,"Story cycle: If issues back to DS if approved then next CS or ER if epic complete",,,
30
- bmm,4-implementation,QA Automation Test,QA,45,_bmad/bmm/workflows/qa/automate/workflow.yaml,bmad-bmm-qa-automate,false,qa,Create Mode,"Generate automated API and E2E tests for implemented code using the project's existing test framework (detects existing well known in use test frameworks). Use after implementation to add test coverage. NOT for code review or story validation - use CR for that.",implementation_artifacts,"test suite",
30
+ bmm,4-implementation,QA Automation Test,QA,45,_bmad/bmm/workflows/qa-generate-e2e-tests/workflow.yaml,bmad-bmm-qa-automate,false,qa,Create Mode,"Generate automated API and E2E tests for implemented code using the project's existing test framework (detects existing well known in use test frameworks). Use after implementation to add test coverage. NOT for code review or story validation - use CR for that.",implementation_artifacts,"test suite",
31
31
  bmm,4-implementation,Retrospective,ER,60,_bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml,bmad-bmm-retrospective,false,sm,Create Mode,"Optional at epic end: Review completed work lessons learned and next epic or if major issues consider CC",implementation_artifacts,retrospective,
@@ -128,7 +128,7 @@ Recap that the brief captures everything needed to guide subsequent product deve
128
128
 
129
129
  ### 5. Suggest next steps
130
130
 
131
- Product Brief complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Validate PRD`.
131
+ Product Brief complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
132
132
 
133
133
  ---
134
134
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: create-product-brief
3
- description: Create product brief through collaborative discovery. Use when the user says 'lets create a product brief' or 'help me create a project brief'
3
+ description: 'Create product brief through collaborative discovery. Use when the user says "lets create a product brief" or "help me create a project brief"'
4
4
  ---
5
5
 
6
6
  # Product Brief Workflow
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: domain-research
3
- description: Conduct domain and industry research. Use when the user says 'lets create a research report on [domain or industry]
3
+ description: 'Conduct domain and industry research. Use when the user says "lets create a research report on [domain or industry]"'
4
4
  ---
5
5
 
6
6
  # Domain Research Workflow
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: market-research
3
- description: Conduct market research on competition and customers. Use when the user says 'create a market research report about [business idea]'.
3
+ description: 'Conduct market research on competition and customers. Use when the user says "create a market research report about [business idea]".'
4
4
  ---
5
5
 
6
6
  # Market Research Workflow
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: technical-research
3
- description: Conduct technical research on technologies and architecture. Use when the user says 'create a technical research report on [topic]'.
3
+ description: 'Conduct technical research on technologies and architecture. Use when the user says "create a technical research report on [topic]".'
4
4
  ---
5
5
 
6
6
  # Technical Research Workflow
@@ -87,7 +87,7 @@ Offer validation workflows to ensure PRD is ready for implementation:
87
87
 
88
88
  ### 4. Suggest Next Workflows
89
89
 
90
- PRD complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Create PRD`.
90
+ PRD complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
91
91
 
92
92
  ### 5. Final Completion Confirmation
93
93
 
@@ -197,7 +197,7 @@ Display:
197
197
  - **IF X (Exit):**
198
198
  - Display: "**Validation Report Saved:** {validationReportPath}"
199
199
  - Display: "**Summary:** {overall status} - {recommendation}"
200
- - PRD Validation complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Validate PRD`.
200
+ - PRD Validation complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
201
201
 
202
202
  - **IF Any other:** Help user, then redisplay menu
203
203
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: create-prd
3
- description: Create a PRD from scratch. Use when the user says 'lets create a product requirements document' or 'I want to create a new PRD'
3
+ description: 'Create a PRD from scratch. Use when the user says "lets create a product requirements document" or "I want to create a new PRD"'
4
4
  main_config: '{project-root}/_bmad/bmm/config.yaml'
5
5
  nextStep: './steps-c/step-01-init.md'
6
6
  ---
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: edit-prd
3
- description: Edit an existing PRD. Use when the user says 'edit this PRD'.
3
+ description: 'Edit an existing PRD. Use when the user says "edit this PRD".'
4
4
  main_config: '{project-root}/_bmad/bmm/config.yaml'
5
5
  editWorkflow: './steps-e/step-e-01-discovery.md'
6
6
  ---
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: validate-prd
3
- description: Validate a PRD against standards. Use when the user says 'validate this PRD' or 'run PRD validation'
3
+ description: 'Validate a PRD against standards. Use when the user says "validate this PRD" or "run PRD validation"'
4
4
  main_config: '{project-root}/_bmad/bmm/config.yaml'
5
5
  validateWorkflow: './steps-v/step-v-01-discovery.md'
6
6
  ---
@@ -82,7 +82,7 @@ Update the main workflow status file:
82
82
 
83
83
  ### 3. Suggest Next Steps
84
84
 
85
- UX Design complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Create UX`.
85
+ UX Design complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
86
86
 
87
87
  ### 5. Final Completion Confirmation
88
88
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: create-ux-design
3
- description: Plan UX patterns and design specifications. Use when the user says 'lets create UX design' or 'create UX specifications' or 'help me plan the UX'
3
+ description: 'Plan UX patterns and design specifications. Use when the user says "lets create UX design" or "create UX specifications" or "help me plan the UX"'
4
4
  ---
5
5
 
6
6
  # Create UX Design Workflow
@@ -109,7 +109,7 @@ The assessment found [number] issues requiring attention. Review the detailed re
109
109
 
110
110
  The implementation readiness workflow is now complete. The report contains all findings and recommendations for the user to consider.
111
111
 
112
- Implementation Readiness complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `implementation readiness`.
112
+ Implementation Readiness complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
113
113
 
114
114
  ---
115
115
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: check-implementation-readiness
3
- description: Validate PRD, UX, Architecture and Epics specs are complete. Use when the user says 'check implementation readiness'.
3
+ description: 'Validate PRD, UX, Architecture and Epics specs are complete. Use when the user says "check implementation readiness".'
4
4
  ---
5
5
 
6
6
  # Implementation Readiness
@@ -41,7 +41,7 @@ completedAt: '{{current_date}}'
41
41
 
42
42
  ### 3. Next Steps Guidance
43
43
 
44
- Architecture complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Create Architecture`.
44
+ Architecture complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
45
45
 
46
46
  Upon Completion of task output: offer to answer any questions about the Architecture Document.
47
47
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: create-architecture
3
- description: Create architecture solution design decisions for AI agent consistency. Use when the user says 'lets create architecture' or 'create technical architecture' or 'create a solution design'
3
+ description: 'Create architecture solution design decisions for AI agent consistency. Use when the user says "lets create architecture" or "create technical architecture" or "create a solution design"'
4
4
  ---
5
5
 
6
6
  # Architecture Workflow
@@ -144,6 +144,6 @@ If all validations pass:
144
144
 
145
145
  When C is selected, the workflow is complete and the epics.md is ready for development.
146
146
 
147
- Epics and Stories complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Create Epics and Stories`.
147
+ Epics and Stories complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md`
148
148
 
149
149
  Upon Completion of task output: offer to answer any questions about the Epics and Stories.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: create-epics-and-stories
3
- description: Break requirements into epics and user stories. Use when the user says 'create the epics and stories list'
3
+ description: 'Break requirements into epics and user stories. Use when the user says "create the epics and stories list"'
4
4
  ---
5
5
 
6
6
  # Create Epics and Stories
@@ -1,6 +1,6 @@
1
1
  # Review Story Workflow
2
2
  name: code-review
3
- description: "Perform adversarial code review finding specific issues. Use when the user says 'run code review' or 'review this code'"
3
+ description: 'Perform adversarial code review finding specific issues. Use when the user says "run code review" or "review this code"'
4
4
 
5
5
  # Critical variables from config
6
6
  config_source: "{project-root}/_bmad/bmm/config.yaml"
@@ -1,6 +1,6 @@
1
1
  # Correct Course - Sprint Change Management Workflow
2
2
  name: "correct-course"
3
- description: "Manage significant changes during sprint execution. Use when the user says 'correct course' or 'propose sprint change'"
3
+ description: 'Manage significant changes during sprint execution. Use when the user says "correct course" or "propose sprint change"'
4
4
 
5
5
  config_source: "{project-root}/_bmad/bmm/config.yaml"
6
6
  user_name: "{config_source}:user_name"
@@ -1,5 +1,5 @@
1
1
  name: create-story
2
- description: "Creates a dedicated story file with all the context the agent will need to implement it later. Use when the user says 'create the next story' or 'create story [story identifier]'"
2
+ description: 'Creates a dedicated story file with all the context the agent will need to implement it later. Use when the user says "create the next story" or "create story [story identifier]"'
3
3
 
4
4
  # Critical variables from config
5
5
  config_source: "{project-root}/_bmad/bmm/config.yaml"
@@ -1,5 +1,5 @@
1
1
  name: dev-story
2
- description: "Execute story implementation following a context filled story spec file. Use when the user says 'dev this story [story file]' or 'implement the next story in the sprint plan'"
2
+ description: 'Execute story implementation following a context filled story spec file. Use when the user says "dev this story [story file]" or "implement the next story in the sprint plan"'
3
3
 
4
4
  # Critical variables from config
5
5
  config_source: "{project-root}/_bmad/bmm/config.yaml"
@@ -1,6 +1,6 @@
1
1
  # Retrospective - Epic Completion Review Workflow
2
2
  name: "retrospective"
3
- description: "Post-epic review to extract lessons and assess success. Use when the user says 'run a retrospective' or 'lets retro the epic [epic]'"
3
+ description: 'Post-epic review to extract lessons and assess success. Use when the user says "run a retrospective" or "lets retro the epic [epic]"'
4
4
 
5
5
  config_source: "{project-root}/_bmad/bmm/config.yaml"
6
6
  user_name: "{config_source}:user_name"
@@ -1,5 +1,5 @@
1
1
  name: sprint-planning
2
- description: "Generate sprint status tracking from epics. Use when the user says 'run sprint planning' or 'generate sprint plan'"
2
+ description: 'Generate sprint status tracking from epics. Use when the user says "run sprint planning" or "generate sprint plan"'
3
3
  author: "BMad"
4
4
 
5
5
  # Critical variables from config
@@ -1,6 +1,6 @@
1
1
  # Sprint Status - Implementation Tracker
2
2
  name: sprint-status
3
- description: "Summarize sprint status and surface risks. Use when the user says 'check sprint status' or 'show sprint status'"
3
+ description: 'Summarize sprint status and surface risks. Use when the user says "check sprint status" or "show sprint status"'
4
4
  author: "BMad"
5
5
 
6
6
  # Critical variables from config
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: quick-dev
3
- description: "Implement a Quick Tech Spec for small changes or features. Use when the user provides a quick tech spec and says 'implement this quick spec' or 'proceed with implementation of [quick tech spec]'"
3
+ description: 'Implement a Quick Tech Spec for small changes or features. Use when the user provides a quick tech spec and says "implement this quick spec" or "proceed with implementation of [quick tech spec]"'
4
4
  ---
5
5
 
6
6
  # Quick Dev Workflow
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: quick-spec
3
- description: Very quick process to create implementation-ready quick specs for small changes or features. Use when the user says 'create a quick spec' or 'generate a quick tech spec'
3
+ description: 'Very quick process to create implementation-ready quick specs for small changes or features. Use when the user says "create a quick spec" or "generate a quick tech spec"'
4
4
  main_config: '{project-root}/_bmad/bmm/config.yaml'
5
5
 
6
6
  # Checkpoint handler paths
@@ -1,7 +1,7 @@
1
1
  # Document Project Workflow Configuration
2
2
  name: "document-project"
3
3
  version: "1.2.0"
4
- description: "Document brownfield projects for AI context. Use when the user says 'document this project' or 'generate project docs'"
4
+ description: 'Document brownfield projects for AI context. Use when the user says "document this project" or "generate project docs"'
5
5
  author: "BMad"
6
6
 
7
7
  # Critical variables
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: generate-project-context
3
- description: Create project-context.md with AI rules. Use when the user says 'generate project context' or 'create project context'
3
+ description: 'Create project-context.md with AI rules. Use when the user says "generate project context" or "create project context"'
4
4
  ---
5
5
 
6
6
  # Generate Project Context Workflow
@@ -1,5 +1,5 @@
1
1
  name: qa-generate-e2e-tests
2
- description: "Generate end to end automated tests for existing features. Use when the user says 'create qa automated tests for [feature]'"
2
+ description: 'Generate end to end automated tests for existing features. Use when the user says "create qa automated tests for [feature]"'
3
3
 
4
4
  # Critical variables from config
5
5
  config_source: "{project-root}/_bmad/bmm/config.yaml"
@@ -10,7 +10,7 @@ document_output_language: "{config_source}:document_output_language"
10
10
  date: system-generated
11
11
 
12
12
  # Workflow components
13
- installed_path: "{project-root}/_bmad/bmm/workflows/qa/automate"
13
+ installed_path: "{project-root}/_bmad/bmm/workflows/qa-generate-e2e-tests"
14
14
  instructions: "{installed_path}/instructions.md"
15
15
  validation: "{installed_path}/checklist.md"
16
16
  template: false
@@ -7,3 +7,4 @@ core,anytime,Shard Document,SD,,_bmad/core/tasks/shard-doc.xml,bmad-shard-doc,fa
7
7
  core,anytime,Editorial Review - Prose,EP,,_bmad/core/tasks/editorial-review-prose.xml,bmad-editorial-review-prose,false,,,"Review prose for clarity, tone, and communication issues. Use after drafting to polish written content.",report located with target document,"three-column markdown table with suggested fixes",
8
8
  core,anytime,Editorial Review - Structure,ES,,_bmad/core/tasks/editorial-review-structure.xml,bmad-editorial-review-structure,false,,,"Propose cuts, reorganization, and simplification while preserving comprehension. Use when doc produced from multiple subprocesses or needs structural improvement.",report located with target document,
9
9
  core,anytime,Adversarial Review (General),AR,,_bmad/core/tasks/review-adversarial-general.xml,bmad-review-adversarial-general,false,,,"Review content critically to find issues and weaknesses. Use for quality assurance or before finalizing deliverables. Code Review in other modules run this automatically, but its useful also for document reviews",,
10
+ core,anytime,Edge Case Hunter Review,ECH,,_bmad/core/tasks/review-edge-case-hunter.xml,bmad-review-edge-case-hunter,false,,,"Walk every branching path and boundary condition in code, report only unhandled edge cases. Use alongside adversarial review for orthogonal coverage - method-driven not attitude-driven.",,
@@ -1,6 +1,6 @@
1
1
  <task id="_bmad/core/tasks/editorial-review-prose.xml"
2
2
  name="Editorial Review - Prose"
3
- description="Clinical copy-editor that reviews text for communication issues. Use when user says 'review for prose' or 'improve the prose'">
3
+ description="Clinical copy-editor that reviews text for communication issues. Use when user says review for prose or improve the prose">
4
4
 
5
5
  <objective>Review text for communication issues that impede comprehension and output suggested fixes in a three-column table</objective>
6
6
 
@@ -3,7 +3,7 @@
3
3
  but no context except the content to review -->
4
4
  <task id="_bmad/core/tasks/editorial-review-structure.xml"
5
5
  name="Editorial Review - Structure"
6
- description="Structural editor that proposes cuts, reorganization, and simplification while preserving comprehension. Use when user requests 'structural review' or 'cohesive reivew' or 'editorial review of structure'.">
6
+ description="Structural editor that proposes cuts, reorganization, and simplification while preserving comprehension. Use when user requests structural review or editorial review of structure">
7
7
  <objective>Review document structure and propose substantive changes
8
8
  to improve clarity and flow-run this BEFORE copy editing</objective>
9
9
  <inputs>
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: help
3
- description: "Analyzes what is done and the users query and offers advice on what to do next. Use if user says 'bmad-help what should I do next' or 'bmad-help what do I do now'"
3
+ description: 'Analyzes what is done and the users query and offers advice on what to do next. Use if user says what should I do next or what do I do now'
4
4
  ---
5
5
 
6
6
  # Task: BMAD Help
@@ -1,5 +1,5 @@
1
1
  <task id="_bmad/core/tasks/index-docs" name="Index Docs"
2
- description="Generates or updates an index.md to reference all docs in the folder. Use if user requests to 'create an index of all files [here]' or 'reindex the folder [here].">
2
+ description="Generates or updates an index.md to reference all docs in the folder. Use if user requests to create or update an index of all files in a specific folder">
3
3
  <llm critical="true">
4
4
  <i>MANDATORY: Execute ALL steps in the flow section IN EXACT ORDER</i>
5
5
  <i>DO NOT skip steps or change the sequence</i>
@@ -2,7 +2,7 @@
2
2
  but no context except the content to review -->
3
3
 
4
4
  <task id="_bmad/core/tasks/review-adversarial-general.xml" name="Adversarial Review (General)"
5
- description="Perform a Cynical Review and produce a findings report. Use when the user requests a 'critical review of' or 'cynical review of' something.">
5
+ description="Perform a Cynical Review and produce a findings report. Use when the user requests a critical review of something">
6
6
  <objective>Cynically review content and produce findings</objective>
7
7
 
8
8
  <inputs>