bmad-method 6.1.1-next.16 → 6.1.1-next.17
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/package.json +1 -1
- package/src/bmm/agents/qa.agent.yaml +1 -1
- package/src/bmm/module-help.csv +1 -1
- package/src/bmm/workflows/bmad-qa-generate-e2e-tests/SKILL.md +6 -0
- package/src/bmm/workflows/bmad-qa-generate-e2e-tests/bmad-skill-manifest.yaml +1 -0
- package/src/bmm/workflows/{qa-generate-e2e-tests → bmad-qa-generate-e2e-tests}/workflow.md +2 -7
- package/src/bmm/workflows/qa-generate-e2e-tests/bmad-skill-manifest.yaml +0 -3
- /package/src/bmm/workflows/{qa-generate-e2e-tests → bmad-qa-generate-e2e-tests}/checklist.md +0 -0
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@ agent:
|
|
|
29
29
|
|
|
30
30
|
menu:
|
|
31
31
|
- trigger: QA or fuzzy match on qa-automate
|
|
32
|
-
exec: "
|
|
32
|
+
exec: "skill:bmad-qa-generate-e2e-tests"
|
|
33
33
|
description: "[QA] Automate - Generate tests for existing features (simplified)"
|
|
34
34
|
|
|
35
35
|
prompts:
|
package/src/bmm/module-help.csv
CHANGED
|
@@ -28,5 +28,5 @@ bmm,4-implementation,Validate Story,VS,35,skill:bmad-create-story,bmad-bmm-creat
|
|
|
28
28
|
bmm,4-implementation,Create Story,CS,30,skill:bmad-create-story,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,
|
|
29
29
|
bmm,4-implementation,Dev Story,DS,40,skill:bmad-dev-story,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
30
|
bmm,4-implementation,Code Review,CR,50,skill:bmad-code-review,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,QA Automation Test,QA,45,
|
|
31
|
+
bmm,4-implementation,QA Automation Test,QA,45,skill:bmad-qa-generate-e2e-tests,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",
|
|
32
32
|
bmm,4-implementation,Retrospective,ER,60,skill:bmad-retrospective,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,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
type: skill
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: qa-generate-e2e-tests
|
|
3
|
-
description: 'Generate end to end automated tests for existing features. Use when the user says "create qa automated tests for [feature]"'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
1
|
# QA Generate E2E Tests Workflow
|
|
7
2
|
|
|
8
3
|
**Goal:** Generate automated API and E2E tests for implemented code.
|
|
@@ -25,8 +20,8 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
|
|
|
25
20
|
|
|
26
21
|
### Paths
|
|
27
22
|
|
|
28
|
-
- `installed_path` =
|
|
29
|
-
- `checklist` =
|
|
23
|
+
- `installed_path` = `.`
|
|
24
|
+
- `checklist` = `./checklist.md`
|
|
30
25
|
- `test_dir` = `{project-root}/tests`
|
|
31
26
|
- `source_dir` = `{project-root}`
|
|
32
27
|
- `default_output_file` = `{implementation_artifacts}/tests/test-summary.md`
|
/package/src/bmm/workflows/{qa-generate-e2e-tests → bmad-qa-generate-e2e-tests}/checklist.md
RENAMED
|
File without changes
|