2025-10-12 00:49:12 -05:00
# Document Project Workflow Configuration
name : "document-project"
version : "1.2.0"
description : "Analyzes and documents brownfield projects by scanning codebase, architecture, and patterns to create comprehensive reference documentation for AI-assisted development"
author : "BMad"
# Critical variables
config_source : "{project-root}/bmad/bmm/config.yaml"
output_folder : "{config_source}:output_folder"
user_name : "{config_source}:user_name"
communication_language : "{config_source}:communication_language"
2025-10-17 19:46:25 -05:00
document_output_language : "{config_source}:document_output_language"
user_skill_level : "{config_source}:user_skill_level"
2025-10-12 00:49:12 -05:00
date : system-generated
# Module path and component files
installed_path : "{project-root}/bmad/bmm/workflows/document-project"
template : false # This is an action workflow with multiple output files
instructions : "{installed_path}/instructions.md"
validation : "{installed_path}/checklist.md"
# Required data files - CRITICAL for project type detection and documentation requirements
2025-10-19 15:28:33 -05:00
project_types_csv : "{project-root}/bmad/bmm/workflows/3-solutioning/architecture/project-types/project-types.csv"
2025-10-12 00:49:12 -05:00
architecture_registry_csv : "{project-root}/bmad/bmm/workflows/3-solutioning/templates/registry.csv"
documentation_requirements_csv : "{installed_path}/documentation-requirements.csv"
# Architecture template references
architecture_templates_path : "{project-root}/bmad/bmm/workflows/3-solutioning/templates"
# Optional input - project root to scan (defaults to current working directory)
recommended_inputs :
- project_root : "User will specify or use current directory"
- existing_readme : "README.md at project root (if exists)"
- project_config : "package.json, go.mod, requirements.txt, etc. (auto-detected)"
# Output configuration - Multiple files generated in output folder
2025-10-16 08:11:22 -05:00
# Primary output: {output_folder}/index.md
# Additional files generated by sub-workflows based on project structure