feat: add operations knowledge transfer document and update structure docs

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-10-24 09:23:49 -05:00
parent 4ddb4631a5
commit c66d861224
4 changed files with 298 additions and 5 deletions

View File

@@ -43,6 +43,38 @@ AI-Home-Directory/ # Mount point in containers
│ ├── context/ # General context information
│ │ ├── AUDIT1.md
│ │ └── PROJECT-MGMT-TOOLS.md
│ ├── context/ # General context information
│ │ ├── AUDIT1.md
│ │ └── PROJECT-MGMT-TOOLS.md
│ ├── operations/ # Operational environment information
│ │ └── OPERATIONS-KNOWLEDGE-TRANSFER.md
│ └── templates/ # Template files for projects
│ └── OPS-ENVIRONMENT.md
├── pmo/ # ✏️ Read-write PMO (mounted read-write)
│ ├── dashboard/ # PMO dashboard views
│ ├── projects/ # Project registry and links
│ ├── reports/ # Status reports
│ ├── resources/ # Resource management
│ └── config/ # PMO configuration
├── collab/ # Project-specific collaboration (not mounted)
│ ├── rules/ # Project-specific rules
│ ├── env/ # Project-specific environment configs
│ ├── proposals/ # Project-specific proposals
│ └── temporary/ # Temporary collaboration files
├── databank/ # 🔒 Readonly context (mounted readonly)
│ ├── personal/ # Personal information
│ │ ├── AboutMe.md
│ │ ├── StartHere.md
│ │ └── TSYS.md
│ ├── agents/ # AI agent guidelines
│ │ ├── AgentRules.md
│ │ ├── AGENTS.md
│ │ └── AI-TOOLS.md
│ ├── context/ # General context information
│ │ ├── AUDIT1.md
│ │ └── PROJECT-MGMT-TOOLS.md
│ ├── operations/ # Operational environment information
│ │ └── OPERATIONS-KNOWLEDGE-TRANSFER.md
│ └── templates/ # Template files for projects
│ └── OPS-ENVIRONMENT.md
├── pmo/ # ✏️ Read-write PMO (mounted read-write)
@@ -51,10 +83,6 @@ AI-Home-Directory/ # Mount point in containers
│ ├── reports/ # Status reports
│ ├── resources/ # Resource management
│ └── config/ # PMO configuration
├── collab/ # Collaboration directory (readonly)
│ └── proposals/ # Proposals and planning
│ ├── PMO/
│ └── ...
└── README.md # This file
```
@@ -74,7 +102,7 @@ docker run \
### Permission Boundaries
- **databank/**: 🔒 Read-only access (ro) - Consistent context for all tools
- **pmo/**: ✏️ Read-write access (rw) - Project management updates
- **collab/**: 🔒 Read-only access (ro) - Collaboration guidelines
- **collab/**: 🚫 Not mounted - Project-specific collaboration
---
@@ -107,6 +135,11 @@ The databank directory contains readonly information that provides consistent co
|------|---------|
| [**OPS-ENVIRONMENT.md**](./databank/templates/OPS-ENVIRONMENT.md) | Operational environment template |
### Operations (`databank/operations/`)
| File | Purpose |
|------|---------|
| [**OPERATIONS-KNOWLEDGE-TRANSFER.md**](./databank/operations/OPERATIONS-KNOWLEDGE-TRANSFER.md) | Knowledge transfer interview for operational roles |
*Note: All databank files are readonly for AI agents*
---