diff --git a/docs/reference/workflow-map.md b/docs/reference/workflow-map.md index 667485ba..1425c469 100644 --- a/docs/reference/workflow-map.md +++ b/docs/reference/workflow-map.md @@ -58,7 +58,7 @@ Build it, one story at a time. | `correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing | | `retrospective` | Review after epic completion | Lessons learned | -**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. +**Quinn (QA Agent):** Built-in QA agent for test automation. Trigger with `QA` or `bmad-bmm-qa-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. ## Quick Flow (Parallel Track) diff --git a/src/bmm/agents/quinn.agent.yaml b/src/bmm/agents/qa.agent.yaml similarity index 97% rename from src/bmm/agents/quinn.agent.yaml rename to src/bmm/agents/qa.agent.yaml index 73ed366c..bad945cd 100644 --- a/src/bmm/agents/quinn.agent.yaml +++ b/src/bmm/agents/qa.agent.yaml @@ -1,6 +1,6 @@ agent: metadata: - id: "_bmad/bmm/agents/quinn" + id: "_bmad/bmm/agents/qa" name: Quinn title: QA Engineer icon: 🧪 @@ -54,4 +54,4 @@ agent: For comprehensive test strategy, risk-based planning, quality gates, and enterprise features, install the Test Architect (TEA) module: https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/ - Ready to generate some tests? Just say `QA` or `bmad-bmm-automate`! + Ready to generate some tests? Just say `QA` or `bmad-bmm-qa-automate`! diff --git a/src/bmm/module-help.csv b/src/bmm/module-help.csv index af7c52c2..45eeb6ab 100644 --- a/src/bmm/module-help.csv +++ b/src/bmm/module-help.csv @@ -34,5 +34,5 @@ bmm,4-implementation,Validate Story,VS,35,_bmad/bmm/workflows/4-implementation/c 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, 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",,, 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",,, -bmm,4-implementation,QA Automation Test,QA,45,_bmad/bmm/workflows/qa/automate/workflow.yaml,bmad-bmm-qa-automate,false,quinn,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", +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", 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, diff --git a/test/test-installation-components.js b/test/test-installation-components.js index 78ac650a..0970861b 100644 --- a/test/test-installation-components.js +++ b/test/test-installation-components.js @@ -164,7 +164,7 @@ async function runTests() { try { const builder = new YamlXmlBuilder(); - const qaAgentPath = path.join(projectRoot, 'src/bmm/agents/quinn.agent.yaml'); + const qaAgentPath = path.join(projectRoot, 'src/bmm/agents/qa.agent.yaml'); const tempOutput = path.join(__dirname, 'temp-qa-agent.md'); try { diff --git a/website/astro.config.mjs b/website/astro.config.mjs index a57bc648..23a3179c 100644 --- a/website/astro.config.mjs +++ b/website/astro.config.mjs @@ -110,41 +110,7 @@ export default defineConfig({ collapsed: true, autogenerate: { directory: 'reference' }, }, - { - label: 'TEA - Testing in BMAD', - collapsed: true, - items: [ - { - label: 'Tutorials', - autogenerate: { directory: 'tea/tutorials' }, - }, - { - label: 'How-To Guides', - items: [ - { - label: 'Workflows', - autogenerate: { directory: 'tea/how-to/workflows' }, - }, - { - label: 'Customization', - autogenerate: { directory: 'tea/how-to/customization' }, - }, - { - label: 'Brownfield', - autogenerate: { directory: 'tea/how-to/brownfield' }, - }, - ], - }, - { - label: 'Explanation', - autogenerate: { directory: 'tea/explanation' }, - }, - { - label: 'Reference', - autogenerate: { directory: 'tea/reference' }, - }, - ], - }, + // TEA docs moved to standalone module site; keep BMM sidebar focused. ], // Credits in footer