bmad-method 6.1.1-next.21 → 6.1.1-next.22

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.21",
4
+ "version": "6.1.1-next.22",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -20,7 +20,7 @@ agent:
20
20
 
21
21
  menu:
22
22
  - trigger: QS or fuzzy match on quick-spec
23
- exec: "{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md"
23
+ exec: "skill:bmad-quick-spec"
24
24
  description: "[QS] Quick Spec: Architect a quick but complete technical spec with implementation-ready stories/specs"
25
25
 
26
26
  - trigger: QD or fuzzy match on quick-dev
@@ -1,7 +1,7 @@
1
1
  module,phase,name,code,sequence,workflow-file,command,required,agent,options,description,output-location,outputs,
2
2
  bmm,anytime,Document Project,DP,,skill:bmad-document-project,bmad-bmm-document-project,false,analyst,Create Mode,"Analyze an existing project to produce useful documentation",project-knowledge,*,
3
3
  bmm,anytime,Generate Project Context,GPC,,skill:bmad-generate-project-context,bmad-bmm-generate-project-context,false,analyst,Create Mode,"Scan existing codebase to generate a lean LLM-optimized project-context.md containing critical implementation rules patterns and conventions for AI agents. Essential for brownfield projects and quick-flow.",output_folder,"project context",
4
- bmm,anytime,Quick Spec,QS,,_bmad/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md,bmad-bmm-quick-spec,false,quick-flow-solo-dev,Create Mode,"Do not suggest for potentially very complex things unless requested or if the user complains that they do not want to follow the extensive planning of the bmad method. Quick one-off tasks small changes simple apps brownfield additions to well established patterns utilities without extensive planning",planning_artifacts,"tech spec",
4
+ bmm,anytime,Quick Spec,QS,,skill:bmad-quick-spec,bmad-bmm-quick-spec,false,quick-flow-solo-dev,Create Mode,"Do not suggest for potentially very complex things unless requested or if the user complains that they do not want to follow the extensive planning of the bmad method. Quick one-off tasks small changes simple apps brownfield additions to well established patterns utilities without extensive planning",planning_artifacts,"tech spec",
5
5
  bmm,anytime,Quick Dev,QD,,skill:bmad-quick-dev,bmad-bmm-quick-dev,false,quick-flow-solo-dev,Create Mode,"Quick one-off tasks small changes simple apps utilities without extensive planning - Do not suggest for potentially very complex things unless requested or if the user complains that they do not want to follow the extensive planning of the bmad method, unless the user is already working through the implementation phase and just requests a 1 off things not already in the plan",,,
6
6
  bmm,anytime,Quick Dev New Preview,QQ,,skill:bmad-quick-dev-new-preview,bmad-bmm-quick-dev-new-preview,false,quick-flow-solo-dev,Create Mode,"Unified quick flow (experimental): clarify intent plan implement review and present in a single workflow",implementation_artifacts,"tech spec implementation",
7
7
  bmm,anytime,Correct Course,CC,,skill:bmad-correct-course,bmad-bmm-correct-course,false,sm,Create Mode,"Anytime: Navigate significant changes. May recommend start over update PRD redo architecture sprint planning or correct epics and stories",planning_artifacts,"change proposal",
@@ -33,7 +33,7 @@ Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
33
33
 
34
34
  ### Related Workflows
35
35
 
36
- - `quick_spec_workflow` = `../quick-spec/workflow.md`
36
+ - `quick_spec_workflow` = `skill:bmad-quick-spec`
37
37
  - `party_mode_exec` = `{project-root}/_bmad/core/workflows/bmad-party-mode/workflow.md`
38
38
  - `advanced_elicitation` = `skill:bmad-advanced-elicitation`
39
39
 
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: bmad-quick-spec
3
+ description: 'Very quick process to create implementation-ready quick specs for small changes or features. Use when the user says "create a quick spec" or "generate a quick tech spec"'
4
+ ---
5
+
6
+ Follow the instructions in [workflow.md](workflow.md).
@@ -54,9 +54,9 @@ a) **Menu Handling:**
54
54
 
