updates to the paths

This commit is contained in:
Brian Madison 2025-10-21 20:37:59 -05:00 committed by Dave Dittrich
parent 572ab2ec64
commit 4072c32eca
12 changed files with 264 additions and 203 deletions

View File

@ -3,12 +3,9 @@
```xml
<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>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>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. User skill level ({user_skill_level}) affects conversation style ONLY, not document content.</critical>
<critical>DOCUMENT OUTPUT: Concise, technical, actionable story specifications. Use tables/lists for acceptance criteria and tasks.</critical>
<workflow>

View File

@ -44,6 +44,12 @@ phases:
- phase: 4
name: "Implementation"
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:
- id: "create-story"
required: true

View File

@ -48,6 +48,13 @@ phases:
- phase: 4
name: "Implementation"
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:
- id: "create-story"
required: true

View File

@ -62,6 +62,13 @@ phases:
- phase: 4
name: "Implementation"
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:
- id: "create-story"
required: true
@ -81,7 +88,7 @@ phases:
agent: "dev"
command: "dev-story"
- id: "review-story"
recommended: true
optional: true
agent: "dev"
command: "review-story"
- id: "story-done"

View File

@ -77,13 +77,21 @@ phases:
- phase: 4
name: "Implementation"
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_workflows:
epic_iteration:
setup_workflows:
- id: "tech-spec"
required: true
agent: "architect"
command: "tech-spec"
note: "Must respect existing patterns"
story_loop: "for_each_story_in_epic"
story_workflows:
- id: "create-story"
@ -96,12 +104,12 @@ phases:
command: "story-context"
note: "Heavy emphasis on existing code context"
- id: "validate-story-context"
required: true
optional: true
agent: "sm"
command: "validate-story-context"
note: "Ensure no breaking changes"
- id: "story-ready"
recommended: true
optional: true
agent: "sm"
command: "story-ready"
- id: "dev-story"
@ -109,19 +117,16 @@ phases:
agent: "dev"
command: "dev-story"
- id: "review-story"
required: true
optional: true
agent: "dev"
command: "review-story"
note: "Check integration points"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "story-done"
required: true
agent: "dev"
command: "story-done"
epic_completion:
completion_workflows:
- id: "integration-test"
required: true
agent: "dev"

View File

@ -71,13 +71,21 @@ phases:
- phase: 4
name: "Implementation"
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_workflows:
epic_iteration:
setup_workflows:
- id: "tech-spec"
required: true
agent: "sm"
command: "tech-spec"
note: "JIT per epic - creates stories considering existing code"
story_loop: "for_each_story_in_epic"
story_workflows:
- id: "create-story"
@ -90,11 +98,11 @@ phases:
command: "story-context"
note: "Extensive existing code context required"
- id: "validate-story-context"
required: true
optional: true
agent: "sm"
command: "validate-story-context"
- id: "story-ready"
required: true
optional: true
agent: "sm"
command: "story-ready"
- id: "dev-story"
@ -102,16 +110,12 @@ phases:
agent: "dev"
command: "dev-story"
- id: "review-story"
required: true
optional: true
agent: "dev"
command: "review-story"
note: "Rigorous review for enterprise changes"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "integration-test"
required: true
optional: true
agent: "dev"
command: "integration-test"
note: "Test integration with existing systems"
@ -119,7 +123,8 @@ phases:
required: true
agent: "dev"
command: "story-done"
epic_completion:
completion_workflows:
- id: "retrospective"
required: true
agent: "sm"

View File

@ -58,6 +58,12 @@ phases:
- phase: 4
name: "Implementation"
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"
level_based_implementation:
level_0_1:

View File

@ -37,6 +37,12 @@ phases:
- phase: 4
name: "Implementation"
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:
- id: "create-story"
required: true

View File

@ -41,7 +41,13 @@ phases:
- phase: 4
name: "Implementation"
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:
- id: "create-story"
required: true

View File

@ -62,7 +62,13 @@ phases:
- phase: 4
name: "Implementation"
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:
- id: "create-story"
required: true

View File

@ -57,13 +57,21 @@ phases:
- phase: 4
name: "Implementation"
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_workflows:
epic_iteration:
setup_workflows:
- id: "tech-spec"
required: true
agent: "architect"
command: "tech-spec"
note: "JIT per epic - creates stories for that epic"
story_loop: "for_each_story_in_epic"
story_workflows:
- id: "create-story"
@ -75,7 +83,7 @@ phases:
agent: "sm"
command: "story-context"
- id: "validate-story-context"
recommended: true
optional: true
agent: "sm"
command: "validate-story-context"
- id: "story-ready"
@ -87,18 +95,15 @@ phases:
agent: "dev"
command: "dev-story"
- id: "review-story"
recommended: true
optional: true
agent: "dev"
command: "review-story"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "story-done"
required: true
agent: "dev"
command: "story-done"
epic_completion:
completion_workflows:
- id: "retrospective"
recommended: true
agent: "sm"

View File

@ -59,13 +59,21 @@ phases:
- phase: 4
name: "Implementation"
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_workflows:
epic_iteration:
setup_workflows:
- id: "tech-spec"
required: true
agent: "architect"
command: "tech-spec"
note: "JIT per epic - creates stories for that epic"
story_loop: "for_each_story_in_epic"
story_workflows:
- id: "create-story"
@ -77,11 +85,11 @@ phases:
agent: "sm"
command: "story-context"
- id: "validate-story-context"
required: true
optional: true
agent: "sm"
command: "validate-story-context"
- id: "story-ready"
recommended: true
optional: true
agent: "sm"
command: "story-ready"
- id: "dev-story"
@ -89,18 +97,15 @@ phases:
agent: "dev"
command: "dev-story"
- id: "review-story"
required: true
optional: true
agent: "dev"
command: "review-story"
- id: "correct-course"
conditional: "if_review_fails"
agent: "dev"
command: "correct-course"
- id: "story-done"
required: true
agent: "dev"
command: "story-done"
epic_completion:
completion_workflows:
- id: "retrospective"
required: true
agent: "sm"