bmm-workflow-status.yaml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # Workflow Status Template
  2. # This tracks progress through BMM methodology Analysis, Planning, and Solutioning phases.
  3. # Implementation phase is tracked separately in sprint-status.yaml
  4. # STATUS DEFINITIONS:
  5. # ==================
  6. # Initial Status (before completion):
  7. # - required: Must be completed to progress
  8. # - optional: Can be completed but not required
  9. # - recommended: Strongly suggested but not required
  10. # - conditional: Required only if certain conditions met (e.g., if_has_ui)
  11. #
  12. # Completion Status:
  13. # - {file-path}: File created/found (e.g., "docs/product-brief.md")
  14. # - skipped: Optional/conditional workflow that was skipped
  15. generated: "2026-01-07"
  16. project: "澳盈残保金管理系统"
  17. project_type: "brownfield"
  18. selected_track: "method"
  19. field_type: "brownfield"
  20. workflow_path: "{project-root}/_bmad/bmm/workflows/workflow-status/paths/method-brownfield.yaml"
  21. workflow_status:
  22. - phase: 0
  23. name: "Documentation"
  24. conditional: "if_undocumented"
  25. note: "Prerequisite for brownfield without docs"
  26. workflows:
  27. - id: "document-project"
  28. status: "required"
  29. workflow: "{project-root}/_bmad/bmm/workflows/document-project/workflow.yaml"
  30. agent: "analyst"
  31. command: "/bmad:bmm:workflows:document-project"
  32. output: "Comprehensive project documentation"
  33. purpose: "Understand existing codebase before planning"
  34. - phase: 1
  35. name: "Analysis (Optional)"
  36. optional: true
  37. note: "User-selected during workflow-init"
  38. workflows:
  39. - id: "brainstorm-project"
  40. status: "skipped"
  41. exec: "{project-root}/_bmad/core/workflows/brainstorming/workflow.md"
  42. optional: true
  43. agent: "analyst"
  44. command: "/bmad:bmm:workflows:brainstorming"
  45. included_by: "user_choice"
  46. note: "Uses core brainstorming workflow with project context template"
  47. - id: "research"
  48. status: "skipped"
  49. exec: "{project-root}/_bmad/bmm/workflows/1-analysis/research/workflow.md"
  50. optional: true
  51. agent: "analyst"
  52. command: "/bmad:bmm:workflows:research"
  53. included_by: "user_choice"
  54. note: "Can have multiple research workflows"
  55. - id: "product-brief"
  56. status: "skipped"
  57. exec: "{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md"
  58. optional: true
  59. agent: "analyst"
  60. command: "/bmad:bmm:workflows:create-product-brief"
  61. included_by: "user_choice"
  62. note: "Recommended for greenfield Method projects"
  63. - phase: 2
  64. name: "Planning"
  65. required: true
  66. workflows:
  67. - id: "prd"
  68. status: "required"
  69. exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/prd/workflow.md"
  70. required: true
  71. agent: "pm"
  72. command: "/bmad:bmm:workflows:create-prd"
  73. output: "Product Requirements Document with FRs and NFRs"
  74. - id: "create-ux-design"
  75. status: "conditional"
  76. conditional: "if_has_ui"
  77. exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md"
  78. agent: "ux-designer"
  79. command: "/bmad:bmm:workflows:create-ux-design"
  80. note: "Determined after PRD - user/agent decides if needed"
  81. - phase: 3
  82. name: "Solutioning"
  83. required: true
  84. workflows:
  85. - id: "create-architecture"
  86. status: "required"
  87. required: true
  88. exec: "{project-root}/_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md"
  89. agent: "architect"
  90. command: "/bmad:bmm:workflows:create-architecture"
  91. output: "System architecture document"
  92. note: "Complete system design for greenfield projects"
  93. - id: "create-epics-and-stories"
  94. status: "required"
  95. required: true
  96. exec: "{project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md"
  97. agent: "pm"
  98. command: "/bmad:bmm:workflows:create-epics-and-stories"
  99. note: "Required: Break down PRD into implementable epics and stories with full context (PRD + UX + Architecture)"
  100. - id: "test-design"
  101. status: "optional"
  102. optional: true
  103. workflow: "{project-root}/_bmad/bmm/workflows/testarch/test-design/workflow.yaml"
  104. agent: "tea"
  105. command: "/bmad:bmm:workflows:test-design"
  106. output: "System-level testability review"
  107. note: "Testability assessment before gate check - auto-detects system-level mode"
  108. - id: "implementation-readiness"
  109. status: "required"
  110. required: true
  111. exec: "{project-root}/_bmad/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md"
  112. agent: "architect"
  113. command: "/bmad:bmm:workflows:implementation-readiness"
  114. note: "Validates PRD + Architecture + Epics + UX (optional)"
  115. - phase: 4
  116. name: "Implementation"
  117. required: true
  118. workflows:
  119. - id: "sprint-planning"
  120. status: "required"
  121. required: true
  122. workflow: "{project-root}/_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml"
  123. agent: "sm"
  124. command: "/bmad:bmm:workflows:sprint-planning"
  125. note: "Creates sprint plan - subsequent work tracked there"