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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.1.1-next.16",
4
+ "version": "6.1.1-next.17",
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
- exec: "{project-root}/_bmad/bmm/workflows/qa-generate-e2e-tests/workflow.md"
32
+ exec: "skill:bmad-qa-generate-e2e-tests"
33
33
  description: "[QA] Automate - Generate tests for existing features (simplified)"
34
34
 
35
35
  prompts:
@@ -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,_bmad/bmm/workflows/qa-generate-e2e-tests/workflow.md,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
+ 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,6 @@
1
+ ---
2
+ name: bmad-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
+ Follow the instructions in [workflow.md](workflow.md).
@@ -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` = `{project-root}/_bmad/bmm/workflows/qa-generate-e2e-tests`
29
- - `checklist` = `{installed_path}/checklist.md`
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`
@@ -1,3 +0,0 @@
1
- canonicalId: bmad-qa-generate-e2e-tests
2
- type: workflow
3
- description: "Generate end-to-end automated tests for existing features"