55
55
  - **[Y] Continue existing:**
56
56
  - Jump directly to the appropriate step based on `stepsCompleted`:
57
- - `[1]` → Read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md` (Step 2)
58
- - `[1, 2]` → Read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md` (Step 3)
59
- - `[1, 2, 3]` → Read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md` (Step 4)
57
+ - `[1]` → Read fully and follow: `./step-02-investigate.md` (Step 2)
58
+ - `[1, 2]` → Read fully and follow: `./step-03-generate.md` (Step 3)
59
+ - `[1, 2, 3]` → Read fully and follow: `./step-04-review.md` (Step 4)
60
60
  - **[N] Archive and start fresh:**
61
61
  - Rename `{wipFile}` to `{implementation_artifacts}/tech-spec-{slug}-archived-{date}.md`
62
62
 
@@ -167,7 +167,7 @@ b) **HALT and wait for user selection.**
167
167
 
168
168
  - IF A: Read fully and follow: `{advanced_elicitation}` with current tech-spec content, process enhanced insights, ask user "Accept improvements? (y/n)", if yes update WIP file then redisplay menu, if no keep original then redisplay menu
169
169
  - IF P: Read fully and follow: `{party_mode_exec}` with current tech-spec content, process collaborative insights, ask user "Accept changes? (y/n)", if yes update WIP file then redisplay menu, if no keep original then redisplay menu
170
- - IF C: Verify `{wipFile}` has `stepsCompleted: [1]`, then read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md`
170
+ - IF C: Verify `{wipFile}` has `stepsCompleted: [1]`, then read fully and follow: `./step-02-investigate.md`
171
171
  - IF Any other comments or queries: respond helpfully then redisplay menu
172
172
 
173
173
  #### EXECUTION RULES:
@@ -121,7 +121,7 @@ Display: "**Select:** [A] Advanced Elicitation [P] Party Mode [C] Continue to Ge
121
121
 
122
122
  - IF A: Read fully and follow: `{advanced_elicitation}` with current tech-spec content, process enhanced insights, ask user "Accept improvements? (y/n)", if yes update WIP file then redisplay menu, if no keep original then redisplay menu
123
123
  - IF P: Read fully and follow: `{party_mode_exec}` with current tech-spec content, process collaborative insights, ask user "Accept changes? (y/n)", if yes update WIP file then redisplay menu, if no keep original then redisplay menu
124
- - IF C: Verify frontmatter updated with `stepsCompleted: [1, 2]`, then read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md`
124
+ - IF C: Verify frontmatter updated with `stepsCompleted: [1, 2]`, then read fully and follow: `./step-03-generate.md`
125
125
  - IF Any other comments or queries: respond helpfully then redisplay menu
126
126
 
127
127
  #### EXECUTION RULES:
@@ -112,7 +112,7 @@ stepsCompleted: [1, 2, 3]
112
112
  ---
113
113
  ```
114
114
 
115
- c) **Read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md` (Step 4)**
115
+ c) **Read fully and follow: `./step-04-review.md` (Step 4)**
116
116
 
117
117
  ## REQUIRED OUTPUTS:
118
118
 
@@ -1,6 +1,4 @@
1
1
  ---
2
- name: quick-spec
3
- description: 'Very quick process to create implementation-ready quick specs for small changes or features. Use when the user says "create a quick spec" or "generate a quick tech spec"'
4
2
  main_config: '{project-root}/_bmad/bmm/config.yaml'
5
3
 
6
4
  # Checkpoint handler references
@@ -75,4 +73,4 @@ Load and read full config from `{main_config}` and resolve:
75
73
 
76
74
  ### 2. First Step Execution
77
75
 
78
- Read fully and follow: `{project-root}/_bmad/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md` to begin the workflow.
76
+ Read fully and follow: `./steps/step-01-understand.md` to begin the workflow.
@@ -1,3 +0,0 @@
1
- canonicalId: bmad-quick-spec
2
- type: workflow
3
- description: "Very quick process to create implementation-ready quick specs for small changes or features"