updates to the paths

This commit is contained in:
Brian Madison 2025-10-21 20:37:59 -05:00
parent 949d818db8
commit 71330b6aac
12 changed files with 264 additions and 203 deletions

View File

@ -3,12 +3,9 @@
```xml ```xml
<critical>The workflow execution engine is governed by: {project_root}/bmad/core/tasks/workflow.xml</critical> <critical>The workflow execution engine is governed by: {project_root}/bmad/core/tasks/workflow.xml</critical>
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical> <critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
<critical>Communicate all responses in {communication_language} and language MUST be tailored to {user_skill_level}</critical>
<critical>Generate all documents in {document_output_language}</critical> <critical>Generate all documents in {document_output_language}</critical>
<critical>This workflow creates or updates the next user story from epics/PRD and architecture context, saving to the configured stories directory and optionally invoking Story Context.</critical> <critical>This workflow creates or updates the next user story from epics/PRD and architecture context, saving to the configured stories directory and optionally invoking Story Context.</critical>
<critical>Default execution mode: #yolo (minimal prompts). Only elicit if absolutely required and {{non_interactive}} == false.</critical> <critical>DOCUMENT OUTPUT: Concise, technical, actionable story specifications. Use tables/lists for acceptance criteria and tasks.</critical>
<critical>DOCUMENT OUTPUT: Concise, technical, actionable story specifications. Use tables/lists for acceptance criteria and tasks. User skill level ({user_skill_level}) affects conversation style ONLY, not document content.</critical>
<workflow> <workflow>

View File

@ -44,6 +44,12 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
workflows: workflows:
- id: "create-story" - id: "create-story"
required: true required: true

View File

@ -48,6 +48,13 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
story_loop: "for_each_story"
workflows: workflows:
- id: "create-story" - id: "create-story"
required: true required: true

View File

@ -62,6 +62,13 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
story_loop: "for_each_story"
workflows: workflows:
- id: "create-story" - id: "create-story"
required: true required: true
@ -81,7 +88,7 @@ phases:
agent: "dev" agent: "dev"
command: "dev-story" command: "dev-story"
- id: "review-story" - id: "review-story"
recommended: true optional: true
agent: "dev" agent: "dev"
command: "review-story" command: "review-story"
- id: "story-done" - id: "story-done"

View File

@ -77,13 +77,21 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
epic_loop: "for_each_epic" epic_loop: "for_each_epic"
epic_workflows: epic_iteration:
setup_workflows:
- id: "tech-spec" - id: "tech-spec"
required: true required: true
agent: "architect" agent: "architect"
command: "tech-spec" command: "tech-spec"
note: "Must respect existing patterns" note: "Must respect existing patterns"
story_loop: "for_each_story_in_epic" story_loop: "for_each_story_in_epic"
story_workflows: story_workflows:
- id: "create-story" - id: "create-story"
@ -96,12 +104,12 @@ phases:
command: "story-context" command: "story-context"
note: "Heavy emphasis on existing code context" note: "Heavy emphasis on existing code context"
- id: "validate-story-context" - id: "validate-story-context"
required: true optional: true
agent: "sm" agent: "sm"
command: "validate-story-context" command: "validate-story-context"
note: "Ensure no breaking changes" note: "Ensure no breaking changes"
- id: "story-ready" - id: "story-ready"
recommended: true optional: true
agent: "sm" agent: "sm"
command: "story-ready" command: "story-ready"
- id: "dev-story" - id: "dev-story"
@ -109,19 +117,16 @@ phases:
agent: "dev" agent: "dev"
command: "dev-story" command: "dev-story"
- id: "review-story" - id: "review-story"
required: true optional: true
agent: "dev" agent: "dev"
command: "review-story" command: "review-story"
note: "Check integration points" note: "Check integration points"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "story-done" - id: "story-done"
required: true required: true
agent: "dev" agent: "dev"
command: "story-done" command: "story-done"
epic_completion:
completion_workflows:
- id: "integration-test" - id: "integration-test"
required: true required: true
agent: "dev" agent: "dev"

View File

