workflow.yaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. # Workflow Status - Master Router and Status Tracker
  2. name: workflow-status
  3. description: 'Lightweight status checker - answers "what should I do now?" for any agent. Reads YAML status file for workflow tracking. Use workflow-init for new projects.'
  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. planning_artifacts: "{config_source}:planning_artifacts"
  9. implementation_artifacts: "{config_source}:implementation_artifacts"
  10. user_name: "{config_source}:user_name"
  11. communication_language: "{config_source}:communication_language"
  12. document_output_language: "{config_source}:document_output_language"
  13. user_skill_level: "{config_source}:user_skill_level"
  14. date: system-generated
  15. # Workflow components
  16. installed_path: "{project-root}/_bmad/bmm/workflows/workflow-status"
  17. instructions: "{installed_path}/instructions.md"
  18. # Template for status file creation (used by workflow-init)
  19. template: "{installed_path}/workflow-status-template.yaml"
  20. # Path definitions for project types
  21. path_files: "{installed_path}/paths/"
  22. # Output configuration - reads existing status
  23. default_output_file: "{planning_artifacts}/bmm-workflow-status.yaml"
  24. standalone: true