From c6554a8b3da9514d30a1628667c3eb41d2546452 Mon Sep 17 00:00:00 2001 From: profit Date: Sat, 24 Jan 2026 19:00:08 -0500 Subject: [PATCH] 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 --- README.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 996c360..36d3074 100644 --- a/README.md +++ b/README.md @@ -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 | ---