โ†
AI Agent Builders & Citizen Developers
Aware ยท M13 ยท lesson 13 of 19 ยท queued
Preview โ€” browse every lesson free. Enroll to mark lessons complete, open partner links and save your progress. Login & enroll โ†’
The Kiteworks Number You Quote in Every Meeting
๐Ÿ“–
now learning

The Kiteworks Number You Quote in Every Meeting

15 min

There is a number you should be able to quote from memory in every governance meeting, every vendor pitch, every executive briefing about AI agent deployment. It is the headline finding of the 2026 Kiteworks Enterprise AI Risk Survey, which polled 632 enterprises across North America and Europe about how they actually run agents in production โ€” not how their vendors claim they do. The number: 41-44% of enterprises run AI agents with no human-in-the-loop anywhere in the flow, and 55-63% lack basic operational controls โ€” kill switches, network isolation, or purpose binding. That second number is the one that should make your CFO put down their coffee. It means most enterprise agents in 2026 cannot be stopped mid-action, run on the same network as everything else, and operate without scope constraints. This lesson is about why this number matters, how to use it in your governance conversations, and how to assess your own organization against the baseline. We will not be subtle. The goal is to give you a number you can recite, a context you can explain, and an action plan you can deploy on Monday.

The Kiteworks 2026 Survey: The Headline Numbers

Kiteworks runs an annual enterprise security and AI risk survey. The 2026 edition, published Q1 2026, surveyed 632 enterprises (revenue \$500M+ and Fortune 1000 representation) about their AI agent deployment posture. The methodology was self-reported via senior IT, security, and risk leadership โ€” meaning, if anything, the numbers understate the actual problem (organizations self-reporting tend to inflate their controls).

The headline findings worth memorizing:

  • 41-44% of surveyed enterprises run AI agents with no human-in-the-loop (HITL) anywhere in the agent's decision flow. The agent acts unilaterally on its outputs, without a human approval step for any class of action.
  • 55-63% of surveyed enterprises operate agents without one or more of: kill switches, network isolation, or purpose binding. The range reflects that different controls have different adoption rates โ€” kill switches at 37% adoption, network isolation at 42%, purpose binding at 45%.
  • 72% of enterprises have not conducted any formal risk assessment of their deployed AI agents. Not a FRIA, not a DPIA, not even an informal internal review.
  • 58% of enterprises cannot identify in 24 hours all the AI agents currently running against their systems. Shadow agent deployment is the rule, not the exception.
  • 83% of enterprises plan to expand agent deployment in 2026 despite the above.

The combination is the meaningful pattern: most enterprises are running agents without basic operational controls, do not know how many agents they have, have not assessed their risk โ€” and are accelerating deployment. This is the operational reality the EU AI Act's August 2, 2026 deployer obligations are about to land on.

The Kiteworks numbers describe an industry running a science experiment in production. The variables aren't controlled. The instruments aren't calibrated. The lab notebook is empty. Most experiments at this stage would be shut down. This one is being expanded.

Why This Number Matters

The number matters for three reasons, each of which deserves your understanding.

Reason 1: it sets the deployer-side baseline

When the EU AI Act's deployer obligations land in August 2026, the question regulators (and litigators) will ask is: "What is the industry baseline for the operational controls you claim to lack?" The Kiteworks number is the answer. It is a defensible, citable, public industry baseline. If your organization is below it, you are below the industry baseline. If you are at it, you are average โ€” and average is now the floor of regulatory exposure. If you are above it, you can demonstrate proportionate care.

This matters in the context of Article 99 penalties: up to โ‚ฌ15M or 3% of global turnover for the most severe violations. "We were no worse than the industry" is a much weaker defense in 2027 than "we exceeded the industry baseline on every operational control."

Reason 2: it correlates with incident frequency

The Kiteworks data, cross-tabulated with incident self-reporting (a less complete dataset in the survey), shows that enterprises lacking kill switches reported AI-incident rates 3.4x higher than those with kill switches. Enterprises without purpose binding reported scope-creep incidents (agents doing things outside their declared purpose) 4.7x higher. Enterprises without HITL reported "high-severity errors that required customer notification" 2.9x higher.

The mechanism is intuitive: the controls exist because they catch the failure modes; their absence leaves the failure modes uncaught. The data confirms the intuition. The controls are not theoretical safeguards โ€” they are operationally load-bearing, with measurable incident-rate impacts.

Reason 3: it's the number that ends the wrong conversation

