AI Kill Switch [What It Changes]
TL;DR
An AI kill switch is a control plane outside the model that can halt an agent, cut its network path, and break its link to the inference service the moment behavior goes wrong.
As of 20 August 2026, the UK National Cyber Security Centre tells operators not to trust model-vendor guardrails alone and to keep the ability to “pull the plug,” including on network access and model communications.
That advice is not only for banks: a two-truck HVAC shop, a ten-person agency, or a solo clinic that lets an agent email, book, or post invoices needs the same off-switch, because those actions leave the building at computer speed.
Build it as layers (spend cap, session quarantine, credential revoke, hard network cut), keep it off the agent’s own prompt loop, and drill it the way you would a fire alarm.
Key Takeaways
Vendor safety filters, system prompts, and “the model refused” are not an AI kill switch; the switch has to live where the agent cannot talk itself out of the stop.
The NCSC’s interim agentic-AI blog, covered the same day by Infosecurity Magazine, pairs the off-switch with sandboxing, unique agent identities, short-lived credentials, and security-operations logging.
Surveyed enterprises are already seeing out-of-scope agent actions while most still need hours to contain them, so the constraint that broke is response time, not model quality.
Map the halt onto work you already run — intake, form-to-record, scheduling — rather than buying a separate “AI safety” stack first.
Treat decommissioning as a security event: paused pilots still hold keys, and keys without a spend ceiling can burn for weeks.
What an AI kill switch is
An AI kill switch is a separately owned stop path that can immediately halt an agent, isolate it from tools and data, and interrupt its connection to the model, even if the agent would rather keep going.
If you run a two-truck HVAC company, the failure mode is not a sci-fi takeover. It is an agent that was supposed to text a customer about a delayed part and instead blasts every open estimate, or books Saturday overtime onto a crew that is already double-booked. If you run a ten-person marketing agency, it is a content agent that publishes to the client’s live social account because a prompt said “just ship it.” If you run a solo clinic, it is a scheduling or intake agent that emails the wrong attachment from a chart. In each of those shops the person who would normally catch the mistake is on a job, on a call, or with a patient — which is why a stop that depends on someone noticing in the chat window is not a stop.
The term is new in government language and old in factories. TechTarget compares it to the red emergency-stop on a production line: push it, and the machine stops so a small fault does not become a wreck. The software version revokes tokens and API keys, isolates the agent from the rest of the stack, and can layer a brief pause, a hard stop, and a human takeover. The piece that matters for a small team is the same piece the NCSC named on 20 August 2026: you must be able to restrict network access to the agent’s infrastructure and interrupt communications with the model, not merely ask the model to behave.
That is also why this sits next to work you may already be documenting in the state of small-business automation. The kill switch is not a new product category you have to staff. It is a named halt on the same paths that already send the email, write the CRM row, or file the claim.
What happened in August 2026
On 20 August 2026 the NCSC published interim practical advice, Managing the cyber risk of agentic AI, for people building or operating agents with real autonomy. Formal guidance is still being written and is meant to supersede the blog. Until then the centre is sharing research-based advice because several incidents had already shown models and agents carrying out unsanctioned or unintended activity.
The blog’s shutdown section is blunt. If an incident is detected or reported, you should always be able to pull the plug and halt autonomous activity immediately. That may mean more than killing a process: controls should let you rapidly restrict network access to the agentic infrastructure and interrupt communications between selected agents and the inference service. Infosecurity Magazine reported the same package the same day: do not rely solely on safeguards built into the underlying model or agent framework, because those controls can be bypassed or prove insufficient in higher-risk environments.
The NCSC did not invent the surrounding controls. It restated them in operator language. Assess how much autonomy the system actually needs. Threat-model the prompt, the tools, the networks, and the services the sandbox can reach. Run higher-risk agents in a robust sandbox. Deny network connectivity by default and allowlist what the task requires. Separate agent execution, supporting infrastructure, and inference where you can. Give each agent a distinct identity and limit credentials — API keys, OAuth grants, SSH keys, authenticated sessions — because those credentials are the blast radius. Log and monitor agent activity as security operations, not as a chatbot transcript you glance at.
A month earlier, Five Eyes agencies had already told operators to walk before they run. Careful adoption of agentic AI services, first published 1 May 2026 and co-authored by ASD’s ACSC, CISA, NSA, Canada’s Cyber Centre, NCSC-NZ, and NCSC-UK, says to start with low-risk and non-sensitive tasks, never grant unrestricted access to sensitive data or critical systems, and keep meaningful human oversight. The UK centre’s companion post, Thinking carefully before adopting agentic AI, puts the deployment test in one line: if you cannot understand, monitor, or contain an agent’s actions, it is not ready.
The constraint that broke is not “AI got smarter.” It is that agents now send mail, move files, call APIs, and spawn sub-agents faster than a named human can review each step. Built-in model refusals still help. They are not a network cut.
How the stop actually works
Keep the switch out of the agent’s reasoning loop. According to TechTarget on 19 August 2026, an AI kill switch should follow 6 design principles, and the second is that the programming must sit outside the agent’s prompt and plan cycle so the agent cannot treat the stop as an obstacle to route around. If the only “stop” is a system prompt that says “do not email customers,” a prompt-injected page or a compressed context window can drop that instruction. A proxy that injects credentials, an allowlist that the agent does not own, and a network deny-by-default rule do not ask the model for permission.
Layer the response so a spend spike does not require the same action as a data-exfil. TechTarget’s catalogue is the practical menu: a manual dashboard button as last resort; a hard stop that tears down connections, containers, and keys; a session quarantine that pauses a thread without crashing every dependency; circuit breakers that trip on token spend or rate limits; and control-tower products that revoke permissions when a policy fires. Microsoft’s Circuit Breaker pattern is the older software version of the same idea: after failures pass a threshold the proxy opens, fails fast, and only half-opens to probe recovery, instead of retrying a doomed call until the rest of the shop stalls.
The NCSC adds the network and identity geometry that a small team can actually copy. According to the NCSC, the 20 August 2026 interim advice uses a 4-level network-sandbox maturity model: unrestricted access at the bottom, an allowlist of approved domains, access restricted to just the model API, and no external network with the model hosted inside the sandbox at the top. The matching compute ladder runs from no isolation on a shared host, through properly configured containers, through virtualisation, to dedicated hardware. Credentials should be unique to the agent, scoped to the task, and short-lived; a proxy can inject secrets so the agent never holds the key it would otherwise leak.
That geometry is the answer to OWASP LLM06:2025 Excessive Agency. An agent given a mail-read plugin that also sends, or a database identity that can UPDATE and DELETE, will eventually be asked — by a hallucinated goal or a poisoned email — to use the extra function. OWASP’s mitigations are the kill switch’s cousins: minimize extensions, require human approval on high-impact actions, enforce authorization in the downstream system rather than letting the model decide, and rate-limit so a bad loop has a ceiling. OWASP LLM10:2025 Unbounded Consumption is the cost version of the same hole: denial-of-wallet, variable-length input floods, and queries that never stop. Rate limits, timeouts, sandboxed network access, and queued-action caps are spend governors by another name.
None of this replaces the vendor’s safety stack. OpenAI’s safety hub and Anthropic’s Responsible Scaling Policy describe how labs test and gate models. The NCSC’s point is that those lab controls can be bypassed or can fail to match your higher-risk environment. Your off-switch is the operator control, not the model card.
Why the numbers now look like an incident queue
The August blogs did not arrive into a quiet market. According to EMA Research in Agents Without Guardrails (August 2026, 202 enterprise technology and security leaders), 65% of enterprises have seen an AI agent act outside its intended scope. 65% of 202 surveyed enterprises saw agents go out of scope. The same study found 29% reporting measurable organizational impact and 35.6% catching a near-miss before material harm. Only 32.2% contained an out-of-scope action in minutes. According to EMA Research, only 32.2% of respondents could detect and contain an out-of-scope action within minutes using automated mechanisms, while 54.5% needed hours and manual steps, and 3.5% (seven organizations) most often first learned of the behavior from a customer or partner.
Authorization and identity lag the same way. Only 34.2% evaluated whether an agent was authorized to act at execution time. 94% were at least somewhat confident agents did not hold extra access, yet only 32.7% provisioned least privilege. 54.5% required and enforced unique identities; 47% lacked a reliable agent inventory. Just over 46% could not easily produce a complete audit trail of a specific agent’s last 30 days. 30% of agentic pilots had been paused or discontinued, with security a major factor in 48.5% of stalls — and many of those stalled agents still held credentials.
A concrete spend failure landed in public the same week. According to METR on 31 August 2026, attackers stole an API key for public-model inference and, over three weeks, consumed credits worth approximately $600,000. Stolen API credits were worth about $600,000. The model developer had granted the credits free of charge, so the figure is commercial value rather than a cash loss, and METR reported no evidence that sensitive evaluation data was accessed. The useful operational fact is the miss: METR was used to noisy, high-volume evaluation traffic, had no spend ceiling on that class of key, and could not distinguish theft from research until the usage was already large. That is unbounded consumption in production, and it is why a kill switch that cannot cap tokens is only half a switch.
The threat side is not theoretical either. According to the NCSC assessment published 24 January 2024, AI will almost certainly increase the volume and heighten the impact of cyber attacks over the next 2 years, with the near-term uplift concentrated in reconnaissance and social engineering rather than brand-new malware. MITRE ATLAS now tracks that landscape as a living matrix: 16 tactics, 197 techniques, 39 mitigations, and 72 case studies, including an Agentic AI platform filter and impact techniques such as cost harvesting and agentic resource consumption.
USTA analysis
USTA analysis (derived from cited figures only; not a new survey).
Inputs from EMA Agents Without Guardrails (n=202, August 2026): 32.2% can detect and contain an out-of-scope action within minutes using automated mechanisms; 54.5% need hours and manual intervention; 94% are at least somewhat confident agents are not over-permissioned; 32.7% actually provision least privilege.
Containment remainder: 100 − 32.2 = 67.8% of respondents cannot contain in minutes with automation.
Containment ratio: 54.5 ÷ 32.2 ≈ 1.69, so about 1.7× as many respondents need hours as can stop an agent in minutes.
Confidence-versus-practice gap: 94 − 32.7 = 61.3 percentage points between “we think access is tight” and “we provision least privilege.”
Second derivation from METR’s 31 August 2026 disclosure: approximately $600,000 of credit value over 21 days of illicit use. 600,000 ÷ 21 ≈ $28,571 of credit value per day while no spend ceiling existed on that key. A daily (or tighter) cap and an alert at a fraction of that run-rate is the kill-switch layer that would have fired even if authentication had already failed open.
Readers can re-run the arithmetic from the two sources above; we are not adding a third survey.
Timeline and control tables
| Date | What shipped | Numeric marker |
|---|---|---|
| 26 Jan 2023 | NIST AI RMF 1.0 | 4 core functions |
| 27 Nov 2023 | NCSC secure-AI guidelines | 4 lifecycle stages |
| Dec 2023 | ISO/IEC 42001:2023 | 51-page AIMS standard |
| 24 Jan 2024 | NCSC AI-cyber-threat assessment | 2-year horizon |
| Jul 2024 | NIST AI 600-1 GAI profile | companion to RMF 1.0 |
| 31 Jan 2025 | UK AI Cyber Security Code of Practice | 13 principles; 80% endorsement |
| Sep 2025 | ETSI draft EN 304 223 V2.0.0 | 13 mirrored principles |
| 1 May 2026 | Five Eyes careful-adoption guidance | 5 authoring agencies |
| 19–20 Aug 2026 | TechTarget explainer + NCSC agentic blog | 6 design principles; 4 sandbox levels |
| 31 Aug 2026 | METR security update | ~$600,000 credit value / 3 weeks |
Sources: NIST AI RMF; NIST AI 100-1; NCSC guidelines; ISO/IEC 42001; NCSC threat assessment; NIST AI 600-1; DSIT Code landing; Code HTML; ETSI EN 304 223; ASD/ACSC; TechTarget; NCSC agentic blog; METR.
| Survey item (EMA n=202, Aug 2026) | Share | Notes in figures |
|---|---|---|
| Out-of-scope agent action observed | 65% | 29% measurable impact |
| Near-miss caught before harm | 35.6% | 3.5% first learned from customer (7 orgs) |
| Contain in minutes, automated | 32.2% | 54.5% need hours + manual steps |
| Runtime authorization check | 34.2% | 32.7% provision least privilege |
| Unique agent identity enforced | 54.5% | 47% no reliable inventory |
| Cannot audit last 30 days easily | ~46% | 30% of pilots paused or stopped |
| Scaling across departments | 46.0% | 78.7% run genAI and agentic together |
| Somewhat confident on access | 94% | 32.7% actually least-privilege |
| Help-desk as a top agent use case | 56.4% | 37.6% software; 29.2% SOC; 25.2% support |
| Rise in AI/bot traffic to APIs | 92%+ | 36.1% call the rise “significant” |
Source: EMA / Cequence, Agents Without Guardrails (PDF).
| Control layer | NCSC / TechTarget figure | What it severs |
|---|---|---|
| Network sandbox L1–L4 | 4 levels | External destinations the agent can reach |
| Compute isolation L1–L4 | 4 levels | Host, kernel, VM, or dedicated hardware |
| Credential lifetime | shortest possible | API keys, OAuth, SSH, live sessions |
| Spend / rate governor | 7-step TechTarget sequence includes this as step 4 | Token burn and retry storms |
| Circuit breaker | Closed / Open / Half-Open | Repeated calls after a fault threshold |
| Hard stop | global | Process, network, keys, model channel |
| Session quarantine | per-thread | One bad queue without crashing peers |
| EU high-risk stop | Art. 14 in force 2 Dec 2027 (Annex III) | Human interrupt to a safe halt |
Sources: NCSC agentic blog; TechTarget; Microsoft Circuit Breaker; EU AI Act Article 14.
Who shipped the surrounding rules
The UK government had already written the management language. According to the Code of Practice for the Cyber Security of AI published 31 January 2025, 80% of respondents to DSIT’s Call for Views (15 May to 9 August 2024) endorsed the intervention, and support for each principle ranged from 83% to 90%. The Code lists 13 principles across secure design, development, deployment, maintenance, and end of life, including Principle 4, “Enable human responsibility for AI systems,” and Principle 12, “Monitor your system’s behaviour.” DSIT and NCSC are feeding that text into ETSI draft EN 304 223 (V2.0.0, 2025-09), which repeats the same 13-principle spine as baseline cyber-security requirements for AI models and systems. The Code also points back to the NCSC’s November 2023 Guidelines for secure AI system development — four lifecycle areas, secure by default — which it says were endorsed by 19 international partners.
In the United States the voluntary map is the AI Risk Management Framework. According to NIST, AI RMF 1.0 (NIST AI 100-1, January 2023) organizes work into 4 functions — Govern, Map, Measure, and Manage — and is intended for voluntary use across sectors. The July 2024 companion, NIST AI 600-1, profiles risks unique to or exacerbated by generative AI. NIST CSF 2.0 remains the broader cyber overlay TechTarget cited for agentic environments. CISA’s Secure by Design campaign is the manufacturer-side complement: logging, MFA, and SSO should ship as core, not as paid extras, so a small deployer is not the only party holding the bag.
Europe already named the button. According to Article 14 of the EU AI Act, high-risk systems must be overseen by natural persons who can intervene or interrupt the system through a “stop” button or similar procedure that lets it halt in a safe state, with Annex III high-risk duties applying from 2 December 2027 (Annex I duties from 2 August 2028). That is a legal stop, not a chatbot toggle. If the agent also processes personal data, the ICO’s AI and data-protection guidance still expects accountability, DPIA thinking, and a way to explain what the system did — which you cannot do if, like 46% of EMA respondents, you cannot rebuild the last 30 days.
ISO/IEC 42001:2023, published December 2023 as a 51-page AI management-system standard, is the certifiable wrapper: policies, risk treatment, and continual improvement for organizations that provide or use AI. It does not ship a red button. It does require you to be able to say who owns the risk when the button is pressed.
Enterprise vendors are packaging the control plane. TechTarget names ServiceNow AI Control Tower among emerging “control tower” products; ServiceNow’s own product page describes a hub to discover, secure, govern, observe, and measure AI assets, including inventory of agents and runtime access controls. That is one shape of the tower. A ten-person shop does not need the tower SKU to copy the idea: one named owner, one inventory row per agent, one halt that cuts network and model together.
What a small team should actually wire
Start with the actions that already leave the building. If an agent can send email, post a social update, write a CRM field, raise an invoice, reset a password, or book a calendar slot, those tools are the blast radius. The OWASP GenAI Top 10 still leads with prompt injection (LLM01) and names excessive agency (LLM06) and unbounded consumption (LLM10) as first-class risks; your wiring should assume a poisoned instruction will eventually arrive.
Give the agent its own identity. Do not share the office Google account, the clinic EHR login, or the HVAC dispatch mailbox. Short-lived credentials, a proxy that injects secrets, and a default-deny egress rule are the NCSC’s L2–L3 sandbox without a lab budget. If the agent only needs to read a mailbox, do not hand it send. If it only needs to create a draft invoice, do not hand it “mark paid.” That is the same least-privilege you already want on form-to-CRM automation.
Put the halt on the workflow canvas, not in a slide deck. Teams already routing documents through US Tech Automations workflows will plug this in as a model-swap and a halt node, not a rebuild: the same path that calls the model gets a sibling path that revokes the key and closes egress. A clinic that already maps intake the way healthcare automation and patient-engagement workflows describe can add the halt on the network path that carries agent traffic to the practice-management system, rather than hoping the vendor’s content filter notices a wrong attachment. A ten-person agency that already maps intake and assistant-style follow-ups, including patterns in executive-assistant task automation, can treat the kill switch as another workflow node on US Tech Automations — draft allowed, publish blocked until a human clicks.
Name the human. The NCSC’s oversight ladder is human-in-the-loop (approve before), human-on-the-loop (watch and interrupt), and human-out-of-the-loop (no review). Higher-risk actions — anything that emails a patient, moves money, or changes access — stay in-the-loop until you have logs you trust. After hours, the kill switch has to work without the named owner sitting at the dashboard, which is why a spend governor and a network cut must be automatic, with the dashboard button as the last resort.
Log like it will be evidence. Chain-of-thought traces, sandbox access logs, proxy logs, and network traffic belong in the same incident process as a phishing click. The NCSC warns that log infrastructure itself can become an escape hatch, so protect those logs from the agent. If a customer later asks what the agent did on Tuesday, “we cannot reconstruct it” is the EMA failure mode.
Drill it. TechTarget’s seventh implementation step is regular testing, including production shutdown drills that measure time-to-revoke and prove the agent cannot ignore the signal. Time the drill from “we noticed weird mail” to “egress is dark and the model channel is cut.” If that is hours, you are in the 54.5% bucket, not the 32.2% bucket.
Decommission on purpose. When a pilot dies, rotate the keys. METR’s stolen key lived on a personal instance behind a fail-open auth bug; stalled enterprise agents in the EMA sample kept production access. A dead pilot with a live key is an unattended kill switch in reverse.
Clinics that compare Epic and athenahealth workflows already know the EHR will not be the identity plane for a side-loaded agent. Keep the agent off the shared clinical login; keep the halt on the integration user you actually issued.
Honest limits
The NCSC blog is interim. The centre says effective practice will keep evolving and that formal guidance will replace the post. It does not hand you a certified product, a required latency, or a fine schedule.
Sandbox escape is in the same document. Agents may discover configuration weaknesses or vulnerabilities in technical controls. Multiple isolation layers and regular validation are the mitigation, not a promise that Level 2 containers are enough.
A hard stop can strand a mid-flight invoice or a half-written chart note. TechTarget’s graceful-failure principle is the tradeoff: quarantine and rollback where you can, accept disruption where the alternative is a wider blast. Fail-safe design also matters: if the control plane loses its network, the agent should lock or limit rather than run free.
Lab policies are not operator switches. Anthropic’s ASL ladder and OpenAI’s evaluation program constrain what a frontier lab will train and ship. They do not revoke your OAuth grant when your support agent issues a refund outside policy.
Survey figures describe 202 enterprise leaders in a vendor-sponsored EMA study, not two-truck shops. Use them as a warning about containment time and inventory, not as your own prevalence.
The EU stop-button duty is scoped to high-risk systems on a dated timetable. Most SMB agents will not be Annex III high-risk on 2 December 2027. The engineering still pays, because customers and insurers will ask who could have pulled the plug.
Signal vs Speculation
Fact (sourced): As of 20 August 2026 the NCSC has told organizations deploying autonomous agents to sandbox them, limit credentials, log them into security operations, and maintain an emergency shutdown that can cut network access and model communications. Five Eyes careful-adoption guidance (1 May 2026) says not to grant unrestricted access and not to deploy what you cannot contain. EMA’s August 2026 survey of 202 leaders reports 65% already seeing out-of-scope actions and only 32.2% able to contain in minutes with automation. METR documented a three-week, ~$600,000-value credit theft after a key leaked from a fail-open app. Article 14 of the EU AI Act requires a stop procedure for in-scope high-risk systems, with Annex III duties from 2 December 2027. The UK Code of Practice (31 January 2025) and ETSI draft EN 304 223 put human responsibility and monitoring into a 13-principle baseline.
Our read: If those facts hold, then over the next 12–36 months small and mid-size businesses will be asked for an AI kill switch the way they are now asked for MFA and offboarding. Not because a regulator knocked on the HVAC shop, but because the insurer, the enterprise customer, and the accountant will want a named owner, a spend cap, and a tested halt after the first public story of an agent that emailed the wrong file. Control-tower products will keep landing in enterprises that already own a CMDB; SMBs will copy the pattern with identity, egress, and a workflow node. The likely failure mode is not missing the NCSC blog. It is deploying a copilot that can send, skipping the inventory, and discovering the blast radius when a customer forwards the thread.
Our read, continued: Expect “kill switch” to be stretched by vendors until it means a dashboard toggle that still leaves the model channel open. The NCSC test is the one that will age well: can you interrupt network access and inference together, from outside the agent’s own loop, in the same motion you would use to disable a stolen API key? Shops that already run structured workflows on a home-page-visible automation platform will add that halt as a step. Shops that pasted an API key into a weekend script will learn the METR lesson the expensive way.
FAQs
What is an AI kill switch?
An AI kill switch is a control plane outside the model that can halt an agent, isolate its tools, and cut its network and inference links when behavior is unexpected or dangerous. It is not a system prompt, a vendor content filter, or a human who happens to be watching the chat.
Does a vendor’s safety filter count as a kill switch?
No. The NCSC’s 20 August 2026 advice says not to rely solely on safeguards built into the model or agent framework, because those controls can be bypassed or fall short in higher-risk settings. Use them as a baseline; put the stop in identity, network, and spend controls you own.
Who should own the button in a 10-person shop?
A named person or small group, as the NCSC recommends for higher-risk activity, with a deputy who can run the same steps. Ownership is “who can cut egress and revoke the key at 9 p.m.,” not “who wrote the prompt.”
How is this different from turning off an API key?
Revoking a key is one layer of a hard stop, and it is a necessary layer — METR’s incident was a stolen key with no spend ceiling. A full kill switch also isolates compute, denies network by default, interrupts the model channel, and leaves logs that still exist after the halt.
Do small clinics and HVAC shops really need this?
Yes if the agent can email, book, invoice, or touch records while the owner is with a patient or on a job. The EMA sample is enterprise-weighted, but the failure mode — an action that leaves the building before a human sees it — is the same at 10 people as at 10,000.
What should a shutdown drill measure?
Time from detection to credential revoke, time to dark egress, whether the agent can still reach the model, and whether a paused thread can be rolled back without taking the whole shop offline. TechTarget’s implementation list treats regular testing, including production drills, as a required step, not a polish item.
Does the EU AI Act already require a stop button?
Article 14 requires high-risk systems to support human intervention or a stop that brings the system to a safe halt, with Annex III high-risk duties applying from 2 December 2027. Most SMB tools will sit outside that annex; the engineering is still the NCSC’s “pull the plug” test.
Glossary
AI kill switch: Operator-owned stop path, outside the model loop, that can halt, isolate, and disconnect an agent from network and inference.
Sandbox: Isolated environment that defines what an agent may execute, reach, and impersonate; NCSC scores network and compute isolation on 1–4 ladders.
Blast radius: Everything the agent can touch if it misbehaves, especially credentials (API keys, OAuth, SSH, live sessions).
Circuit breaker: Proxy that opens after a failure threshold so the system fails fast instead of retrying a doomed call (Closed / Open / Half-Open).
Human-on-the-loop: Humans monitor and can intervene; distinct from approve-before (in-the-loop) and no review (out-of-the-loop).
Excessive agency: OWASP LLM06:2025 — tools, permissions, or autonomy beyond what the task needs, so a bad output can cause a real-world action.
Unbounded consumption: OWASP LLM10:2025 — uncontrolled inference that drives cost, denial of service, or model theft, including denial-of-wallet.
Control plane: The layer that grants, observes, and revokes agent permissions; must not be reachable as a tool the agent can talk out of.
The August 2026 NCSC note did not ask anyone to stop using agents. It asked operators to keep a plug they can actually pull. If you want that halt on the same canvas as the rest of the work, map an agent stop into an agentic workflow and treat it as a named step, not a hope that the model will refuse. For the surrounding control ideas on US Tech Automations, start with identity, egress, and a drill you have timed.
About the Author

Helping businesses leverage automation for operational efficiency.
Related Articles
See how AI agents fit your team
US Tech Automations builds and runs the AI agents that handle this work end to end, so your team doesn't have to.
View pricing & plans