Tiered Context Loading for Agent Systems
Agents should not crawl everything by default. Good runtime design lets them inspect context progressively, loading only what they need.
One of the fastest ways to make an agent slower, more expensive, and less reliable is to give it too much context too early. Tiered context loading turns context discovery into a staged process so the runtime has a navigation system, not just a pile of files.
Key Facts
- Context zones
- Identity, inbox, areas, projects, knowledge, archive
- Loading model
- L0 .abstract.md, L1 .overview.md, L2 full files
- Primary goal
- Progressive inspection instead of blanket retrieval
- Common failure
- Stale or over-loaded context
- Use with
- Filesystem hubs, MCP resources, agent memory
Build context like a durable operating model
When context has stable zones and loading tiers, agents can reason about what they know, what they have not inspected yet, and what should remain out of scope until a task justifies it.
Continue through the runtime branch
This branch is meant to work as one library. Use the other guides to complete the operating model beyond the current topic.
Continue through the runtime branch
This branch is meant to work as one library. Use the runtime landing page to recover the full operating picture, then move into principles when you need to reconnect runtime decisions to doctrine.