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

@@ -1,12 +1,40 @@
# Databank Artifacts Directory
# Databank Artifacts
This directory is fully managed by AI agents as they see fit for storing various artifacts.
This directory contains all databank artifacts in their canonical form. Files in this directory are:
- Managed by AI agents based on communications in `../collab/`
- Organized by domain for efficient access
- Maintained as single source of truth for all context
- Updated only through AI processing of collab communications
## Structure
```
artifacts/
├── personal/ # Personal information and biography
├── agents/ # AI agent guidelines and tools
├── context/ # General context information
├── operations/ # Operational environment information
├── templates/ # Template files for new content
├── scaffolding/ # Template structure for new domains
├── coo/ # Chief Operating Officer domain
├── cto/ # Chief Technology and Product Officer domain
└── README.md # This file
```
## Purpose
- AI-managed documentation ([docs/](./docs/))
- AI-managed code artifacts ([code/](./code/))
- AI-managed configuration ([config/](./config/))
- AI-managed templates ([templates/](./templates/))
Files in this directory represent the authoritative versions of all databank content. They are:
The AI has complete control over this directory and can organize, create, modify, and delete content as needed to support various functions and operations.
- Updated only by AI agents processing `../collab/` communications
- Never edited directly by humans
- Maintained as single source of truth
- Organized for efficient AI access patterns
## Relationship to Other Directories
- **`../collab/`** - Human/AI communication space (input)
- **This directory** - Canonical content storage (storage)
- **`../../../pmo/artifacts/`** - Project management updates (output)
---