2
0

workflow.yaml 1.2 KB

12345678910111213141516171819202122232425262728
  1. # Document Project Workflow Configuration
  2. name: "document-project"
  3. version: "1.2.0"
  4. description: "Analyzes and documents brownfield projects by scanning codebase, architecture, and patterns to create comprehensive reference documentation for AI-assisted development"
  5. author: "BMad"
  6. # Critical variables
  7. config_source: "{project-root}/_bmad/bmm/config.yaml"
  8. output_folder: "{config_source}:project_knowledge"
  9. user_name: "{config_source}:user_name"
  10. communication_language: "{config_source}:communication_language"
  11. document_output_language: "{config_source}:document_output_language"
  12. user_skill_level: "{config_source}:user_skill_level"
  13. date: system-generated
  14. # Module path and component files
  15. installed_path: "{project-root}/_bmad/bmm/workflows/document-project"
  16. instructions: "{installed_path}/instructions.md"
  17. validation: "{installed_path}/checklist.md"
  18. # Required data files - CRITICAL for project type detection and documentation requirements
  19. documentation_requirements_csv: "{installed_path}/documentation-requirements.csv"
  20. # Output configuration - Multiple files generated in output folder
  21. # Primary output: {output_folder}/project-documentation/
  22. # Additional files generated by sub-workflows based on project structure
  23. standalone: true