← Thinking Thinking

When Agents Enter the Organization: How Context Becomes the Third Enterprise Resource

Starting from the phenomenon of agents entering organizations, this article derives through six logical steps that context is the third resource enterprises…

2026-07-25Thinking18 min read

In 2026, the number of agents inside organizations is rapidly approaching the number of people. McKinsey has publicly disclosed having 40,000 people plus approximately 25,000 AI agents — up from only a few thousand agents eighteen months ago. This trend is happening in every organization that has embraced AI.

But few ask the follow-up question: when agents are as numerous as people, or more, what do they work from?

Agents have no tacit understanding. No implicit memory. No hallway conversations. Their sole working basis is the context explicitly provided to them. An agent does not know the conclusion of last week's meeting unless you tell it. It does not know why a decision was made three months ago unless the context contains that information. It does not know what another agent discovered on a parallel branch unless the system helps transfer that knowledge.

This means that as agents become the basic workforce unit, a resource that has always existed but was never explicitly managed becomes the bottleneck: context.

Context: The Overlooked Third Resource

The history of enterprise IT infrastructure can be read as a chronicle of scarce resource management. When compute was scarce, operating systems were invented to schedule it. When data was scarce, databases were invented to govern it. When connectivity was scarce, the Web was invented to organize it. When parallel evolution of documents and code became the bottleneck, Git was invented to manage it. The trigger condition was always the same: a new scarce resource emerged that required explicit management.

Context fits this pattern. It has always been the implicit infrastructure of organizational operations, transmitted through human memory, meetings, documents, and chat. When agent numbers were small, this informal system was barely adequate. But as agent populations surge and human-agent collaboration density exceeds human-human collaboration by one to two orders of magnitude, the capture, storage, assembly, and flow of context becomes the bottleneck.

Context is the third resource — after compute and data — that enterprises must manage as a first-class citizen. It requires its own infrastructure layer.

The Marginal Cost of Reading Is No Longer Zero

To understand why existing tools cannot manage context, we must first recognize a deeper economic shift.

For forty years, the implicit assumption was: writing is expensive, reading is free. Producing a document costs significant human effort, but once written, a hundred people can read it at near-zero marginal cost. So the entire system optimized for "reducing the cost of writing" — faster editors, easier sharing, lower publishing barriers. "Reading" received almost no engineering attention.

In the agent era, this assumption inverts. A piece of knowledge is produced once but may be consumed by ten thousand agents across ten thousand calls. Each call costs real money in tokens, inference latency, and context window occupancy. The volume of reads has surged by three to four orders of magnitude, and read quality directly determines work quality. Injecting twenty thousand tokens of irrelevant chat logs not only wastes money but dilutes attention and degrades output.

The cost of reading is not new — it has shifted from implicit human time cost to precisely meterable token cost. Only when it becomes meterable can it be optimized.

This inversion yields a first principle: AI-era information infrastructure is fundamentally about optimizing the cost of machines reading organizational cognition. Structuring is not for human readability; it is for compressing machine reading costs. Versioning is not for archiving; it is for enabling incremental reads. Indexing is not for search boxes; it is for hitting the minimal sufficient set within a finite context window.

This also explains why RAG is insufficient. RAG performs retrieval at read time, recomputing from scratch each time, with cost growing linearly with query count. Write-time structuring completes classification, annotation, and association when events are produced, enabling constant-time lookup. As agent counts grow, this difference shifts from "acceptable" to "system bottleneck."

Five Tools, One Blind Spot

With the read-write cost inversion principle established, we can systematically examine existing tools.

Document platforms store conclusions, not processes. A proposal's final form is recorded, but how it evolved — which directions were considered and rejected, who changed their mind and when — is almost never captured.

Instant messaging is linear, unstructured, and unbranchable. Finding a key decision from three days ago in two hundred messages requires manual scrolling.

Knowledge bases depend on post-hoc human distillation. By the time knowledge is deposited, the collaboration that produced it is long over. RAG solves "finding information" but not "understanding why." It cannot answer questions that require evolutionary history and causal chains.

Agent Memory is a solitary island. Agent A's memory is invisible to Agent B. There is no version management, no cross-agent merging.

Git manages text diffs, not cognitive diffs. Merging two code segments is a well-established engineering problem. Merging two meeting transcripts produces semantic garbage.

The shared deficiency of all these tools points to the same gap: no system treats organizational cognition as a first-class resource to model, store, and govern.

Cognition Has Its Own Hierarchy

If context is a resource that needs management, it needs its own data model. Neither the document model (files and directories) nor the database model (tables and rows) works. The reason is that context is not a homogeneous object — it has cognitive levels from low to high.

The same meeting transcript contains two fundamentally different types of information: facts ("Zhang said the budget is 5 million," immutable) and interpretations ("so we decided to prioritize this client," mutable). If stored together, version management and merging become impossible.

The solution is to model context as a cognitive promotion chain:

