workflow.yaml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # Workflow Init - Initialize BMM Project
  2. name: workflow-init
  3. description: "Initialize a new BMM project by determining level, type, and creating workflow path"
  4. author: "BMad"
  5. # Critical variables from config
  6. config_source: "{project-root}/_bmad/core/config.yaml"
  7. output_folder: "{config_source}:output_folder"
  8. user_name: "{config_source}:user_name"
  9. communication_language: "{config_source}:communication_language"
  10. document_output_language: "{config_source}:document_output_language"
  11. date: system-generated
  12. implementation_artifacts: "{output_folder}/implementation-artifacts"
  13. planning_artifacts: "{output_folder}/planning-artifacts"
  14. # Workflow components
  15. installed_path: "{project-root}/_bmad/bmm/workflows/workflow-status/init"
  16. instructions: "{installed_path}/instructions.md"
  17. # Inputs
  18. variables:
  19. level: "to-be-determined"
  20. type: "to-be-determined"
  21. workflow_path: "{planning_artifacts}/workflow-path.yaml"
  22. # Output file
  23. default_output_file: "{planning_artifacts}/workflow-path.yaml"
  24. # Standalone workflow
  25. standalone: true