bmad-method 6.0.0-Beta.1 → 6.0.0-Beta.3
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.
- package/CHANGELOG.md +35 -1
- package/README.md +41 -9
- package/docs/how-to/customize-bmad.md +1 -1
- package/docs/reference/workflow-map.md +3 -0
- package/package.json +1 -1
- package/src/bmm/agents/quinn.agent.yaml +57 -0
- package/src/bmm/module-help.csv +31 -31
- package/src/bmm/teams/default-party.csv +0 -1
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +1 -1
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md +1 -1
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +1 -1
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-03-edit.md +1 -1
- package/src/bmm/workflows/4-implementation/create-story/instructions.xml +1 -1
- package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +1 -1
- package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +1 -1
- package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +1 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +1 -1
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +1 -1
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +1 -1
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +1 -1
- package/src/bmm/workflows/qa/automate/checklist.md +33 -0
- package/src/bmm/workflows/qa/automate/instructions.md +110 -0
- package/src/bmm/workflows/qa/automate/workflow.yaml +49 -0
- package/src/core/module-help.csv +8 -8
- package/test/test-installation-components.js +9 -11
- package/tools/cli/external-official-modules.yaml +10 -0
- package/tools/cli/installers/lib/core/installer.js +26 -40
- package/tools/cli/installers/lib/ide/_config-driven.js +450 -0
- package/tools/cli/installers/lib/ide/codex.js +40 -12
- package/tools/cli/installers/lib/ide/manager.js +65 -38
- package/tools/cli/installers/lib/ide/platform-codes.js +100 -0
- package/tools/cli/installers/lib/ide/platform-codes.yaml +227 -0
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +21 -5
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +5 -0
- package/tools/cli/installers/lib/ide/shared/path-utils.js +177 -50
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +7 -5
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +29 -3
- package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +8 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +15 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +6 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +16 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/rovodev.md +9 -0
- package/tools/cli/installers/lib/ide/templates/combined/trae.md +9 -0
- package/tools/cli/installers/lib/ide/templates/combined/windsurf-workflow.md +10 -0
- package/tools/cli/installers/lib/ide/templates/split/opencode/body.md +10 -0
- package/tools/cli/installers/lib/ide/templates/split/opencode/header.md +4 -0
- package/tools/cli/lib/ui.js +19 -75
- package/docs/tea/explanation/engagement-models.md +0 -710
- package/docs/tea/explanation/fixture-architecture.md +0 -457
- package/docs/tea/explanation/knowledge-base-system.md +0 -554
- package/docs/tea/explanation/network-first-patterns.md +0 -853
- package/docs/tea/explanation/risk-based-testing.md +0 -586
- package/docs/tea/explanation/tea-overview.md +0 -410
- package/docs/tea/explanation/test-quality-standards.md +0 -907
- package/docs/tea/explanation/testing-as-engineering.md +0 -112
- package/docs/tea/glossary/index.md +0 -159
- package/docs/tea/how-to/brownfield/use-tea-for-enterprise.md +0 -525
- package/docs/tea/how-to/brownfield/use-tea-with-existing-tests.md +0 -577
- package/docs/tea/how-to/customization/enable-tea-mcp-enhancements.md +0 -424
- package/docs/tea/how-to/customization/integrate-playwright-utils.md +0 -813
- package/docs/tea/how-to/workflows/run-atdd.md +0 -436
- package/docs/tea/how-to/workflows/run-automate.md +0 -653
- package/docs/tea/how-to/workflows/run-nfr-assess.md +0 -679
- package/docs/tea/how-to/workflows/run-test-design.md +0 -135
- package/docs/tea/how-to/workflows/run-test-review.md +0 -605
- package/docs/tea/how-to/workflows/run-trace.md +0 -883
- package/docs/tea/how-to/workflows/setup-ci.md +0 -712
- package/docs/tea/how-to/workflows/setup-test-framework.md +0 -98
- package/docs/tea/reference/commands.md +0 -276
- package/docs/tea/reference/configuration.md +0 -678
- package/docs/tea/reference/knowledge-base.md +0 -340
- package/docs/tea/tutorials/tea-lite-quickstart.md +0 -444
- package/src/bmm/agents/tea.agent.yaml +0 -63
- package/src/bmm/testarch/knowledge/adr-quality-readiness-checklist.md +0 -350
- package/src/bmm/testarch/knowledge/api-request.md +0 -442
- package/src/bmm/testarch/knowledge/api-testing-patterns.md +0 -843
- package/src/bmm/testarch/knowledge/auth-session.md +0 -552
- package/src/bmm/testarch/knowledge/burn-in.md +0 -273
- package/src/bmm/testarch/knowledge/ci-burn-in.md +0 -675
- package/src/bmm/testarch/knowledge/component-tdd.md +0 -486
- package/src/bmm/testarch/knowledge/contract-testing.md +0 -957
- package/src/bmm/testarch/knowledge/data-factories.md +0 -500
- package/src/bmm/testarch/knowledge/email-auth.md +0 -721
- package/src/bmm/testarch/knowledge/error-handling.md +0 -725
- package/src/bmm/testarch/knowledge/feature-flags.md +0 -750
- package/src/bmm/testarch/knowledge/file-utils.md +0 -463
- package/src/bmm/testarch/knowledge/fixture-architecture.md +0 -401
- package/src/bmm/testarch/knowledge/fixtures-composition.md +0 -382
- package/src/bmm/testarch/knowledge/intercept-network-call.md +0 -430
- package/src/bmm/testarch/knowledge/log.md +0 -429
- package/src/bmm/testarch/knowledge/network-error-monitor.md +0 -405
- package/src/bmm/testarch/knowledge/network-first.md +0 -486
- package/src/bmm/testarch/knowledge/network-recorder.md +0 -527
- package/src/bmm/testarch/knowledge/nfr-criteria.md +0 -670
- package/src/bmm/testarch/knowledge/overview.md +0 -286
- package/src/bmm/testarch/knowledge/playwright-config.md +0 -730
- package/src/bmm/testarch/knowledge/probability-impact.md +0 -601
- package/src/bmm/testarch/knowledge/recurse.md +0 -421
- package/src/bmm/testarch/knowledge/risk-governance.md +0 -615
- package/src/bmm/testarch/knowledge/selective-testing.md +0 -732
- package/src/bmm/testarch/knowledge/selector-resilience.md +0 -527
- package/src/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
- package/src/bmm/testarch/knowledge/test-levels-framework.md +0 -473
- package/src/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
- package/src/bmm/testarch/knowledge/test-quality.md +0 -664
- package/src/bmm/testarch/knowledge/timing-debugging.md +0 -372
- package/src/bmm/testarch/knowledge/visual-debugging.md +0 -524
- package/src/bmm/testarch/tea-index.csv +0 -35
- package/src/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
- package/src/bmm/workflows/testarch/atdd/checklist.md +0 -374
- package/src/bmm/workflows/testarch/atdd/instructions.md +0 -806
- package/src/bmm/workflows/testarch/atdd/workflow.yaml +0 -47
- package/src/bmm/workflows/testarch/automate/checklist.md +0 -582
- package/src/bmm/workflows/testarch/automate/instructions.md +0 -1324
- package/src/bmm/workflows/testarch/automate/workflow.yaml +0 -54
- package/src/bmm/workflows/testarch/ci/checklist.md +0 -247
- package/src/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -198
- package/src/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -149
- package/src/bmm/workflows/testarch/ci/instructions.md +0 -536
- package/src/bmm/workflows/testarch/ci/workflow.yaml +0 -47
- package/src/bmm/workflows/testarch/framework/checklist.md +0 -320
- package/src/bmm/workflows/testarch/framework/instructions.md +0 -481
- package/src/bmm/workflows/testarch/framework/workflow.yaml +0 -49
- package/src/bmm/workflows/testarch/nfr-assess/checklist.md +0 -407
- package/src/bmm/workflows/testarch/nfr-assess/instructions.md +0 -726
- package/src/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -461
- package/src/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -49
- package/src/bmm/workflows/testarch/test-design/checklist.md +0 -407
- package/src/bmm/workflows/testarch/test-design/instructions.md +0 -1158
- package/src/bmm/workflows/testarch/test-design/test-design-architecture-template.md +0 -213
- package/src/bmm/workflows/testarch/test-design/test-design-qa-template.md +0 -286
- package/src/bmm/workflows/testarch/test-design/test-design-template.md +0 -294
- package/src/bmm/workflows/testarch/test-design/workflow.yaml +0 -71
- package/src/bmm/workflows/testarch/test-review/checklist.md +0 -472
- package/src/bmm/workflows/testarch/test-review/instructions.md +0 -628
- package/src/bmm/workflows/testarch/test-review/test-review-template.md +0 -390
- package/src/bmm/workflows/testarch/test-review/workflow.yaml +0 -48
- package/src/bmm/workflows/testarch/trace/checklist.md +0 -642
- package/src/bmm/workflows/testarch/trace/instructions.md +0 -1030
- package/src/bmm/workflows/testarch/trace/trace-template.md +0 -675
- package/src/bmm/workflows/testarch/trace/workflow.yaml +0 -57
- package/tools/cli/installers/lib/ide/STANDARDIZATION_PLAN.md +0 -208
- package/tools/cli/installers/lib/ide/antigravity.js +0 -474
- package/tools/cli/installers/lib/ide/auggie.js +0 -244
- package/tools/cli/installers/lib/ide/claude-code.js +0 -506
- package/tools/cli/installers/lib/ide/cline.js +0 -272
- package/tools/cli/installers/lib/ide/crush.js +0 -149
- package/tools/cli/installers/lib/ide/cursor.js +0 -160
- package/tools/cli/installers/lib/ide/gemini.js +0 -301
- package/tools/cli/installers/lib/ide/github-copilot.js +0 -383
- package/tools/cli/installers/lib/ide/iflow.js +0 -191
- package/tools/cli/installers/lib/ide/opencode.js +0 -257
- package/tools/cli/installers/lib/ide/qwen.js +0 -372
- package/tools/cli/installers/lib/ide/roo.js +0 -273
- package/tools/cli/installers/lib/ide/rovo-dev.js +0 -290
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +0 -14
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +0 -12
- package/tools/cli/installers/lib/ide/trae.js +0 -313
- package/tools/cli/installers/lib/ide/windsurf.js +0 -258
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [6.0.0-Beta.
|
|
3
|
+
## [6.0.0-Beta.3]
|
|
4
|
+
|
|
5
|
+
### 🌟 Key Highlights
|
|
6
|
+
|
|
7
|
+
1. **SDET Module Replaces TEA**: TEA module removed from core, SDET module added with "automate" workflow for test automation
|
|
8
|
+
2. **Gemini CLI TOML Support**: IDE integration now supports the TOML config format used by Gemini CLI
|
|
9
|
+
3. **File System Sprint Status**: Default project_key support for file-system based sprint status tracking
|
|
10
|
+
|
|
11
|
+
### 🔧 Features & Improvements
|
|
12
|
+
|
|
13
|
+
**Module Changes:**
|
|
14
|
+
- **TEA Module Moved to External** (#1430, #1443): The TEA module is now external. SDET module added with a single "automate" workflow focused on test automation
|
|
15
|
+
- **SDET Module**: New module with streamlined test automation capabilities
|
|
16
|
+
|
|
17
|
+
**IDE Integration:**
|
|
18
|
+
- **Gemini CLI TOML Format** (#1431): Previous update accidentally switched Gemini to md instead of toml.
|
|
19
|
+
|
|
20
|
+
**Sprint Status:**
|
|
21
|
+
- **Default project_key** (#1446): File-system based sprint status now uses a default project_key so certain LLMs do not complain
|
|
22
|
+
|
|
23
|
+
### 🐛 Bug Fixes
|
|
24
|
+
|
|
25
|
+
- **Quick-flow workflow path fix** (#1368): Fixed incorrect workflow_path in bmad-quick-flow/quick-spec steps (step-01, step-02, step-03) - changed from non-existent 'create-tech-spec' to correct 'quick-spec'
|
|
26
|
+
- **PRD edit flow paths**: Fixed path references in PRD editing workflow
|
|
27
|
+
- **Agent file handling**: Changes to prevent double agent files and use .agent.md file extensions
|
|
28
|
+
- **README link fix**: Corrected broken documentation links
|
|
29
|
+
|
|
30
|
+
## [6.0.0-Beta.2]
|
|
31
|
+
|
|
32
|
+
- Fix installer so commands match what is installed, centralize most ide into a central file instead of separate files for each ide.
|
|
33
|
+
- Specific IDEs may still need udpates, but all is config driven now and should be easier to maintain
|
|
34
|
+
- Kiro still needs updates, but its been in this state since contributed, will investigate soon
|
|
35
|
+
- Any version older than Beta.0 will recommend removal and reinstall to project. From later alphas though its sufficient to quick update if still desired, but best is just start fresh with Beta.
|
|
36
|
+
|
|
37
|
+
## [6.0.0-Beta.1]
|
|
4
38
|
|
|
5
39
|
**Release: January 2026 - Alpha to Beta Transition**
|
|
6
40
|
|
package/README.md
CHANGED
|
@@ -32,10 +32,10 @@ Follow the installer prompts, then open your AI IDE (Claude Code, Cursor, Windsu
|
|
|
32
32
|
|
|
33
33
|
> **Not sure what to do?** Run `/bmad-help` — it tells you exactly what's next and what's optional. You can also ask it questions like:
|
|
34
34
|
|
|
35
|
-
- `/bmad-help How should I build a web app for
|
|
35
|
+
- `/bmad-help How should I build a web app for my TShirt Business that can scale to millions?`
|
|
36
36
|
- `/bmad-help I just finished the architecture, I am not sure what to do next`
|
|
37
37
|
|
|
38
|
-
And the amazing
|
|
38
|
+
And the amazing thing is BMad Help evolves depending on what modules you install also!
|
|
39
39
|
- `/bmad-help Im interested in really exploring creative ways to demo BMad at work, what do you recommend to help plan a great slide deck and compelling narrative?`, and if you have the Creative Intelligence Suite installed, it will offer you different or complimentary advice than if you just have BMad Method Module installed!
|
|
40
40
|
|
|
41
41
|
The workflows below show the fastest path to working code. You can also load agents directly for a more structured process, extensive planning, or to learn about agile development practices — the agents guide you with menus, explanations, and elicitation at each step.
|
|
@@ -59,27 +59,59 @@ Products, platforms, complex features — structured planning then build:
|
|
|
59
59
|
5. `/sprint-planning` — initialize sprint tracking
|
|
60
60
|
6. **Repeat per story:** `/create-story` → `/dev-story` → `/code-review`
|
|
61
61
|
|
|
62
|
-
Every step tells you what's next. Optional phases (brainstorming, research, UX design) are available when you need them — ask `/bmad-help` anytime. For a detailed walkthrough, see the [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/
|
|
62
|
+
Every step tells you what's next. Optional phases (brainstorming, research, UX design) are available when you need them — ask `/bmad-help` anytime. For a detailed walkthrough, see the [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/).
|
|
63
63
|
|
|
64
64
|
## Modules
|
|
65
65
|
|
|
66
66
|
BMad Method extends with official modules for specialized domains. Modules are available during installation and can be added to your project at any time. After the V6 beta period these will also be available as Plugins and Granular Skills.
|
|
67
67
|
|
|
68
|
-
| Module | GitHub | NPM
|
|
69
|
-
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
|
|
68
|
+
| Module | GitHub | NPM | Purpose |
|
|
69
|
+
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------- |
|
|
70
70
|
| **BMad Method (BMM)** | [bmad-code-org/BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) | [bmad-method](https://www.npmjs.com/package/bmad-method) | Core framework with 34+ workflows across 4 development phases |
|
|
71
71
|
| **BMad Builder (BMB)** | [bmad-code-org/bmad-builder](https://github.com/bmad-code-org/bmad-builder) | [bmad-builder](https://www.npmjs.com/package/bmad-builder) | Create custom BMad agents, workflows, and domain-specific modules |
|
|
72
|
+
| **Test Architect (TEA)** 🆕 | [bmad-code-org/tea](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise) | [tea](https://www.npmjs.com/package/bmad-method-test-architecture-enterprise) | Risk-based test strategy, automation, and release gates (8 workflows) |
|
|
72
73
|
| **Game Dev Studio (BMGD)** | [bmad-code-org/bmad-module-game-dev-studio](https://github.com/bmad-code-org/bmad-module-game-dev-studio) | [bmad-game-dev-studio](https://www.npmjs.com/package/bmad-game-dev-studio) | Game development workflows for Unity, Unreal, and Godot |
|
|
73
74
|
| **Creative Intelligence Suite (CIS)** | [bmad-code-org/bmad-module-creative-intelligence-suite](https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite) | [bmad-creative-intelligence-suite](https://www.npmjs.com/package/bmad-creative-intelligence-suite) | Innovation, brainstorming, design thinking, and problem-solving |
|
|
74
75
|
|
|
75
76
|
* More modules are coming in the next 2 weeks from BMad Official, and a community marketplace for the installer also will be coming with the final V6 release!
|
|
76
77
|
|
|
78
|
+
## Testing Agents
|
|
79
|
+
|
|
80
|
+
BMad provides two testing options to fit your needs:
|
|
81
|
+
|
|
82
|
+
### Quinn (QA) - Built-in
|
|
83
|
+
|
|
84
|
+
**Quick test automation for rapid coverage**
|
|
85
|
+
|
|
86
|
+
- ✅ **Always available** in BMM module (no separate install)
|
|
87
|
+
- ✅ **Simple**: One workflow (`QA` - Automate)
|
|
88
|
+
- ✅ **Beginner-friendly**: Standard test framework patterns
|
|
89
|
+
- ✅ **Fast**: Generate tests and ship
|
|
90
|
+
|
|
91
|
+
**Use Quinn for:** Small projects, quick coverage, standard patterns
|
|
92
|
+
|
|
93
|
+
### Test Architect (TEA) - Optional Module
|
|
94
|
+
|
|
95
|
+
**Enterprise-grade test strategy and quality engineering**
|
|
96
|
+
|
|
97
|
+
- 🆕 **Standalone module** (install separately)
|
|
98
|
+
- 🏗️ **Comprehensive**: 8 workflows covering full test lifecycle
|
|
99
|
+
- 🎯 **Advanced**: Risk-based planning, quality gates, NFR assessment
|
|
100
|
+
- 📚 **Knowledge-driven**: 34 testing patterns and best practices
|
|
101
|
+
- 📖 [Test Architect Documentation](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)
|
|
102
|
+
|
|
103
|
+
**Use TEA for:** Enterprise projects, test strategy, compliance, release gates
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
77
107
|
## Documentation
|
|
78
108
|
|
|
79
|
-
**[
|
|
109
|
+
**[BMad Documentation](http://docs.bmad-method.org)** — Tutorials, how-to guides, concepts, and reference
|
|
110
|
+
**[Test Architect Documentation](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)** — TEA standalone module documentation
|
|
80
111
|
|
|
81
|
-
- [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/
|
|
82
|
-
- [Upgrading from Previous Versions](http://docs.bmad-method.org/how-to/
|
|
112
|
+
- [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/)
|
|
113
|
+
- [Upgrading from Previous Versions](http://docs.bmad-method.org/how-to/upgrade-to-v6/)
|
|
114
|
+
- [Test Architect Migration Guide](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/migration/) — Upgrading from BMM-embedded TEA
|
|
83
115
|
|
|
84
116
|
### For v4 Users
|
|
85
117
|
|
|
@@ -96,7 +128,7 @@ BMad Method extends with official modules for specialized domains. Modules are a
|
|
|
96
128
|
|
|
97
129
|
BMad is free for everyone — and always will be. If you'd like to support development:
|
|
98
130
|
|
|
99
|
-
- ⭐ Please click the star project icon
|
|
131
|
+
- ⭐ Please click the star project icon near the top right of this page
|
|
100
132
|
- ☕ [Buy Me a Coffee](https://buymeacoffee.com/bmad) — Fuel the development
|
|
101
133
|
- 🏢 Corporate sponsorship — DM on Discord
|
|
102
134
|
- 🎤 Speaking & Media — Available for conferences, podcasts, interviews (BM on Discord)
|
|
@@ -151,7 +151,7 @@ prompts:
|
|
|
151
151
|
|
|
152
152
|
## Workflow Customization
|
|
153
153
|
|
|
154
|
-
Information about customizing existing BMad
|
|
154
|
+
Information about customizing existing BMad Method workflows and skills are coming soon.
|
|
155
155
|
|
|
156
156
|
## Module Customization
|
|
157
157
|
|
|
@@ -53,10 +53,13 @@ Build it, one story at a time.
|
|
|
53
53
|
| `sprint-planning` | Initialize tracking (once per project) | `sprint-status.yaml` |
|
|
54
54
|
| `create-story` | Prepare next story for implementation | `story-[slug].md` |
|
|
55
55
|
| `dev-story` | Implement the story | Working code + tests |
|
|
56
|
+
| `automate` (QA) | Generate tests for existing features | Test suite |
|
|
56
57
|
| `code-review` | Validate implementation quality | Approved or changes requested |
|
|
57
58
|
| `correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
|
|
58
59
|
| `retrospective` | Review after epic completion | Lessons learned |
|
|
59
60
|
|
|
61
|
+
**Quinn (QA Agent):** Built-in QA agent for test automation. Trigger with `QA` or `bmad-bmm-automate`. Generates standard API and E2E tests using your project's test framework. Beginner-friendly, no configuration needed. For advanced test strategy, install [Test Architect (TEA)](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/) module.
|
|
62
|
+
|
|
60
63
|
## Quick Flow (Parallel Track)
|
|
61
64
|
|
|
62
65
|
Skip phases 1-3 for small, well-understood work.
|
package/package.json
CHANGED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
agent:
|
|
2
|
+
metadata:
|
|
3
|
+
id: "_bmad/bmm/agents/quinn"
|
|
4
|
+
name: Quinn
|
|
5
|
+
title: QA Engineer
|
|
6
|
+
icon: 🧪
|
|
7
|
+
module: bmm
|
|
8
|
+
hasSidecar: false
|
|
9
|
+
|
|
10
|
+
persona:
|
|
11
|
+
role: QA Engineer
|
|
12
|
+
identity: |
|
|
13
|
+
Pragmatic test automation engineer focused on rapid test coverage.
|
|
14
|
+
Specializes in generating tests quickly for existing features using standard test framework patterns.
|
|
15
|
+
Simpler, more direct approach than the advanced Test Architect module.
|
|
16
|
+
communication_style: |
|
|
17
|
+
Practical and straightforward. Gets tests written fast without overthinking.
|
|
18
|
+
'Ship it and iterate' mentality. Focuses on coverage first, optimization later.
|
|
19
|
+
principles:
|
|
20
|
+
- Generate API and E2E tests for implemented code
|
|
21
|
+
- Tests should pass on first run
|
|
22
|
+
|
|
23
|
+
critical_actions:
|
|
24
|
+
- Never skip running the generated tests to verify they pass
|
|
25
|
+
- Always use standard test framework APIs (no external utilities)
|
|
26
|
+
- Keep tests simple and maintainable
|
|
27
|
+
- Focus on realistic user scenarios
|
|
28
|
+
|
|
29
|
+
menu:
|
|
30
|
+
- trigger: QA
|
|
31
|
+
workflow: "{project-root}/_bmad/bmm/workflows/qa/automate/workflow.yaml"
|
|
32
|
+
description: "[QA] Automate - Generate tests for existing features (simplified)"
|
|
33
|
+
|
|
34
|
+
prompts:
|
|
35
|
+
- id: welcome
|
|
36
|
+
content: |
|
|
37
|
+
👋 Hi, I'm Quinn - your QA Engineer.
|
|
38
|
+
|
|
39
|
+
I help you generate tests quickly using standard test framework patterns.
|
|
40
|
+
|
|
41
|
+
**What I do:**
|
|
42
|
+
- Generate API and E2E tests for existing features
|
|
43
|
+
- Use standard test framework patterns (simple and maintainable)
|
|
44
|
+
- Focus on happy path + critical edge cases
|
|
45
|
+
- Get you covered fast without overthinking
|
|
46
|
+
- Generate tests only (use Code Review `CR` for review/validation)
|
|
47
|
+
|
|
48
|
+
**When to use me:**
|
|
49
|
+
- Quick test coverage for small-medium projects
|
|
50
|
+
- Beginner-friendly test automation
|
|
51
|
+
- Standard patterns without advanced utilities
|
|
52
|
+
|
|
53
|
+
**Need more advanced testing?**
|
|
54
|
+
For comprehensive test strategy, risk-based planning, quality gates, and enterprise features,
|
|
55
|
+
install the Test Architect (TEA) module: https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/
|
|
56
|
+
|
|
57
|
+
Ready to generate some tests? Just say `QA` or `bmad-bmm-automate`!
|
package/src/bmm/module-help.csv
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
module,phase,name,code,sequence,workflow-file,command,required,agent,options,description,output-location,outputs,
|
|
2
|
-
bmm,anytime,Document Project,DP,10,_bmad/bmm/workflows/document-project/workflow.yaml,
|
|
3
|
-
bmm,anytime,Quick Spec,TS,20,_bmad/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md,
|
|
4
|
-
bmm,anytime,Quick Dev,QD,30,_bmad/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md,
|
|
5
|
-
bmm,anytime,Correct Course,CC,40,_bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml,
|
|
6
|
-
bmm,1-analysis,Brainstorm Project,BP,10,_bmad/core/workflows/brainstorming/workflow.md,
|
|
7
|
-
bmm,1-analysis,Market Research,MR,20,_bmad/bmm/workflows/1-analysis/research/workflow.md,
|
|
8
|
-
bmm,1-analysis,Domain Research,DR,21,_bmad/bmm/workflows/1-analysis/research/workflow.md,
|
|
9
|
-
bmm,1-analysis,Technical Research,TR,22,_bmad/bmm/workflows/1-analysis/research/workflow.md,
|
|
10
|
-
bmm,1-analysis,Create Brief,CB,30,_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md,
|
|
11
|
-
bmm,1-analysis,Validate Brief,VB,40,_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md,
|
|
12
|
-
bmm,2-planning,Create PRD,CP,10,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow.md,
|
|
13
|
-
bmm,2-planning,Validate PRD,VP,20,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow.md,
|
|
14
|
-
bmm,2-planning,Create UX,CU,30,_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md,
|
|
15
|
-
bmm,2-planning,Validate UX,VU,40,_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md,
|
|
16
|
-
,anytime,Create Dataflow,CDF,50,_bmad/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml,
|
|
17
|
-
,anytime,Create Diagram,CED,51,_bmad/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml,
|
|
18
|
-
,anytime,Create Flowchart,CFC,52,_bmad/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml,
|
|
19
|
-
,anytime,Create Wireframe,CEW,53,_bmad/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml,
|
|
20
|
-
bmm,3-solutioning,Create Architecture,CA,10,_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md,
|
|
21
|
-
bmm,3-solutioning,Validate Architecture,VA,20,_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md,
|
|
22
|
-
bmm,3-solutioning,Create Epics and Stories,CE,30,_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md,
|
|
23
|
-
bmm,3-solutioning,Validate Epics and Stories,VE,40,_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md,
|
|
24
|
-
bmm,3-solutioning,
|
|
25
|
-
bmm,
|
|
26
|
-
bmm,4-implementation,Sprint
|
|
27
|
-
bmm,4-implementation,
|
|
28
|
-
bmm,4-implementation,
|
|
29
|
-
bmm,4-implementation,
|
|
30
|
-
bmm,4-implementation,
|
|
31
|
-
bmm,4-implementation,
|
|
32
|
-
bmm,4-implementation,
|
|
2
|
+
bmm,anytime,Document Project,DP,10,_bmad/bmm/workflows/document-project/workflow.yaml,bmad-bmm-document-project,false,analyst,Create Mode,"Analyze an existing project to produce useful documentation",project-knowledge,*,
|
|
3
|
+
bmm,anytime,Quick Spec,TS,20,_bmad/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md,bmad-bmm-quick-spec,false,quick-flow-solo-dev,Create Mode,"Do not suggest for potentially very complex things unless requested or if the user complains that they do not want to follow the extensive planning of the bmad method. Quick one-off tasks small changes simple apps utilities without extensive planning",planning_artifacts,"tech spec",
|
|
4
|
+
bmm,anytime,Quick Dev,QD,30,_bmad/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md,bmad-bmm-quick-dev,false,quick-flow-solo-dev,Create Mode,"Quick one-off tasks small changes simple apps utilities without extensive planning - Do not suggest for potentially very complex things unless requested or if the user complains that they do not want to follow the extensive planning of the bmad method, unless the user is already working through the implementation phase and just requests a 1 off things not already in the plan",,,
|
|
5
|
+
bmm,anytime,Correct Course,CC,40,_bmad/bmm/workflows/4-implementation/correct-course/workflow.yaml,bmad-bmm-correct-course,false,sm,Create Mode,"Anytime: Navigate significant changes. May recommend start over update PRD redo architecture sprint planning or correct epics and stories",planning_artifacts,"change proposal",
|
|
6
|
+
bmm,1-analysis,Brainstorm Project,BP,10,_bmad/core/workflows/brainstorming/workflow.md,bmad-brainstorming,false,analyst,data=_bmad/bmm/data/project-context-template.md,"Expert Guided Facilitation through a single or multiple techniques",planning_artifacts,"brainstorming session",
|
|
7
|
+
bmm,1-analysis,Market Research,MR,20,_bmad/bmm/workflows/1-analysis/research/workflow.md,bmad-bmm-research,false,analyst,Create Mode research_type=market,"Market analysis competitive landscape customer needs and trends","planning_artifacts|project-knowledge","research documents"
|
|
8
|
+
bmm,1-analysis,Domain Research,DR,21,_bmad/bmm/workflows/1-analysis/research/workflow.md,bmad-bmm-research,false,analyst,Create Mode research_type=domain,"Industry domain deep dive subject matter expertise and terminology","planning_artifacts|project-knowledge","research documents"
|
|
9
|
+
bmm,1-analysis,Technical Research,TR,22,_bmad/bmm/workflows/1-analysis/research/workflow.md,bmad-bmm-research,false,analyst,Create Mode research_type=technical,"Technical feasibility architecture options and implementation approaches","planning_artifacts|project-knowledge","research documents"
|
|
10
|
+
bmm,1-analysis,Create Brief,CB,30,_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md,bmad-bmm-create-brief,false,analyst,Create Mode,"A guided experience to nail down your product idea",planning_artifacts,"product brief",
|
|
11
|
+
bmm,1-analysis,Validate Brief,VB,40,_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md,bmad-bmm-validate-brief,false,analyst,Validate Mode,"Validates product brief completeness",planning_artifacts,"brief validation report",
|
|
12
|
+
bmm,2-planning,Create PRD,CP,10,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow.md,bmad-bmm-prd,true,pm,Create Mode,"Expert led facilitation to produce your Product Requirements Document",planning_artifacts,prd,
|
|
13
|
+
bmm,2-planning,Validate PRD,VP,20,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow.md,bmad-bmm-prd,false,pm,Validate Mode,"Validate PRD is comprehensive lean well organized and cohesive",planning_artifacts,"prd validation report",
|
|
14
|
+
bmm,2-planning,Create UX,CU,30,_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md,bmad-bmm-create-ux-design,false,ux-designer,Create Mode,"Guidance through realizing the plan for your UX, strongly recommended if a UI is a primary piece of the proposed project",planning_artifacts,"ux design",
|
|
15
|
+
bmm,2-planning,Validate UX,VU,40,_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md,bmad-bmm-create-ux-design,false,ux-designer,Validate Mode,"Validates UX design deliverables",planning_artifacts,"ux validation report",
|
|
16
|
+
,anytime,Create Dataflow,CDF,50,_bmad/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml,bmad-bmm-create-excalidraw-dataflow,false,ux-designer,Create Mode,"Create data flow diagrams (DFD) in Excalidraw format - can be called standalone or during any workflow to add visual documentation",planning_artifacts,"dataflow diagram",
|
|
17
|
+
,anytime,Create Diagram,CED,51,_bmad/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml,bmad-bmm-create-excalidraw-diagram,false,ux-designer,Create Mode,"Create system architecture diagrams ERDs UML diagrams or general technical diagrams in Excalidraw format - use anytime or call from architecture workflow to add visual documentation",planning_artifacts,"diagram",
|
|
18
|
+
,anytime,Create Flowchart,CFC,52,_bmad/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml,bmad-bmm-create-excalidraw-flowchart,false,ux-designer,Create Mode,"Create a flowchart visualization in Excalidraw format for processes pipelines or logic flows - use anytime or during architecture to add process documentation",planning_artifacts,"flowchart",
|
|
19
|
+
,anytime,Create Wireframe,CEW,53,_bmad/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml,bmad-bmm-create-excalidraw-wireframe,false,ux-designer,Create Mode,"Create website or app wireframes in Excalidraw format - use anytime standalone or call from UX workflow to add UI mockups",planning_artifacts,"wireframe",
|
|
20
|
+
bmm,3-solutioning,Create Architecture,CA,10,_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md,bmad-bmm-create-architecture,true,architect,Create Mode,"Guided Workflow to document technical decisions",planning_artifacts,architecture,
|
|
21
|
+
bmm,3-solutioning,Validate Architecture,VA,20,_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md,bmad-bmm-create-architecture,false,architect,Validate Mode,"Validates architecture completeness",planning_artifacts,"architecture validation report",
|
|
22
|
+
bmm,3-solutioning,Create Epics and Stories,CE,30,_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md,bmad-bmm-create-epics-and-stories,true,pm,Create Mode,"Create the Epics and Stories Listing",planning_artifacts,"epics and stories",
|
|
23
|
+
bmm,3-solutioning,Validate Epics and Stories,VE,40,_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md,bmad-bmm-create-epics-and-stories,false,pm,Validate Mode,"Validates epics and stories completeness",planning_artifacts,"epics validation report",
|
|
24
|
+
bmm,3-solutioning,Check Implementation Readiness,IR,70,_bmad/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md,bmad-bmm-check-implementation-readiness,true,architect,Validate Mode,"Ensure PRD UX Architecture and Epics Stories are aligned",planning_artifacts,"readiness report",
|
|
25
|
+
bmm,4-implementation,Sprint Planning,SP,10,_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml,bmad-bmm-sprint-planning,true,sm,Create Mode,"Generate sprint plan for development tasks - this kicks off the implementation phase by producing a plan the implementation agents will follow in sequence for every story in the plan.",implementation_artifacts,"sprint status",
|
|
26
|
+
bmm,4-implementation,Sprint Status,SS,20,_bmad/bmm/workflows/4-implementation/sprint-status/workflow.yaml,bmad-bmm-sprint-status,false,sm,Create Mode,"Anytime: Summarize sprint status and route to next workflow",,,
|
|
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
|
+
bmm,4-implementation,Validate Story,VS,35,_bmad/bmm/workflows/4-implementation/create-story/workflow.yaml,bmad-bmm-create-story,false,sm,Validate Mode,"Validates story readiness and completeness before development work begins",implementation_artifacts,"story validation report",
|
|
29
|
+
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",,,
|
|
30
|
+
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",,,
|
|
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,
|
|
32
|
+
bmm,4-implementation,Automate,QA,45,_bmad/bmm/workflows/qa/automate/workflow.yaml,bmad-bmm-automate,false,quinn,Create Mode,"Generate automated API and E2E tests for implemented code using the project's existing test framework (detects Playwright, Jest, Vitest, etc). Use after implementation to add test coverage. NOT for code review or story validation - use CR for that.",implementation_artifacts,"test suite",
|
|
@@ -5,7 +5,6 @@ name,displayName,title,icon,role,identity,communicationStyle,principles,module,p
|
|
|
5
5
|
"pm","John","Product Manager","📋","Investigative Product Strategist + Market-Savvy PM","Product management veteran with 8+ years launching B2B and consumer products. Expert in market research, competitive analysis, and user behavior insights.","Asks 'WHY?' relentlessly like a detective on a case. Direct and data-sharp, cuts through fluff to what actually matters.","Uncover the deeper WHY behind every requirement. Ruthless prioritization to achieve MVP goals. Proactively identify risks. Align efforts with measurable business impact.","bmm","bmad/bmm/agents/pm.md"
|
|
6
6
|
"quick-flow-solo-dev","Barry","Quick Flow Solo Dev","🚀","Elite Full-Stack Developer + Quick Flow Specialist","Barry is an elite developer who thrives on autonomous execution. He lives and breathes the BMAD Quick Flow workflow, taking projects from concept to deployment with ruthless efficiency. No handoffs, no delays - just pure, focused development. He architects specs, writes the code, and ships features faster than entire teams.","Direct, confident, and implementation-focused. Uses tech slang and gets straight to the point. No fluff, just results. Every response moves the project forward.","Planning and execution are two sides of the same coin. Quick Flow is my religion. Specs are for building, not bureaucracy. Code that ships is better than perfect code that doesn't. Documentation happens alongside development, not after. Ship early, ship often.","bmm","bmad/bmm/agents/quick-flow-solo-dev.md"
|
|
7
7
|
"sm","Bob","Scrum Master","🏃","Technical Scrum Master + Story Preparation Specialist","Certified Scrum Master with deep technical background. Expert in agile ceremonies, story preparation, and creating clear actionable user stories.","Crisp and checklist-driven. Every word has a purpose, every requirement crystal clear. Zero tolerance for ambiguity.","Strict boundaries between story prep and implementation. Stories are single source of truth. Perfect alignment between PRD and dev execution. Enable efficient sprints.","bmm","bmad/bmm/agents/sm.md"
|
|
8
|
-
"tea","Murat","Master Test Architect","🧪","Master Test Architect","Test architect specializing in CI/CD, automated frameworks, and scalable quality gates.","Blends data with gut instinct. 'Strong opinions, weakly held' is their mantra. Speaks in risk calculations and impact assessments.","Risk-based testing. Depth scales with impact. Quality gates backed by data. Tests mirror usage. Flakiness is critical debt. Tests first AI implements suite validates.","bmm","bmad/bmm/agents/tea.md"
|
|
9
8
|
"tech-writer","Paige","Technical Writer","📚","Technical Documentation Specialist + Knowledge Curator","Experienced technical writer expert in CommonMark, DITA, OpenAPI. Master of clarity - transforms complex concepts into accessible structured documentation.","Patient educator who explains like teaching a friend. Uses analogies that make complex simple, celebrates clarity when it shines.","Documentation is teaching. Every doc helps someone accomplish a task. Clarity above all. Docs are living artifacts that evolve with code.","bmm","bmad/bmm/agents/tech-writer.md"
|
|
10
9
|
"ux-designer","Sally","UX Designer","🎨","User Experience Designer + UI Specialist","Senior UX Designer with 7+ years creating intuitive experiences across web and mobile. Expert in user research, interaction design, AI-assisted tools.","Paints pictures with words, telling user stories that make you FEEL the problem. Empathetic advocate with creative storytelling flair.","Every decision serves genuine user needs. Start simple evolve through feedback. Balance empathy with edge case attention. AI tools accelerate human-centered design.","bmm","bmad/bmm/agents/ux-designer.md"
|
|
11
10
|
"brainstorming-coach","Carson","Elite Brainstorming Specialist","🧠","Master Brainstorming Facilitator + Innovation Catalyst","Elite facilitator with 20+ years leading breakthrough sessions. Expert in creative techniques, group dynamics, and systematic innovation.","Talks like an enthusiastic improv coach - high energy, builds on ideas with YES AND, celebrates wild thinking","Psychological safety unlocks breakthroughs. Wild ideas today become innovations tomorrow. Humor and play are serious innovation tools.","cis","bmad/cis/agents/brainstorming-coach.md"
|
|
@@ -4,7 +4,7 @@ description: 'Discovery & Understanding - Understand what user wants to edit and
|
|
|
4
4
|
|
|
5
5
|
# File references (ONLY variables used in this step)
|
|
6
6
|
altStepFile: './step-e-01b-legacy-conversion.md'
|
|
7
|
-
prdPurpose: '{project-root}/
|
|
7
|
+
prdPurpose: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
|
|
8
8
|
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
|
9
9
|
partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
|
|
10
10
|
---
|
package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md
CHANGED
|
@@ -5,7 +5,7 @@ description: 'Legacy PRD Conversion Assessment - Analyze legacy PRD and propose
|
|
|
5
5
|
# File references (ONLY variables used in this step)
|
|
6
6
|
nextStepFile: './step-e-02-review.md'
|
|
7
7
|
prdFile: '{prd_file_path}'
|
|
8
|
-
prdPurpose: '{project-root}/
|
|
8
|
+
prdPurpose: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
# Step E-1B: Legacy PRD Conversion Assessment
|
|
@@ -6,7 +6,7 @@ description: 'Deep Review & Analysis - Thoroughly review existing PRD and prepar
|
|
|
6
6
|
nextStepFile: './step-e-03-edit.md'
|
|
7
7
|
prdFile: '{prd_file_path}'
|
|
8
8
|
validationReport: '{validation_report_path}' # If provided
|
|
9
|
-
prdPurpose: '{project-root}/
|
|
9
|
+
prdPurpose: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
|
|
10
10
|
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -5,7 +5,7 @@ description: 'Edit & Update - Apply changes to PRD following approved change pla
|
|
|
5
5
|
# File references (ONLY variables used in this step)
|
|
6
6
|
nextStepFile: './step-e-04-complete.md'
|
|
7
7
|
prdFile: '{prd_file_path}'
|
|
8
|
-
prdPurpose: '{project-root}/
|
|
8
|
+
prdPurpose: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
# Step E-3: Edit & Update
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
1. Review the comprehensive story in {{story_file}}
|
|
337
337
|
2. Run dev agents `dev-story` for optimized implementation
|
|
338
338
|
3. Run `code-review` when complete (auto-marks done)
|
|
339
|
-
4. Optional:
|
|
339
|
+
4. Optional: If Test Architect module installed, run `/bmad:tea:automate` after `dev-story` to generate guardrail tests
|
|
340
340
|
|
|
341
341
|
**The developer now has everything needed for flawless implementation!**
|
|
342
342
|
</output>
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
- Verify all acceptance criteria are met
|
|
398
398
|
- Ensure deployment readiness if applicable
|
|
399
399
|
- Run `code-review` workflow for peer review
|
|
400
|
-
- Optional:
|
|
400
|
+
- Optional: If Test Architect module installed, run `/bmad:tea:automate` to expand guardrail tests
|
|
401
401
|
</action>
|
|
402
402
|
|
|
403
403
|
<output>💡 **Tip:** For best results, run `code-review` using a **different** LLM than the one that implemented this story.</output>
|
|
@@ -26,6 +26,7 @@ variables:
|
|
|
26
26
|
|
|
27
27
|
# Tracking system configuration
|
|
28
28
|
tracking_system: "file-system" # Options: file-system, Future will support other options from config of mcp such as jira, linear, trello
|
|
29
|
+
project_key: "NOKEY" # Placeholder for tracker integrations; file-system uses a no-op key
|
|
29
30
|
story_location: "{config_source}:implementation_artifacts" # Relative path for file-system, Future will support URL for Jira/Linear/Trello
|
|
30
31
|
story_location_absolute: "{config_source}:implementation_artifacts" # Absolute path for file operations
|
|
31
32
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: 'step-01-understand'
|
|
3
3
|
description: 'Analyze the requirement delta between current state and what user wants to build'
|
|
4
4
|
|
|
5
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/bmad-quick-flow/
|
|
5
|
+
workflow_path: '{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec'
|
|
6
6
|
nextStepFile: './step-02-investigate.md'
|
|
7
7
|
skipToStepFile: './step-03-generate.md'
|
|
8
8
|
templateFile: '{workflow_path}/tech-spec-template.md'
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: 'step-02-investigate'
|
|
3
3
|
description: 'Map technical constraints and anchor points within the codebase'
|
|
4
4
|
|
|
5
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/bmad-quick-flow/
|
|
5
|
+
workflow_path: '{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec'
|
|
6
6
|
nextStepFile: './step-03-generate.md'
|
|
7
7
|
wipFile: '{implementation_artifacts}/tech-spec-wip.md'
|
|
8
8
|
---
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: 'step-03-generate'
|
|
3
3
|
description: 'Build the implementation plan based on the technical mapping of constraints'
|
|
4
4
|
|
|
5
|
-
workflow_path: '{project-root}/_bmad/bmm/workflows/bmad-quick-flow/
|
|
5
|
+
workflow_path: '{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec'
|
|
6
6
|
nextStepFile: './step-04-review.md'
|
|
7
7
|
wipFile: '{implementation_artifacts}/tech-spec-wip.md'
|
|
8
8
|
---
|
|
@@ -139,7 +139,7 @@ b) **HALT and wait for user selection.**
|
|
|
139
139
|
#### Menu Handling Logic:
|
|
140
140
|
|
|
141
141
|
- IF A: Read fully and follow: `{advanced_elicitation}` with current spec content, process enhanced insights, ask user "Accept improvements? (y/n)", if yes update spec then redisplay menu, if no keep original then redisplay menu
|
|
142
|
-
- IF B:
|
|
142
|
+
- IF B: Read the entire workflow file at `{quick_dev_workflow}` and follow the instructions with the final spec file (warn: fresh context is better)
|
|
143
143
|
- IF D: Exit workflow - display final confirmation and path to spec
|
|
144
144
|
- IF P: Read fully and follow: `{party_mode_exec}` with current spec content, process collaborative insights, ask user "Accept changes? (y/n)", if yes update spec then redisplay menu, if no keep original then redisplay menu
|
|
145
145
|
- IF R: Execute Adversarial Review (see below)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Quinn Automate - Validation Checklist
|
|
2
|
+
|
|
3
|
+
## Test Generation
|
|
4
|
+
|
|
5
|
+
- [ ] API tests generated (if applicable)
|
|
6
|
+
- [ ] E2E tests generated (if UI exists)
|
|
7
|
+
- [ ] Tests use standard test framework APIs
|
|
8
|
+
- [ ] Tests cover happy path
|
|
9
|
+
- [ ] Tests cover 1-2 critical error cases
|
|
10
|
+
|
|
11
|
+
## Test Quality
|
|
12
|
+
|
|
13
|
+
- [ ] All generated tests run successfully
|
|
14
|
+
- [ ] Tests use proper locators (semantic, accessible)
|
|
15
|
+
- [ ] Tests have clear descriptions
|
|
16
|
+
- [ ] No hardcoded waits or sleeps
|
|
17
|
+
- [ ] Tests are independent (no order dependency)
|
|
18
|
+
|
|
19
|
+
## Output
|
|
20
|
+
|
|
21
|
+
- [ ] Test summary created
|
|
22
|
+
- [ ] Tests saved to appropriate directories
|
|
23
|
+
- [ ] Summary includes coverage metrics
|
|
24
|
+
|
|
25
|
+
## Validation
|
|
26
|
+
|
|
27
|
+
Run the tests using your project's test command.
|
|
28
|
+
|
|
29
|
+
**Expected**: All tests pass ✅
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
**Need more comprehensive testing?** Install [Test Architect (TEA)](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/) for advanced workflows.
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# Quinn QA - Automate
|
|
2
|
+
|
|
3
|
+
**Goal**: Generate automated API and E2E tests for implemented code.
|
|
4
|
+
|
|
5
|
+
**Scope**: This workflow generates tests ONLY. It does **not** perform code review or story validation (use Code Review `CR` for that).
|
|
6
|
+
|
|
7
|
+
## Instructions
|
|
8
|
+
|
|
9
|
+
### Step 0: Detect Test Framework
|
|
10
|
+
|
|
11
|
+
Check project for existing test framework:
|
|
12
|
+
|
|
13
|
+
- Look for `package.json` dependencies (playwright, jest, vitest, cypress, etc.)
|
|
14
|
+
- Check for existing test files to understand patterns
|
|
15
|
+
- Use whatever test framework the project already has
|
|
16
|
+
- If no framework exists:
|
|
17
|
+
- Analyze source code to determine project type (React, Vue, Node API, etc.)
|
|
18
|
+
- Search online for current recommended test framework for that stack
|
|
19
|
+
- Suggest the meta framework and use it (or ask user to confirm)
|
|
20
|
+
|
|
21
|
+
### Step 1: Identify Features
|
|
22
|
+
|
|
23
|
+
Ask user what to test:
|
|
24
|
+
|
|
25
|
+
- Specific feature/component name
|
|
26
|
+
- Directory to scan (e.g., `src/components/`)
|
|
27
|
+
- Or auto-discover features in the codebase
|
|
28
|
+
|
|
29
|
+
### Step 2: Generate API Tests (if applicable)
|
|
30
|
+
|
|
31
|
+
For API endpoints/services, generate tests that:
|
|
32
|
+
|
|
33
|
+
- Test status codes (200, 400, 404, 500)
|
|
34
|
+
- Validate response structure
|
|
35
|
+
- Cover happy path + 1-2 error cases
|
|
36
|
+
- Use project's existing test framework patterns
|
|
37
|
+
|
|
38
|
+
### Step 3: Generate E2E Tests (if UI exists)
|
|
39
|
+
|
|
40
|
+
For UI features, generate tests that:
|
|
41
|
+
|
|
42
|
+
- Test user workflows end-to-end
|
|
43
|
+
- Use semantic locators (roles, labels, text)
|
|
44
|
+
- Focus on user interactions (clicks, form fills, navigation)
|
|
45
|
+
- Assert visible outcomes
|
|
46
|
+
- Keep tests linear and simple
|
|
47
|
+
- Follow project's existing test patterns
|
|
48
|
+
|
|
49
|
+
### Step 4: Run Tests
|
|
50
|
+
|
|
51
|
+
Execute tests to verify they pass (use project's test command).
|
|
52
|
+
|
|
53
|
+
If failures occur, fix them immediately.
|
|
54
|
+
|
|
55
|
+
### Step 5: Create Summary
|
|
56
|
+
|
|
57
|
+
Output markdown summary:
|
|
58
|
+
|
|
59
|
+
```markdown
|
|
60
|
+
# Test Automation Summary
|
|
61
|
+
|
|
62
|
+
## Generated Tests
|
|
63
|
+
|
|
64
|
+
### API Tests
|
|
65
|
+
- [x] tests/api/endpoint.spec.ts - Endpoint validation
|
|
66
|
+
|
|
67
|
+
### E2E Tests
|
|
68
|
+
- [x] tests/e2e/feature.spec.ts - User workflow
|
|
69
|
+
|
|
70
|
+
## Coverage
|
|
71
|
+
- API endpoints: 5/10 covered
|
|
72
|
+
- UI features: 3/8 covered
|
|
73
|
+
|
|
74
|
+
## Next Steps
|
|
75
|
+
- Run tests in CI
|
|
76
|
+
- Add more edge cases as needed
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Keep It Simple
|
|
80
|
+
|
|
81
|
+
**Do:**
|
|
82
|
+
|
|
83
|
+
- Use standard test framework APIs
|
|
84
|
+
- Focus on happy path + critical errors
|
|
85
|
+
- Write readable, maintainable tests
|
|
86
|
+
- Run tests to verify they pass
|
|
87
|
+
|
|
88
|
+
**Avoid:**
|
|
89
|
+
|
|
90
|
+
- Complex fixture composition
|
|
91
|
+
- Over-engineering
|
|
92
|
+
- Unnecessary abstractions
|
|
93
|
+
|
|
94
|
+
**For Advanced Features:**
|
|
95
|
+
|
|
96
|
+
If the project needs:
|
|
97
|
+
|
|
98
|
+
- Risk-based test strategy
|
|
99
|
+
- Test design planning
|
|
100
|
+
- Quality gates and NFR assessment
|
|
101
|
+
- Comprehensive coverage analysis
|
|
102
|
+
- Advanced testing patterns and utilities
|
|
103
|
+
|
|
104
|
+
→ **Install Test Architect (TEA) module**: <https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/>
|
|
105
|
+
|
|
106
|
+
## Output
|
|
107
|
+
|
|
108
|
+
Save summary to: `{implementation_artifacts}/tests/test-summary.md`
|
|
109
|
+
|
|
110
|
+
**Done!** Tests generated and verified.
|