bmad-method 6.1.1-next.23 → 6.1.1-next.25

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.23",
4
+ "version": "6.1.1-next.25",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -28,7 +28,7 @@ agent:
28
28
  description: "[VP] Validate PRD: Validate a Product Requirements Document is comprehensive, lean, well organized and cohesive"
29
29
 
30
30
  - trigger: EP or fuzzy match on edit-prd
31
- exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md"
31
+ exec: "skill:bmad-edit-prd"
32
32
  description: "[EP] Edit PRD: Update an existing Product Requirements Document"
33
33
 
34
34
  - trigger: CE or fuzzy match on epics-stories
@@ -17,7 +17,7 @@ bmm,1-analysis,Technical Research,TR,22,skill:bmad-technical-research,bmad-bmm-t
17
17
  bmm,1-analysis,Create Brief,CB,30,skill:bmad-create-product-brief,bmad-bmm-create-product-brief,false,analyst,Create Mode,"A guided experience to nail down your product idea",planning_artifacts,"product brief",
18
18
  bmm,2-planning,Create PRD,CP,10,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md,bmad-bmm-create-prd,true,pm,Create Mode,"Expert led facilitation to produce your Product Requirements Document",planning_artifacts,prd,
19
19
  bmm,2-planning,Validate PRD,VP,20,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md,bmad-bmm-validate-prd,false,pm,Validate Mode,"Validate PRD is comprehensive lean well organized and cohesive",planning_artifacts,"prd validation report",
20
- bmm,2-planning,Edit PRD,EP,25,_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md,bmad-bmm-edit-prd,false,pm,Edit Mode,"Improve and enhance an existing PRD",planning_artifacts,"updated prd",
20
+ bmm,2-planning,Edit PRD,EP,25,skill:bmad-edit-prd,bmad-bmm-edit-prd,false,pm,Edit Mode,"Improve and enhance an existing PRD",planning_artifacts,"updated prd",
21
21
  bmm,2-planning,Create UX,CU,30,skill:bmad-create-ux-design,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",
22
22
  bmm,3-solutioning,Create Architecture,CA,10,skill:bmad-create-architecture,bmad-bmm-create-architecture,true,architect,Create Mode,"Guided Workflow to document technical decisions",planning_artifacts,architecture,
23
23
  bmm,3-solutioning,Create Epics and Stories,CE,30,skill:bmad-create-epics-and-stories,bmad-bmm-create-epics-and-stories,true,pm,Create Mode,"Create the Epics and Stories Listing",planning_artifacts,"epics and stories",
@@ -58,7 +58,7 @@ Discover and load context documents using smart discovery. Documents can be in t
58
58
  - {planning_artifacts}/**
59
59
  - {output_folder}/**
60
60
  - {product_knowledge}/**
61
- - docs/**
61
+ - {project-root}/docs/**
62
62
 
63
63
  Also - when searching - documents can be a single markdown file, or a folder with an index and multiple files. For Example, if searching for `*foo*.md` and not found, also search for a folder called *foo*/index.md (which indicates sharded content)
64
64
 
@@ -80,7 +80,7 @@ Try to discover the following:
80
80
 
81
81
  #### B. Create Initial Document
82
82
 
83
- Copy the template from `{installed_path}/ux-design-template.md` to `{planning_artifacts}/ux-design-specification.md`
83
+ Copy the template from `../ux-design-template.md` to `{planning_artifacts}/ux-design-specification.md`
84
84
  Initialize frontmatter in the template.
85
85
 
86
86
  #### C. Complete Initialization and Report
@@ -108,7 +108,7 @@ After presenting current progress, ask:
108
108
  If `lastStep` indicates the final step is completed:
109
109
  "Great news! It looks like we've already completed the UX design workflow for {{project_name}}.
110
110
 
111
- The final UX design specification is ready at {output_folder}/ux-design-specification.md with all sections completed through step {finalStepNumber}.
111
+ The final UX design specification is ready at {planning_artifacts}/ux-design-specification.md with all sections completed through step {finalStepNumber}.
112
112
 
113
113
  The complete UX design includes visual foundations, user flows, and design specifications ready for implementation.
114
114
 
@@ -75,8 +75,8 @@ This specification is now ready to guide visual design, implementation, and deve
75
75
 
76
76
  Update the main workflow status file:
77
77
 
78
- - Load `{status_file}` from workflow configuration (if exists)
79
- - Update workflow_status["create-ux-design"] = "{default_output_file}"
78
+ - Load the project's workflow status file (if one exists)
79
+ - Update workflow_status["create-ux-design"] = `{planning_artifacts}/ux-design-specification.md`
80
80
  - Save file, preserving all comments and structure
81
81
  - Mark current timestamp as completion time
82
82
 
@@ -27,8 +27,6 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
27
27
 
28
28
  ### Paths
29
29
 
30
- - `installed_path` = `.`
31
- - `template_path` = `{installed_path}/ux-design-template.md`
32
30
  - `default_output_file` = `{planning_artifacts}/ux-design-specification.md`
33
31
 
34
32
  ## EXECUTION
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: bmad-edit-prd
3
+ description: 'Edit an existing PRD. Use when the user says "edit this PRD".'
4
+ ---
5
+
6
+ Follow the instructions in [workflow.md](workflow.md).
@@ -4,7 +4,7 @@ description: 'Complete & Validate - Present options for next steps including ful
4
4
 
5
5
  # File references (ONLY variables used in this step)
6
6
  prdFile: '{prd_file_path}'
7
- validationWorkflow: '../steps-v/step-v-01-discovery.md'
7
+ validationWorkflow: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md'
8
8
  ---
9
9
 
10
10
  # Step E-4: Complete & Validate
@@ -1,6 +1,4 @@
1
1
  ---
2
- name: edit-prd
3
- description: 'Edit an existing PRD. Use when the user says "edit this PRD".'
4
2
  main_config: '{project-root}/_bmad/bmm/config.yaml'
5
3
  editWorkflow: './steps-e/step-e-01-discovery.md'
6
4
  ---
@@ -3,11 +3,6 @@ workflow-create-prd.md:
3
3
  type: workflow
4
4
  description: "Create a PRD from scratch. Use when the user says 'lets create a product requirements document' or 'I want to create a new PRD'"
5
5
 
6
- workflow-edit-prd.md:
7
- canonicalId: bmad-edit-prd
8
- type: workflow
9
- description: "Edit an existing PRD. Use when the user says 'edit this PRD'"
10
-
11
6
  workflow-validate-prd.md:
12
7
  canonicalId: bmad-validate-prd
13
8
  type: workflow