feat: add databank collab and artifacts structure with updated workflows\n\n- Create databank/collab directory for human/AI interaction\n- Create databank/artifacts directory with subdirs (docs, code, config, templates)\n- Update AGENTS.md to clarify collab/ for human/AI interaction and artifacts/ fully managed by AI\n- Replace old output/ references with new artifacts/ structure in AGENTS.md\n- Update main README.md with new databank structure and clickable links\n- Add documentation for both new databank directories\n- Update AGENTS.md version tracking to v5.0.0 reflecting the new structure\n- Maintain consistency across all references to AI-managed vs human-managed spaces

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-10-24 09:35:07 -05:00
parent d17e810a94
commit 40b89c8e59
4 changed files with 63 additions and 3 deletions

View File

@@ -75,8 +75,14 @@ AI-Home-Directory/ # Mount point in containers
│ │ └── PROJECT-MGMT-TOOLS.md
│ ├── operations/ # Operational environment information
│ │ └── OPERATIONS-KNOWLEDGE-TRANSFER.md
── templates/ # Template files for projects
└── OPS-ENVIRONMENT.md
── templates/ # Template files for projects
└── OPS-ENVIRONMENT.md
│ ├── collab/ # Human/AI interaction space
│ └── artifacts/ # AI-managed content and resources
│ ├── docs/ # AI-managed documentation
│ ├── code/ # AI-managed code artifacts
│ ├── config/ # AI-managed configuration
│ └── templates/ # AI-managed templates
├── pmo/ # ✏️ Read-write PMO (mounted read-write)
│ ├── artifacts/ # PMO components and data
│ │ ├── dashboard/ # PMO dashboard views
@@ -143,7 +149,25 @@ The databank directory contains readonly information that provides consistent co
|------|---------|
| [**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*
### Templates (`databank/templates/`)
| File | Purpose |
|------|---------|
| [**OPS-ENVIRONMENT.md**](./databank/templates/OPS-ENVIRONMENT.md) | Operational environment template |
### Collaboration (`databank/collab/`)
| Directory | Purpose |
|-----------|---------|
| [**databank/collab/**](./databank/collab/) | Space for human/AI interaction |
### Artifacts (`databank/artifacts/`)
| Directory | Purpose |
|-----------|---------|
| [**databank/artifacts/docs/**](./databank/artifacts/docs/) | AI-managed documentation |
| [**databank/artifacts/code/**](./databank/artifacts/code/) | AI-managed code artifacts |
| [**databank/artifacts/config/**](./databank/artifacts/config/) | AI-managed configuration |
| [**databank/artifacts/templates/**](./databank/artifacts/templates/) | AI-managed templates |
*Note: All databank files are readonly for AI agents except in collab/ and artifacts/ directories*
---