AI Context Engine
Knowledge from "Context Engineering for Multi-Agent Systems" (Chapters 3-5 + Appendix A). The full architecture and hardening of the glass-box Context Engine.
Quick Start
- Check
guidelines.mdto find which files to load - Load only relevant files (each topic has knowledge.md, rules.md, examples.md)
- Apply guidance to your work
Contents
References
| Category | Purpose |
|---|---|
dual-rag |
Procedural vs factual RAG, context library vs knowledge base |
rag-ingestion |
Pinecone setup, token-aware chunking, embeddings, upsert |
engine-components |
Planner, Executor, Execution Tracer (the engine triad) |
specialist-agents |
Context Librarian, Researcher, Writer (initial + hardened) |
agent-registry |
Capability descriptions, get_handler, dependency injection |
hardening |
DI, structured logging, proactive context mgmt, modularization |
engine-reference |
Appendix-style reference guide for the commons library |
Workflows
| Workflow | Purpose |
|---|---|
workflows/build-context-engine.md |
Full engine build (dual RAG → triad → agents → registry → run) |
workflows/setup-rag-pipeline.md |
Pinecone ingestion (chunk → embed → upsert) |
workflows/harden-engine.md |
Take prototype to production (DI, logging, modularization) |
Guidelines
See guidelines.md for task-based file selection.