fix: correct databank architecture to match specification\n\n- Restructure databank/artifacts/ with only human/ and llm/ top-level directories\n- Remove all incorrectly placed domain directories from databank/artifacts/\n- Create proper LLMDatabankTOC.json for chat agent '@' function\n- Implement correct human/llm dual-format structure as specified\n- Remove scaffolding from databank as requested\n- Create proper PMO scaffolding in pmo/artifacts/scaffolding/ with domain templates\n- Update README documentation to reflect corrected architecture\n- Maintain clear separation: humans edit collab/, AI manages artifacts/\n- Ensure LLMDatabankTOC enables efficient navigation for chat agents\n- Correct repository structure diagram to show proper databank/artifacts/ structure\n- Remove all references to incorrectly placed directories\n- Maintain only collab/ as editable directory for humans

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-10-24 12:47:44 -05:00
parent a811335196
commit e3cb3f471e
40 changed files with 369 additions and 1686 deletions

View File

@@ -1,4 +1,4 @@
# PMO Domain Template
# Domain Template
This is a template for creating new PMO domains.
@@ -6,26 +6,34 @@ This is a template for creating new PMO domains.
This template provides the standard structure for all PMO domains.
## Structure
## Components
```
domain-template/
├── README.md # Domain overview and purpose
├── dashboard/ # Dashboard components and views
├── projects/ # Project management components
├── reports/ # Reporting components
├── resources/ # Resource management components
├── config/ # Configuration components
└── docs/ # Documentation components
```
### Dashboard
Dashboard components and views for this domain.
### Projects
Project management components for this domain.
### Reports
Reporting components for this domain.
### Resources
Resource management components for this domain.
### Config
Configuration components for this domain.
### Docs
Documentation components for this domain.
## Customization
To customize this template for a specific PMO domain:
To customize this template for a specific domain:
1. Rename the directory to the domain name
2. Update README.md with domain-specific information
3. Customize dashboard, projects, reports, resources, config, and docs
4. Add domain-specific components as needed
1. **Rename Directory**: Change directory name to domain name
2. **Update README**: Customize this file with domain-specific information
3. **Customize Components**: Modify dashboard, projects, reports, resources, config, and docs
4. **Configure**: Set up domain-specific configuration
5. **Document**: Create domain-specific documentation
---