Event (raw occurrence, immutable) → Claim (assertion extracted from events, with provenance and confidence) → Intent (why a task exists: goals, constraints, acceptance criteria) → Decision (organizational formal position, must be confirmed by a person) → Artifact (code, documents, data, existing as references).

Each level has different merge rules: Event auto-deduplicates, Claim uses evidence weighting, Intent requires explicit declaration, Decision never auto-merges, Artifact references rather than copies.

This chain draws the boundary with documents. Merging two chat logs is meaningless; merging Claims, Intents, and Decisions is meaningful.

Merging Cognition, Not Text

With an object model, version semantics can be defined: commit, branch, fork, merge. But context merging differs fundamentally from code merging. Code merging handles text differences. Context merging handles cognitive differences. Two people each wrote a code segment — the conflict is at the syntax level, and three-way merge resolves it. But two agents each researched a different direction of the same question and reached mutually exclusive conclusions — this is not a text conflict, it is a cognitive conflict.

A concrete scenario. Agent A researches competitor pricing and recommends $99/month. Agent B researches user willingness to pay and finds an acceptable range of $50–$80. $99 exceeds the acceptable range. Line-level diff is powerless here.

This requires a new primitive: Cognitive Merge. The design philosophy is "expose conflicts, don't eliminate them." The biggest risk in the agent era is not that agents can't work — it's that multiple agents evolving independently will quietly produce a false consensus.

The system's role is to "prepare the case file, not act as judge": present the divergence point, each side's evidence and strength, optional synthesis options, then hand the decision back to a human. Both branches' complete reasoning chains are preserved. Three months later, if market feedback suggests pricing is too high, you can return to this merge node and re-examine the archived branch for further analysis.

When Direction Changes: Context Rebase

Cognitive Merge handles spatial conflicts: two branches reaching contradictory conclusions at the same time. But there is also a temporal problem: what happens when premises change.

Every organization has experienced this: a meeting happens, the direction changes. Work done based on the old direction — some is still valid, some needs adjustment, some is entirely wasted. The problem is not the rework itself; it is that you don't know which work needs reworking. Traditional organizations rely on human memory and communication to investigate. It is time-consuming, unreliable, and prone to omission.

If context has version management, this process becomes a graph traversal problem. Each decision records its dependent premises. When a premise is overturned, the system traverses the dependency graph: all decisions depending on that premise are marked stale, all downstream tasks are flagged for re-evaluation.

This is Context Rebase. The biggest waste in enterprises is not lack of knowledge — it is outdated assumptions continuing to drive new work. An upstream decision has changed, but ten parallel downstream tasks continue operating on invalidated premises for weeks. Context Rebase compresses this investigation process from days to seconds.

This is a capability that simply does not exist in traditional collaboration systems. It is also one of the greatest organizational efficiency gains that context infrastructure can deliver.

The End of the Deduction

From "context is the third resource" to "Enterprise Context OS," the reasoning chain is clear: context becomes a bottleneck, the read cost inversion exposes the structural absence of existing tools, the absence stems from the lack of a cognitive object model, having a model demands version management, version management leads to Cognitive Merge and Context Rebase, and the carrier for these capabilities is a new infrastructure layer.

This infrastructure layer is Enterprise Context OS, composed of three components:

Context Store: manages cognitive storage and evolution. Context Git provides version semantics (commit/branch/merge/fork/rebase). Memory Hierarchy manages the full temperature spectrum from permanent storage to attention state cache.

Context Compiler: compiles organizational cognition into agent working sets. Input is the Context Repository, intermediate representation is Context IR, optimization passes (relevance pruning, summary substitution, window budget allocation) produce the final Context Package. Prompts go from handcraft to compiled output.

Agent Runtime: runs human-agent mixed collaboration. Control Plane manages scheduling, permissions, and Intent-State convergence. Execution Plane performs the actual work. Plus each person's Personal Agent as interface and trustee.

The future enterprise tech stack has four layers: Agent — Enterprise Context OS — Data Infrastructure — Compute Infrastructure. The new one is the middle layer.

A Judgment

The previous generation of IT systems managed organizational data. This generation must manage organizational cognition. When the cost of reading inverts, when cognition requires versioning, when premise changes demand rebase, when conflicts need to be exposed rather than concealed — a new category of foundational software becomes inevitable.

Whoever first turns context into a first-class resource — storable, compilable, authorizable, continuable — will be the first to gain the ability to make a thousand agents and a hundred people truly collaborate.

For the complete technical architecture design, see the companion whitepaper "When Agents Enter the Organization: How Enterprise Context OS Reconstructs Enterprise Information Infrastructure."


This article is based on publicly available information, with comprehensive reference to the MCP Protocol Specification (Anthropic, 2024–2026), Karpathy's Context Engineering concept (June 2025), McKinsey's "The Agentic Organization" public data, Claude Code context management architecture analysis, Agent Harness Engineering survey (CMU/Yale/Amazon et al., 2026), and multiple industry analyses of agent infrastructure. This article does not constitute investment advice. Data herein is current as of July 25, 2026.