Intermediate · Systems
Operational Agent Context
Visual diagram · (in preparation) · Math · (in preparation) · Worked example · 3 difficulty levels.
TL;DR. The live environmental state an agent needs right now — permissions, quotas, system health, current data, and active constraints.
Technical Definition
The live environmental state an agent needs right now — permissions, quotas, system health, current data, and active constraints.
How it works
Operational context is the volatile layer: which credentials are currently valid, how much budget remains, whether a downstream service is degraded, what today's inventory or on-call rotation is, and which policies are in force. It must be read fresh rather than remembered, because acting on a stale operational fact is how agents double-charge customers or write to a system that is mid-migration. Treating it as a separate, always-refreshed context tier prevents it from being compacted away with ordinary history.
Related Concepts
- Agentic Context — The full set of information an agent has available when it decides its next action — goals, state, tools, memory, and retrieved data.
- Context Management — The engineering practice of controlling what goes into a model's context window, in what order, and at what cost.
- Context Drift — The gradual divergence of an agent's working context from the actual task or world state, degrading its decisions over time.
- Persistent Agent Context — Context that survives beyond a single session — durable goals, preferences, project state, and accumulated knowledge.