fix: correct databank architecture and implement proper CTO/COO structure\n\n- Remove incorrectly placed human/llm directories from databank root\n- Restructure databank with everything under databank/artifacts/ as requested\n- Implement proper CTO/COO structure under pmo/artifacts/ with complete PMO components\n- Create comprehensive collab/ directory structure for human/AI communication\n- Remove Joplin processing scripts and references as requested\n- Create proper scaffolding directories for quick domain standup\n- Update README documentation to reflect corrected architecture\n- Ensure only collab/ directories are editable by humans\n- AI agents manage databank/artifacts/ based on collab/ communications\n- Create structured intake templates and collaboration workflows\n- Maintain clear separation between readonly databank and read-write PMO\n- Implement proper single source of truth with AI-managed artifacts

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-10-24 12:38:23 -05:00
parent 919349aad2
commit a811335196
32 changed files with 941 additions and 1037 deletions

View File

@@ -0,0 +1,53 @@
# Scaffolding Templates
This directory contains templates for quickly standing up new domains in the databank.
## Structure
```
scaffolding/
├── domain-template/ # Template for new domains
│ ├── README.md # Domain overview and purpose
│ ├── context/ # Context information for this domain
│ │ └── overview.md # Overview of domain context
│ ├── operations/ # Operational information
│ │ └── procedures.md # Standard operating procedures
│ ├── personnel/ # Personnel and roles
│ │ └── roles.md # Role definitions and responsibilities
│ ├── tools/ # Tools and technology
│ │ └── stack.md # Technology stack and tools
│ └── artifacts/ # Domain-specific artifacts
│ └── samples/ # Sample artifacts for reference
└── README.md # This file
```
## Purpose
The scaffolding directory provides templates for quickly creating new domains when needed. To create a new domain:
1. Copy the `domain-template/` directory to a new domain name
2. Customize the README.md with domain-specific information
3. Fill in context, operations, personnel, and tools information
4. Add domain-specific artifacts as needed
## Usage
To create a new domain called "marketing":
```bash
cp -r domain-template/ ../marketing/
cd ../marketing/
# Edit README.md to describe marketing domain
# Customize other files as appropriate
```
## Templates
Each template provides a starting point for new domains with:
- Standard directory structure
- Placeholder content for customization
- Consistent formatting and organization
- Cross-domain linking patterns
---