workflow.yaml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. # Workflow Init - Initial Project Setup
  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/bmm/config.yaml"
  7. output_folder: "{config_source}:output_folder"
  8. implementation_artifacts: "{config_source}:implementation_artifacts"
  9. planning_artifacts: "{config_source}:planning_artifacts"
  10. user_name: "{config_source}:user_name"
  11. project_name: "{config_source}:project_name"
  12. communication_language: "{config_source}:communication_language"
  13. document_output_language: "{config_source}:document_output_language"
  14. user_skill_level: "{config_source}:user_skill_level"
  15. date: system-generated
  16. # Workflow components
  17. installed_path: "{project-root}/_bmad/bmm/workflows/workflow-status/init"
  18. instructions: "{installed_path}/instructions.md"
  19. template: "{project-root}/_bmad/bmm/workflows/workflow-status/workflow-status-template.yaml"
  20. # Path data files
  21. path_files: "{project-root}/_bmad/bmm/workflows/workflow-status/paths/"
  22. # Output configuration
  23. default_output_file: "{planning_artifacts}/bmm-workflow-status.yaml"
  24. standalone: true