This is the one operators tell me most often. When you walk into a governance meeting and someone says "we don't need a kill switch โ€” what could go wrong?", the Kiteworks number is what you cite. When a vendor's sales rep claims their agent "doesn't need" network isolation, the Kiteworks number is what you cite. When a board member asks "is this something we should be worried about?", the Kiteworks number is what you cite. It transforms vague AI-risk hand-waving into a specific, dated, industry-benchmarked statistic. Specificity changes the room.

What the Three Missing Controls Actually Are

Most operators have a fuzzy sense of what these terms mean. Let's get precise, because precision is what makes the Kiteworks number actionable in your own org.

Kill switches

A kill switch is a control that halts an agent's actions mid-flight. Three flavors:

  • Hard kill: immediately stops the agent process or revokes the agent's credentials. The agent cannot complete its current action or start new ones. Implementation: credential revocation, process termination, network block.
  • Soft kill: lets the current atomic action complete (so it doesn't leave state mid-transaction) but blocks all subsequent actions. Implementation: orchestrator pause, queue drain.
  • Selective kill: pauses a specific class of actions (e.g., all writes) while allowing others (reads, logging) to continue. Useful for triage without full shutdown.

The Kiteworks survey found only 37% of enterprises have any kill switch for at least one agent class. The remaining 63% must call a vendor or wait for a token to expire to stop a misbehaving agent. In high-blast-radius scenarios (see Lesson 1.4.1), this is the difference between a 10-second incident and a 4-hour one.

Network isolation

Network isolation means the agent operates from a constrained network segment โ€” VPC, dedicated subnet, or namespaced cluster โ€” that limits which other systems it can reach. Examples:

  • An agent that needs to call Stripe operates from a network segment whose egress rules permit only Stripe's API endpoints and a defined logging endpoint. It cannot reach internal databases directly.
  • An agent processing internal CRM data operates inside the corporate VPC with no public internet egress except to specifically-allowed third-party APIs.
  • An agent on a no-code platform (Lindy, n8n cloud) runs in the vendor's multi-tenant infrastructure but uses a dedicated outbound IP and proxy for the customer's tenant.

The 42% of enterprises with network isolation typically achieved it by deploying agents inside their cloud accounts (AWS, GCP, Azure) with VPC controls, or using self-hosted versions of agent platforms. The 58% without network isolation are running agents on platforms with no clear network boundary โ€” meaning a compromised agent can reach more of the corporate environment than its job requires.

Purpose binding

Purpose binding is the discipline of constraining an agent to actions in service of its declared purpose. It is the operational translation of GDPR Article 5(1)(b) ("purpose limitation") for the agent era. Examples:

  • An agent declared as "customer support refund processor" cannot, even with the same credentials, run a marketing email campaign โ€” the orchestrator filters which actions are eligible by declared purpose.
  • An agent declared as "Salesforce data enrichment" cannot, even when prompted, write to non-data-enrichment fields (e.g., Owner, Stage, Amount) โ€” the schema enforces purpose-aligned writes.
  • An agent that begins drifting toward unauthorized actions (e.g., starts looking up records unrelated to its declared scope) triggers an alert and is auto-paused.

Purpose binding is the newest of the three controls in 2026 โ€” many platforms didn't support it natively two years ago. The 45% adoption rate reflects rapid recent uptake, but most enterprises are still in early implementation. Salesforce Agentforce's "Topics," Anthropic's MCP scopes with purpose declarations, and OpenAI's Assistant scopes are all moving in this direction.

How to Use the Number in Governance Conversations

The Kiteworks number is operationally powerful because it answers specific questions specific stakeholders ask. Let's walk through the conversations.

Conversation 1: "We don't need a kill switch โ€” the model is reliable."

This is the most common conversation. The answer:

"The Kiteworks 2026 survey of 632 enterprises found that 63% of enterprises lack kill switches, and those enterprises reported AI-incident rates 3.4x higher than those with kill switches. The kill switch is not about model reliability. It is about your ability to respond when an incident occurs โ€” and incidents are now an empirical certainty, not a hypothetical. Article 26 of the EU AI Act, binding August 2 of this year, requires human oversight measures. Kill switches are the operational floor of that requirement."

Notice the structure: cite the source (Kiteworks, 632 enterprises, 2026), state the specific statistic (63%, 3.4x), connect to the regulatory requirement (Article 26 binding date), and end with the operational implication (kill switches as the floor). This is the template for the rest of the conversations.

Conversation 2: "Why do we need network isolation? The agent is in the cloud."

"The Kiteworks 2026 number for enterprises lacking network isolation on their agents is 58%. Cloud deployment is not the same as network isolation. Network isolation means defining which other systems the agent can reach, regardless of which cloud the agent runs in. The fact that an agent runs in AWS does not constrain what it can connect to. Without network isolation, a compromised or hallucinating agent can reach systems outside its job โ€” including internal databases, other production services, and arbitrary external endpoints. Network isolation is how we bound the blast radius of a single agent. It's also a standard control under ISO/IEC 42001 8.3."

Conversation 3: "Purpose binding sounds theoretical โ€” what's the practical concern?"

"Kiteworks 2026 found 55% of enterprises lack purpose binding, and those enterprises reported scope-creep incidents โ€” agents doing things outside their declared purpose โ€” at 4.7x the rate of those with purpose binding. The practical concern is that an agent's credentials and prompt are not enforcement: an agent can use its credentials to do things its prompt didn't authorize, particularly under prompt injection or hallucination. Purpose binding is the architectural enforcement that prevents this drift. Under GDPR Article 5(1)(b), purpose limitation is a legal requirement for personal data processing. The deployer is accountable. Purpose binding is how we make that accountability operational."

Conversation 4: "Why are you bringing this up now? We've been doing fine."

"Two reasons. First, 'fine' until now has been a function of low incident rates from low agent volume. Kiteworks reports 83% of enterprises are expanding agent deployment in 2026. The risk profile scales with deployment volume. Second, Article 26 deployer obligations bind August 2. The penalties โ€” up to โ‚ฌ15M or 3% of global turnover โ€” are not theoretical. The question regulators will ask is what operational controls we had at the time of any incident. 'We were no worse than the industry' will not be a defense; the Kiteworks numbers define the industry baseline, and 'at or below average' will be characterized as deployer negligence."

The pattern

Across these conversations, the Kiteworks number does three things:

  1. It supplies a specific, citable statistic that ends speculation.
  2. It connects the statistic to a measurable consequence (incident multiplier, regulatory exposure).
  3. It links to a concrete control (kill switch, network isolation, purpose binding) that the conversation can resolve to action on.

That's the template. Pin it.

Assessing Your Own Org Against the Baseline

Knowing the industry baseline is only useful if you can compare it to your own organization. Here is the assessment you can run on Monday.

Step 1: enumerate your deployed agents

List every AI agent currently running against your production systems. Include: SaaS-platform agents (Salesforce Agentforce, Lindy, Intercom Fin, Zendesk Answer Bot, etc.), self-built agents (n8n, Make, internal code), and AI features inside SaaS products you use (Notion AI, Slack AI, etc., where they have write or external-action capabilities).

This list will probably be longer than you expect. The Kiteworks finding that 58% of enterprises can't enumerate their agents in 24 hours is reflected in real-world practice: agents proliferate through citizen developers and SaaS feature rollouts faster than central IT tracks them. Your first version of this list will be incomplete. Iterate.

Step 2: for each agent, score four controls

For every agent on the list:

  • HITL: is there a human approval step for any class of action? (Yes / Partial / No)
  • Kill switch: is there a documented procedure to stop this agent within 60 seconds? (Yes / Partial / No)
  • Network isolation: is the agent constrained to specific egress targets? (Yes / Partial / No)
  • Purpose binding: is the agent's scope of action declared and enforced beyond the prompt? (Yes / Partial / No)

Step 3: tabulate against the Kiteworks baseline

Count: what percentage of your agents have each control "Yes"? Compare:

  • HITL: your % vs. Kiteworks 56-59% baseline (the inverse of "no HITL")
  • Kill switch: your % vs. 37% baseline
  • Network isolation: your % vs. 42% baseline
  • Purpose binding: your % vs. 45% baseline

Step 4: identify the gap

Where are you below the industry baseline? Those are your priority remediations. Where are you at the baseline? Consider whether the regulatory bar (Article 26, ISO 42001 8.3) requires above-baseline. Where are you above the baseline? Document the controls for FRIA / governance artifacts; you've earned the ability to demonstrate proportionate care.

Step 5: build a 90-day remediation roadmap

Quick wins (most operators see in 30 days):

  • Add kill switches to the top-5-blast-radius agents (credential revocation procedure documented and tested).
  • Implement HITL on writes above defined dollar/record/PII thresholds for high-blast-radius agents.
  • Document purpose declarations for all deployed agents.

Medium-term (60-90 days):

  • Network isolation for self-built agents (VPC + egress rules).
  • Purpose binding enforcement in orchestration layer (where supported).
  • Standardize the inventory and re-scoring cadence.

Why Vendors Resist This Conversation

A note worth making: agent platform vendors will not always welcome the Kiteworks conversation. The reason is structural. Their products are optimized for time-to-first-agent, not for operational depth. Kill switches, network isolation, and purpose binding all add friction to the "five minutes from signup to running agent" experience that vendor sales pitches emphasize. Some vendors have not yet implemented these controls. Some have, but don't surface them in the default onboarding.

The buyer's question is not whether the vendor's marketing emphasizes these controls; it's whether the vendor's product supports them. The question to ask:

"Show me how I stop this agent in 60 seconds, how I restrict its network egress, how I enforce purpose binding beyond the system prompt, and how I demonstrate this to a Article 26 auditor."

If the vendor can't answer all four, the vendor is not yet ready for production deployment under the 2026 regulatory regime. Move them down the shortlist or use them only for non-production use cases. The Kiteworks number is, in part, a reflection of the vendor market's current state โ€” not just the buyer's choices.

The Meta-Finding: The Numbers Are Converging

One observation from the Kiteworks 2026 data worth highlighting: the four key statistics (no HITL, no kill switch, no network isolation, no purpose binding) all sit in the same band โ€” roughly 41-63%. This is not coincidence. The same organizations tend to lack multiple controls; conversely, organizations that adopt one tend to adopt others. There is a "mature operator" cluster (top quartile, has most controls) and an "immature operator" cluster (bottom quartile, has few). The middle is the wide band of average enterprises with one or two controls in place and the others missing.

The operational implication: the controls are interdependent. A kill switch without network isolation can't stop a compromised agent from completing already-initiated external requests. Network isolation without purpose binding doesn't prevent scope creep within the allowed network. HITL without kill switches lets a human approve but not stop. The four controls form a system. Adopt them together.

The Kiteworks number, then, is not just a single statistic to recite. It is a portrait of an industry maturing in fits and starts, with regulators about to compel the maturation. The operators who internalize the number, the controls, and the conversation patterns will lead the maturation. The ones who don't will be defending themselves under Article 26 in 2027.

The Number to Leave With

If you remember nothing else from this lesson, remember this:

Kiteworks 2026: 41-44% of enterprises run AI agents with no human-in-the-loop. 55-63% lack kill switches, network isolation, or purpose binding. 72% have conducted no formal risk assessment. 83% are expanding deployment anyway. Article 26 of the EU AI Act binds August 2, 2026. Penalties: up to โ‚ฌ15M or 3% of global turnover.

That's the paragraph. Memorize it. Cite it. Use it. The conversations it ends are conversations you do not have time to keep having.

Key Takeaways

  • Kiteworks 2026 headline: 41-44% of enterprises run AI agents with no HITL; 55-63% lack kill switches, network isolation, or purpose binding; 72% have no formal risk assessment; 83% are expanding deployment in 2026.
  • The numbers correlate with measurable incident rates: 3.4x higher for no kill switch, 4.7x higher scope-creep without purpose binding, 2.9x higher high-severity for no HITL.
  • The Kiteworks number ends the wrong conversation: it transforms vague AI-risk talk into a specific, dated, citable industry benchmark.
  • The three missing controls have specific operational definitions: kill switch (hard / soft / selective halt), network isolation (constrained egress), purpose binding (action filtered by declared scope).
  • The four-step org assessment: enumerate agents, score four controls per agent, tabulate against Kiteworks baseline, build a 90-day remediation roadmap starting with kill switches and HITL on top-blast-radius agents.
  • Vendor question to ask: "Show me how I stop this agent in 60 seconds, restrict its network egress, enforce purpose binding beyond the prompt, and demonstrate this to an Article 26 auditor." If the vendor can't, they're not ready for 2026 production.
  • The controls are interdependent. Adopt them together โ€” kill switch + network isolation + purpose binding + HITL form a system. The Kiteworks data shows mature and immature operator clusters, with the controls bundled.
  • Article 26 of the EU AI Act binds August 2, 2026. Penalties up to โ‚ฌ15M or 3% of global turnover. "We were no worse than the industry" is not a defense; the Kiteworks numbers define the industry baseline, and average is now the floor of exposure.
  • The paragraph to memorize: the Kiteworks numbers, the regulatory date, the penalty exposure. It's the number you quote in every meeting.