What is an AI kill switch?

One control that halts every agent at once, for the moment a team needs to stop and think.

An admin approves every new account by hand. Nothing is created until then. We reply by email; no newsletter, no sequence.

app.salescrew.io/inbox
The unified reply inbox with classified threads

Kill switchAn AI kill switch is a single control that stops every automated agent in a system at once, regardless of their individual modes. Its purpose is to make the worst case recoverable in one action.

Why it matters

Something will eventually go wrong with an automated system: a bad prompt update, a data feed that starts sending garbage, a guardrail with a bug. When that happens, the question is how fast a person can make it stop. If a system has one agent, pausing it might be one click. If it has eight agents each with their own on/off switch, someone has to find, remember and click all eight while the problem keeps happening.

A kill switch is a single action that overrides every agent's mode at once, moving all of them to off regardless of what they were doing. It does not need to be the normal way of managing agents day to day; agent mode still does that per action type. The kill switch exists for the rare moment when the normal controls are too slow, and it should be reachable by more than one person so it is never blocked on one admin being available. In SalesCrew, the kill switch sits on the same screen as agent controls, one click from any admin view.

How a kill switch is used

  1. 1

    An incident is noticed

    An agent is doing something wrong, or a person is not sure and wants to be safe.

  2. 2

    The kill switch is triggered

    One action, reachable from wherever agents are managed.

  3. 3

    Every agent moves to off

    Regardless of what mode each one was running in before.

  4. 4

    The cause is investigated

    With agents stopped, the team can look at logs without new actions piling up.

  5. 5

    Agents are restarted one at a time

    Each is brought back deliberately once its issue is understood, not all at once.

The mistake to watch for

Only being able to pause agents one by one. During an incident nobody has time to find eight toggles.

Questions

How is a kill switch different from agent mode set to off?
Agent mode off is a per-agent, per-action setting used in normal operation. A kill switch is one action that forces every agent to that state at once, built for speed during an incident rather than day-to-day control.
Who should be able to use the kill switch?
More than one person. If it depends on a single admin being reachable, it is not reliable during an actual incident.
Does the kill switch undo actions an agent already took?
No. It stops future actions. Undoing what already happened, like an email already sent, depends on the audit log and whatever reversal that specific action supports.