| 123456789101112131415161718192021222324252627282930 |
- # Workflow Init - Initialize BMM Project
- name: workflow-init
- description: "Initialize a new BMM project by determining level, type, and creating workflow path"
- author: "BMad"
- # Critical variables from config
- config_source: "{project-root}/_bmad/core/config.yaml"
- output_folder: "{config_source}:output_folder"
- user_name: "{config_source}:user_name"
- communication_language: "{config_source}:communication_language"
- document_output_language: "{config_source}:document_output_language"
- date: system-generated
- implementation_artifacts: "{output_folder}/implementation-artifacts"
- planning_artifacts: "{output_folder}/planning-artifacts"
- # Workflow components
- installed_path: "{project-root}/_bmad/bmm/workflows/workflow-status/init"
- instructions: "{installed_path}/instructions.md"
- # Inputs
- variables:
- level: "to-be-determined"
- type: "to-be-determined"
- workflow_path: "{planning_artifacts}/workflow-path.yaml"
- # Output file
- default_output_file: "{planning_artifacts}/workflow-path.yaml"
- # Standalone workflow
- standalone: true
|