# PMO Scaffolding Templates This directory contains templates for quickly standing up new PMO components. ## Purpose The scaffolding directory provides templates for quickly creating new PMO components when needed. Each template represents a complete, functional PMO domain that can be quickly customized for specific needs. ## Structure ``` scaffolding/ ├── domain-template/ # Template for new PMO domains │ ├── dashboard/ # Dashboard components and views │ ├── projects/ # Project management components │ ├── reports/ # Reporting components │ ├── resources/ # Resource management components │ ├── config/ # Configuration components │ ├── docs/ # Documentation components │ └── README.md # Domain overview and purpose └── README.md # This file ``` ## Usage To create a new PMO domain: 1. **Copy Template**: `cp -r domain-template/ ../NEW-DOMAIN-NAME/` 2. **Customize README**: Update `README.md` with domain-specific information 3. **Populate Components**: Customize dashboard, projects, reports, resources, config, and docs 4. **Configure**: Set up domain-specific configuration in `config/` 5. **Document**: Create domain-specific documentation in `docs/` ## Templates Each template provides a starting point for new domains with: - **Standard directory structure** following PMO conventions - **Placeholder content** for customization - **Consistent formatting** and organization - **Cross-component linking** patterns - **Domain-specific documentation** templates ## Components ### Dashboard Templates for creating domain-specific dashboards with standard PMO metrics and KPIs. ### Projects Project management templates with standard tracking fields and workflow integration. ### Reports Reporting templates with standard formats and content structures. ### Resources Resource management templates with standard allocation and tracking mechanisms. ### Config Configuration templates with standard settings and customization options. ### Docs Documentation templates with standard formats and content guidelines. ---