method-greenfield.yaml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # BMad Method - Greenfield
  2. # Full product + architecture planning for greenfield projects (10-50+ stories typically)
  3. method_name: "BMad Method"
  4. track: "bmad-method"
  5. field_type: "greenfield"
  6. description: "Complete product and system design methodology for greenfield projects"
  7. phases:
  8. - phase: 1
  9. name: "Analysis (Optional)"
  10. optional: true
  11. note: "User-selected during workflow-init"
  12. workflows:
  13. - id: "brainstorm-project"
  14. exec: "{project-root}/_bmad/core/workflows/brainstorming/workflow.md"
  15. optional: true
  16. agent: "analyst"
  17. command: "/bmad:bmm:workflows:brainstorming"
  18. included_by: "user_choice"
  19. note: "Uses core brainstorming workflow with project context template"
  20. - id: "research"
  21. exec: "{project-root}/_bmad/bmm/workflows/1-analysis/research/workflow.md"
  22. optional: true
  23. agent: "analyst"
  24. command: "/bmad:bmm:workflows:research"
  25. included_by: "user_choice"
  26. note: "Can have multiple research workflows"
  27. - id: "product-brief"
  28. exec: "{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/workflow.md"
  29. optional: true
  30. agent: "analyst"
  31. command: "/bmad:bmm:workflows:create-product-brief"
  32. included_by: "user_choice"
  33. note: "Recommended for greenfield Method projects"
  34. - phase: 2
  35. name: "Planning"
  36. required: true
  37. workflows:
  38. - id: "prd"
  39. exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/prd/workflow.md"
  40. required: true
  41. agent: "pm"
  42. command: "/bmad:bmm:workflows:create-prd"
  43. output: "Product Requirements Document with FRs and NFRs"
  44. - id: "create-ux-design"
  45. conditional: "if_has_ui"
  46. exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md"
  47. agent: "ux-designer"
  48. command: "/bmad:bmm:workflows:create-ux-design"
  49. note: "Determined after PRD - user/agent decides if needed"
  50. - phase: 3
  51. name: "Solutioning"
  52. required: true
  53. workflows:
  54. - id: "create-architecture"
  55. required: true
  56. exec: "{project-root}/_bmad/bmm/workflows/3-solutioning/create-architecture/workflow.md"
  57. agent: "architect"
  58. command: "/bmad:bmm:workflows:create-architecture"
  59. output: "System architecture document"
  60. note: "Complete system design for greenfield projects"
  61. - id: "create-epics-and-stories"
  62. required: true
  63. exec: "{project-root}/_bmad/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md"
  64. agent: "pm"
  65. command: "/bmad:bmm:workflows:create-epics-and-stories"
  66. note: "Required: Break down PRD into implementable epics and stories with full context (PRD + UX + Architecture)"
  67. - id: "test-design"
  68. optional: true
  69. workflow: "{project-root}/_bmad/bmm/workflows/testarch/test-design/workflow.yaml"
  70. agent: "tea"
  71. command: "/bmad:bmm:workflows:test-design"
  72. output: "System-level testability review"
  73. note: "Testability assessment before gate check - auto-detects system-level mode"
  74. - id: "implementation-readiness"
  75. required: true
  76. exec: "{project-root}/_bmad/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md"
  77. agent: "architect"
  78. command: "/bmad:bmm:workflows:implementation-readiness"
  79. note: "Validates PRD + Architecture + Epics + UX (optional)"
  80. - phase: 4
  81. name: "Implementation"
  82. required: true
  83. workflows:
  84. - id: "sprint-planning"
  85. required: true
  86. workflow: "{project-root}/_bmad/bmm/workflows/4-implementation/sprint-planning/workflow.yaml"
  87. agent: "sm"
  88. command: "/bmad:bmm:workflows:sprint-planning"
  89. note: "Creates sprint plan - subsequent work tracked there"