@ -71,13 +71,21 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
epic_loop: "for_each_epic" epic_loop: "for_each_epic"
epic_workflows: epic_iteration:
setup_workflows:
- id: "tech-spec" - id: "tech-spec"
required: true required: true
agent: "sm" agent: "sm"
command: "tech-spec" command: "tech-spec"
note: "JIT per epic - creates stories considering existing code" note: "JIT per epic - creates stories considering existing code"
story_loop: "for_each_story_in_epic" story_loop: "for_each_story_in_epic"
story_workflows: story_workflows:
- id: "create-story" - id: "create-story"
@ -90,11 +98,11 @@ phases:
command: "story-context" command: "story-context"
note: "Extensive existing code context required" note: "Extensive existing code context required"
- id: "validate-story-context" - id: "validate-story-context"
required: true optional: true
agent: "sm" agent: "sm"
command: "validate-story-context" command: "validate-story-context"
- id: "story-ready" - id: "story-ready"
required: true optional: true
agent: "sm" agent: "sm"
command: "story-ready" command: "story-ready"
- id: "dev-story" - id: "dev-story"
@ -102,16 +110,12 @@ phases:
agent: "dev" agent: "dev"
command: "dev-story" command: "dev-story"
- id: "review-story" - id: "review-story"
required: true optional: true
agent: "dev" agent: "dev"
command: "review-story" command: "review-story"
note: "Rigorous review for enterprise changes" note: "Rigorous review for enterprise changes"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "integration-test" - id: "integration-test"
required: true optional: true
agent: "dev" agent: "dev"
command: "integration-test" command: "integration-test"
note: "Test integration with existing systems" note: "Test integration with existing systems"
@ -119,7 +123,8 @@ phases:
required: true required: true
agent: "dev" agent: "dev"
command: "story-done" command: "story-done"
epic_completion:
completion_workflows:
- id: "retrospective" - id: "retrospective"
required: true required: true
agent: "sm" agent: "sm"

View File

@ -58,6 +58,12 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
note: "Implementation varies by game complexity" note: "Implementation varies by game complexity"
level_based_implementation: level_based_implementation:
level_0_1: level_0_1:

View File

@ -37,6 +37,12 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
workflows: workflows:
- id: "create-story" - id: "create-story"
required: true required: true

View File

@ -41,7 +41,13 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
loop_type: "for_each_story" phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
story_loop: "for_each_story"
workflows: workflows:
- id: "create-story" - id: "create-story"
required: true required: true

View File

@ -62,7 +62,13 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
loop_type: "for_each_story" phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
story_loop: "for_each_story"
workflows: workflows:
- id: "create-story" - id: "create-story"
required: true required: true

View File

@ -57,13 +57,21 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
epic_loop: "for_each_epic" epic_loop: "for_each_epic"
epic_workflows: epic_iteration:
setup_workflows:
- id: "tech-spec" - id: "tech-spec"
required: true required: true
agent: "architect" agent: "architect"
command: "tech-spec" command: "tech-spec"
note: "JIT per epic - creates stories for that epic" note: "JIT per epic - creates stories for that epic"
story_loop: "for_each_story_in_epic" story_loop: "for_each_story_in_epic"
story_workflows: story_workflows:
- id: "create-story" - id: "create-story"
@ -75,7 +83,7 @@ phases:
agent: "sm" agent: "sm"
command: "story-context" command: "story-context"
- id: "validate-story-context" - id: "validate-story-context"
recommended: true optional: true
agent: "sm" agent: "sm"
command: "validate-story-context" command: "validate-story-context"
- id: "story-ready" - id: "story-ready"
@ -87,18 +95,15 @@ phases:
agent: "dev" agent: "dev"
command: "dev-story" command: "dev-story"
- id: "review-story" - id: "review-story"
recommended: true optional: true
agent: "dev" agent: "dev"
command: "review-story" command: "review-story"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "story-done" - id: "story-done"
required: true required: true
agent: "dev" agent: "dev"
command: "story-done" command: "story-done"
epic_completion:
completion_workflows:
- id: "retrospective" - id: "retrospective"
recommended: true recommended: true
agent: "sm" agent: "sm"

View File

@ -59,13 +59,21 @@ phases:
- phase: 4 - phase: 4
name: "Implementation" name: "Implementation"
required: true required: true
phase_initialization:
- id: "sprint-planning"
required: true
agent: "sm"
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
epic_loop: "for_each_epic" epic_loop: "for_each_epic"
epic_workflows: epic_iteration:
setup_workflows:
- id: "tech-spec" - id: "tech-spec"
required: true required: true
agent: "architect" agent: "architect"
command: "tech-spec" command: "tech-spec"
note: "JIT per epic - creates stories for that epic" note: "JIT per epic - creates stories for that epic"
story_loop: "for_each_story_in_epic" story_loop: "for_each_story_in_epic"
story_workflows: story_workflows:
- id: "create-story" - id: "create-story"
@ -77,11 +85,11 @@ phases:
agent: "sm" agent: "sm"
command: "story-context" command: "story-context"
- id: "validate-story-context" - id: "validate-story-context"
required: true optional: true
agent: "sm" agent: "sm"
command: "validate-story-context" command: "validate-story-context"
- id: "story-ready" - id: "story-ready"
recommended: true optional: true
agent: "sm" agent: "sm"
command: "story-ready" command: "story-ready"
- id: "dev-story" - id: "dev-story"
@ -89,18 +97,15 @@ phases:
agent: "dev" agent: "dev"
command: "dev-story" command: "dev-story"
- id: "review-story" - id: "review-story"
required: true optional: true
agent: "dev" agent: "dev"
command: "review-story" command: "review-story"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "story-done" - id: "story-done"
required: true required: true
agent: "dev" agent: "dev"
command: "story-done" command: "story-done"
epic_completion:
completion_workflows:
- id: "retrospective" - id: "retrospective"
required: true required: true
agent: "sm" agent: "sm"