test: quinn to qa (#1508)
* test: quinn to qa * Removed the TEA sidebar section from the main docs nav --------- Co-authored-by: Brian <bmadcode@gmail.com>
This commit is contained in:
parent
ba890779a2
commit
7ecae1d000
|
|
@ -58,7 +58,7 @@ Build it, one story at a time.
|
||||||
| `correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
|
| `correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
|
||||||
| `retrospective` | Review after epic completion | Lessons learned |
|
| `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)
|
## Quick Flow (Parallel Track)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
agent:
|
agent:
|
||||||
metadata:
|
metadata:
|
||||||
id: "_bmad/bmm/agents/quinn"
|
id: "_bmad/bmm/agents/qa"
|
||||||
name: Quinn
|
name: Quinn
|
||||||
title: QA Engineer
|
title: QA Engineer
|
||||||
icon: 🧪
|
icon: 🧪
|
||||||
|
|
@ -54,4 +54,4 @@ agent:
|
||||||
For comprehensive test strategy, risk-based planning, quality gates, and enterprise features,
|
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/
|
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`!
|
||||||
|
|
@ -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,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,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,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,
|
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,
|
||||||
|
|
|
||||||
|
|
|
@ -164,7 +164,7 @@ async function runTests() {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const builder = new YamlXmlBuilder();
|
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');
|
const tempOutput = path.join(__dirname, 'temp-qa-agent.md');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
|
|
@ -110,41 +110,7 @@ export default defineConfig({
|
||||||
collapsed: true,
|
collapsed: true,
|
||||||
autogenerate: { directory: 'reference' },
|
autogenerate: { directory: 'reference' },
|
||||||
},
|
},
|
||||||
{
|
// TEA docs moved to standalone module site; keep BMM sidebar focused.
|
||||||
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' },
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
|
|
||||||
// Credits in footer
|
// Credits in footer
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue