In January, a mid-size fintech company discovered that an autonomous agent deployed by their marketing team had been scraping competitor pricing data, storing it in an unencrypted S3 bucket, and feeding it into a report that was shared with three external partners. The agent had been running for four months. Nobody in security knew it existed.
This isn't an edge case. It's the new normal.
Gartner projects that 40% of enterprise applications will include task-specific AI agents by the end of 2026, up from less than 5% in 2025. A LangChain survey of 1,300 professionals found that 78% of organisations have agent pilots running, but only 14% have reached production scale with proper governance. The gap between those two numbers is where the risk lives.
What agent sprawl actually means
Shadow IT was the problem of the 2010s: employees signing up for SaaS tools without IT approval, creating data silos, compliance gaps, and security blind spots. Agent sprawl is the 2026 version, and it's worse.
The difference is agency. A SaaS tool stores data. An agent acts on data. It reads your database, calls your APIs, sends emails, modifies records, and makes decisions, all at machine speed, with whatever permissions its creator happened to give it.
Shadow IT was about access. Agent sprawl is about execution. When an unmanaged tool leaks data, you have a breach. When an unmanaged agent acts on data, you have an incident you might not discover for months.
The anatomy of sprawl
Interactive simulation · sprawl vs governance
The same capability, two outcomes
One high-value agent ships fast. Governance is either bypassed or embedded from day one.
Ungoverned path
Inherited credentials + fragmented routing
Action map
Trace 5%Known
0/1
Untracked
1
Keys
1
Detect
30d
Product Manager
Deploys pricing agent from laptop using personal API key.
Untracked agents
1
Trace uplift
+95%
Risk reduction
28 points
Notice the core shift: the exact same agent capabilities become far safer when identity, routing, and action boundaries are centralized instead of inherited ad hoc.
We've audited agent deployments at four companies in the past six months. The pattern is remarkably consistent.
Phase 1: The useful hack. A product manager builds an agent in Cursor or Claude Code to automate their weekly competitive analysis report. It works beautifully. It takes 3 minutes instead of 3 hours. They share it with the team.
The agent uses the PM's personal API keys. It runs on the PM's laptop. It stores results in a shared Google Sheet. Security has no visibility into any of this.
Why traditional security fails
Enterprise security teams have spent two decades building frameworks for managing human access to systems. Identity and Access Management (IAM), role-based access control (RBAC), single sign-on (SSO), multi-factor authentication (MFA). These frameworks assume a fundamental property: the entity being governed is a person who authenticates, makes decisions at human speed, and can be held accountable.
Agents break every one of these assumptions.
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
NIST's Centre for AI Standards and Innovation (CAISI) launched an agent-specific standards initiative in February 2026, identifying three fundamental gaps in traditional identity management:
- Binding: agents need identities linked to the humans who authorised them, establishing a chain of accountability.
- Scoping: agents need task-bound, time-limited permissions, not the broad persistent access their creators have.
- Verification: systems that receive requests from agents need mechanisms to verify the authenticity of the authorisation behind each action.
The governance architecture
After helping four companies recover from sprawl incidents, we've converged on an architecture with four layers. Each layer addresses a distinct failure mode.
Layer 1: The agent registry
You cannot govern what you cannot see. The first requirement is a centralised inventory of every agent operating in your environment.
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
The registry isn't a spreadsheet. It's an API that enforces registration at deployment time. If an agent isn't registered, it doesn't get credentials. If its registration expires, its credentials are revoked automatically.
Layer 2: Scoped identity
Every agent gets its own identity, separate from its creator. This identity has permissions scoped to exactly what the agent needs (and nothing more) with time-bound access that requires periodic renewal.
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
| 25 | |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
| 30 | |
| 31 | |
| 32 | |
| 33 | |
| 34 | |
| 35 | |
| 36 | |
| 37 | |
| 38 | |
| 39 | |
| 40 | |
| 41 | |
| 42 | |
| 43 | |
| 44 | |
| 45 | |
| 46 | |
| 47 | |
| 48 | |
| 49 | |
| 50 | |
| 51 | |
Layer 3: Real-time observability
Every action an agent takes is logged to an immutable audit trail with enough context to reconstruct the full decision chain after the fact. This isn't optional instrumentation. It's a governance primitive.
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
The anomaly detection layer is critical. It monitors patterns like: an agent that normally makes 50 API calls per day suddenly making 5,000. An agent accessing a data source it has never touched before. An agent's error rate spiking from 2% to 40%. These patterns trigger automatic suspension and human review before damage compounds.
Layer 4: The kill switch
Every agent must be instantly suspendable. Not "suspendable after a deploy" or "suspendable after someone finds the right Kubernetes pod." Instantly. One API call. The agent stops, in-flight actions are cancelled where possible, and all credentials are revoked.
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
| 25 | |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
| 30 | |
| 31 | |
| 32 | |
| 33 | |
| 34 | |
| 35 | |
| 36 | |
| 37 | |
The coordination problem
There's a failure mode that no amount of individual agent governance solves: conflicting agents. When two agents with overlapping scopes operate on the same data, they can produce contradictory outcomes without either agent doing anything individually wrong.
Interactive · coordination demo
The Inventory Conflict
Takeaway: local correctness is not system correctness. Two individually valid agents can still create destructive loops without a global conflict policy.
The solution is an explicit coordination layer: a registry of which agents can act on which resources, with built-in conflict detection.
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
| 25 | |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
| 30 | |
| 31 | |
| 32 | |
| 33 | |
| 34 | |
| 35 | |
| 36 | |
| 37 | |
| 38 | |
The governance checklist
If you're shipping your first 10 agents to production, here is the minimum viable governance surface:
- Agent registry: 95%
- Scoped identity: 80%
- Audit logging: 85%
- Kill switch: 90%
- Conflict detection: 60%
- Anomaly monitoring: 55%
The chart above shows the percentage of sprawl incidents that each layer would have prevented, based on our analysis of 31 incidents across four companies. The registry alone prevents the majority of problems because most sprawl incidents stem from agents that nobody knew about.
The uncomfortable truth
Agent sprawl isn't a technology problem. It's an organisational problem. The technology for governance exists today: registries, scoped credentials, audit trails, anomaly detection. The challenge is that governance feels like friction, and the teams deploying agents are optimising for speed.
The companies that get this right treat agent governance the way they treat cloud governance. Not as a gate that blocks deployment, but as a platform that makes deployment safe and auditable by default. You don't ask developers to "remember to log things." You give them infrastructure that logs everything automatically.
The goal isn't to slow down agent adoption. It's to make ungoverned agents the harder path. When the governed path is faster and more reliable than the ungoverned path, sprawl fixes itself.
Sources
- Gartner projection on enterprise agent adoption (2026 forecast).
- LangChain survey (n=1,300) on pilot-to-production governance gaps.
- NIST AI Risk Management Framework and CAISI agent-identity initiative materials (2026).
- Internal incident analysis sample: 31 sprawl incidents across four companies.
Your company will have 50 agents by the end of 2026. The question isn't whether to govern them. It's whether you build the governance architecture before or after the first incident. The math strongly favours before.