Skip to content

Commit aba9d11

Browse files
Brian MadisonBrian Madison
authored andcommitted
quick flow updates to aid discovery and implementation
1 parent 208f27d commit aba9d11

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/steps/step-01-understand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ a) **Before asking detailed questions, do a rapid scan to understand the landsca
7676

7777
b) **Check for existing context docs:**
7878

79-
- Check `{output_folder}` for planning documents (PRD, architecture, epics)
79+
- Check `{output_folder}` and `{planning_artifacts}`for planning documents (PRD, architecture, epics, research)
8080
- Check for `**/project-context.md` - if it exists, skim for patterns and conventions
8181
- Check for any existing stories or specs related to user's request
8282

src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This uses **step-file architecture** for disciplined execution:
6969

7070
Load and read full config from `{main_config}` and resolve:
7171

72-
- `project_name`, `output_folder`, `implementation_artifacts`, `user_name`
72+
- `project_name`, `output_folder`, `planning_artifacts`, `implementation_artifacts`, `user_name`
7373
- `communication_language`, `document_output_language`, `user_skill_level`
7474
- `date` as system-generated current datetime
7575

src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ First, check if the project uses Git version control:
4040

4141
### 2. Load Project Context
4242

43-
Check if `{project_context}` exists (`**/project-context.md`). If found, load it - this is foundational reference for ALL implementation decisions.
43+
Check if `{project_context}` exists (`**/project-context.md`). If found, load it as a foundational reference for ALL implementation decisions.
4444

4545
### 3. Parse User Input
4646

src/modules/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This uses **step-file architecture** for focused execution:
2828
Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
2929

3030
- `user_name`, `communication_language`, `user_skill_level`
31-
- `output_folder`, `sprint_artifacts`
31+
- `output_folder`, `planning_artifacts`, `implementation_artifacts`
3232
- `date` as system-generated current datetime
3333

3434
### Paths

tools/cli/lib/agent/compiler.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,7 @@ function buildMenuXml(menuItems) {
142142
}
143143
// Handle legacy format menu items
144144
else if (item.trigger) {
145-
// For legacy items, keep using cmd with *<trigger> format
146145
let trigger = item.trigger || '';
147-
if (!trigger.startsWith('*')) {
148-
trigger = '*' + trigger;
149-
}
150146

151147
const attrs = [`cmd="${trigger}"`];
152148

0 commit comments

Comments
 (0)