Add missing documentation references to README

Added sections:
- Architecture & Design (existing docs reorganized)
- Implementation & Operations (PRODUCTION_PIPELINE, ENGINEERING_GUIDE)
- Context & Memory (added MEMORY_LAYER.md)
- Agent Documentation (agents/README.md, tier0-guide)
- External References (Vault, Bun, DragonflyDB docs)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
profit 2026-01-24 19:00:08 -05:00
parent 88926d4930
commit c6554a8b3d

View File

@ -282,14 +282,44 @@ agent-governance/
## Documentation
### Architecture & Design
| Document | Description |
|----------|-------------|
| [ARCHITECTURE.md](docs/ARCHITECTURE.md) | Full system design |
| [MULTI_AGENT_PIPELINE_ARCHITECTURE.md](docs/MULTI_AGENT_PIPELINE_ARCHITECTURE.md) | Pipeline flow, Vault tokens, agent lifecycle |
| [PHASE_DEPENDENCY_ANALYSIS.md](docs/PHASE_DEPENDENCY_ANALYSIS.md) | Phase dependencies and order |
### Implementation & Operations
| Document | Description |
|----------|-------------|
| [PRODUCTION_PIPELINE.md](docs/PRODUCTION_PIPELINE.md) | Implementation plan and production workflows |
| [ENGINEERING_GUIDE.md](docs/ENGINEERING_GUIDE.md) | Runtime governance spec and quick reference |
| [CREDENTIALS_SETUP.md](docs/CREDENTIALS_SETUP.md) | Vault and DragonflyDB setup |
### Context & Memory
| Document | Description |
|----------|-------------|
| [CONTEXT_MANAGEMENT.md](docs/CONTEXT_MANAGEMENT.md) | Checkpoints, STATUS, Memory |
| [STATUS_PROTOCOL.md](docs/STATUS_PROTOCOL.md) | Directory status protocol |
| [CREDENTIALS_SETUP.md](docs/CREDENTIALS_SETUP.md) | Vault and DragonflyDB setup |
| [MEMORY_LAYER.md](docs/MEMORY_LAYER.md) | External memory layer details |
### Agent Documentation
| Document | Description |
|----------|-------------|
| [agents/README.md](agents/README.md) | Agent foundation and tier system |
| [tier0-guide.md](docs/tier0-guide.md) | Tier 0 agent guide |
### External References
| Resource | Description |
|----------|-------------|
| [HashiCorp Vault](https://developer.hashicorp.com/vault/docs) | Secrets management documentation |
| [Bun Runtime](https://bun.sh/docs) | TypeScript runtime documentation |
| [DragonflyDB](https://www.dragonflydb.io/docs) | Redis-compatible database docs |
---