Files
BMAD-METHOD/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-3.yaml

141 lines
3.9 KiB
YAML
Raw Normal View History

2025-10-17 00:19:45 -05:00
# Brownfield Level 3 - Complex Integration with Existing System
# Major feature addition requiring architectural integration
project_type: "software"
level: 3
field_type: "brownfield"
description: "Complex integration with existing system architecture"
phases:
- phase: 0
name: "Documentation"
conditional: "if_undocumented"
workflows:
- id: "document-project"
required: true
agent: "analyst"
command: "document-project"
output: "Comprehensive codebase documentation"
- phase: 1
name: "Analysis"
recommended: true
workflows:
- id: "brainstorm-project"
optional: true
agent: "analyst"
command: "brainstorm-project"
- id: "research"
recommended: true
agent: "analyst"
command: "research"
note: "Research existing architecture patterns"
- id: "product-brief"
recommended: true
agent: "analyst"
command: "product-brief"
- phase: 2
name: "Planning"
required: true
workflows:
- id: "prd"
required: true
agent: "pm"
command: "prd"
output: "Requirements with integration points"
2025-10-23 23:20:48 -05:00
- id: "create-design"
2025-10-17 00:19:45 -05:00
conditional: "if_has_ui"
2025-10-23 23:20:48 -05:00
agent: "ux-designer"
command: "create-design"
2025-10-17 00:19:45 -05:00
note: "Must align with existing UI patterns"
- phase: 3
name: "Solutioning"
required: true
workflows:
- id: "architecture-review"
required: true
agent: "architect"
command: "architecture-review"
note: "Review existing architecture first"
- id: "integration-planning"
required: true
agent: "architect"
command: "integration-planning"
output: "Integration strategy document"
2025-10-19 23:28:38 -05:00
- id: "create-architecture"
2025-10-17 00:19:45 -05:00
required: true
agent: "architect"
2025-10-19 23:28:38 -05:00
command: "create-architecture"
2025-10-17 00:19:45 -05:00
note: "Extension of existing architecture"
- id: "solutioning-gate-check"
2025-10-17 00:19:45 -05:00
required: true
agent: "architect"
command: "solutioning-gate-check"
2025-10-17 00:19:45 -05:00
- phase: 4
name: "Implementation"
required: true
2025-10-21 20:37:59 -05:00
phase_initialization:
- id: "sprint-planning"
2025-10-17 00:19:45 -05:00
required: true
agent: "sm"
2025-10-21 20:37:59 -05:00
command: "sprint-planning"
note: "Initialize sprint tracking - run once when entering Phase 4"
epic_loop: "for_each_epic"
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"
required: true
agent: "sm"
command: "create-story"
- id: "story-context"
required: true
agent: "sm"
command: "story-context"
note: "Heavy emphasis on existing code context"
- id: "validate-story-context"
optional: true
agent: "sm"
command: "validate-story-context"
note: "Ensure no breaking changes"
- id: "story-ready"
optional: true
agent: "sm"
command: "story-ready"
- id: "dev-story"
required: true
agent: "dev"
command: "dev-story"
- id: "review-story"
optional: true
agent: "dev"
command: "review-story"
note: "Check integration points"
- id: "story-done"
required: true
agent: "dev"
command: "story-done"
completion_workflows:
- id: "integration-test"
required: true
agent: "dev"
command: "integration-test"
- id: "retrospective"
required: true
agent: "sm"
command: "retrospective"
2025-10-17 00:19:45 -05:00
story_naming: "story-<epic>.<story>.md"
brownfield_note: "All changes must integrate seamlessly with existing system"