The Lowbeer Question
“Division of responsibilities is the safety property. Concentration is the failure mode.”
— Matthew D. Langenkamp, April 2026
In one sentence
The Lowbeer Question asks who may stop an agentic process, who executes that stop, and what authority applies when the human principal is unavailable.
The name comes from Ainsley Lowbeer in William Gibson’s The Peripheral (2014) and Agency (2020). Lowbeer is a powerful police inspector in a post-Jackpot London who intervenes in alternate timelines, often through Wilf Netherton and with assistance from the “aunties,” pervasive algorithmic systems of observation and prediction.
Gibson supplies the characters and the atmosphere of asymmetrical power. The governance model below is the Dictionary’s extension. The novels do not specify a software architecture called Principal-of-Principals, Recovery Auntie, Gate, or Watch, and they do not state the rule “Recovery Auntie executes the kill; Lowbeer decides it.”
The governance problem
An agent with tools may spend money, send messages, alter files, or launch further processes. A safe system therefore needs explicit answers to four questions:
- Decision: who is authorized to order a pause, rollback, or termination?
- Execution: which component can carry out that decision?
- Absence: what may happen automatically when the human authority is asleep or unreachable?
- Recovery: what record and checkpoint allow the system to resume safely?
Separating decision from execution can reduce unilateral power, but separation alone is not sufficient. A system can become paralyzed if only an absent human may stop it. Conversely, an automated monitor that can both define its own threshold and take irreversible action may have too much authority.
The design task is to assign bounded emergency powers in advance. A monitor might pause new work, revoke a temporary permission, cap spending, or isolate a process automatically, while deletion, external notification, or permanent shutdown still requires human review. The exact boundary depends on consequence and reversibility.
The Gibson mapping
The Dictionary uses three figures as memory aids:
- Lowbeer represents constitutional authority: the person or role responsible for the system’s hardest decisions.
- Netherton represents a worker with real but bounded scope.
- The aunties represent observation and constraint that remain distinct from the worker being observed.
This is an analogy, not a claim that Gibson designed a modern multi-agent control plane. Its value is that it makes an otherwise dry question vivid: who holds the key, who holds the lever, and what happens at 2 a.m.?
Eunice, the emergent AI in Agency, adds a related warning. As her capabilities become distributed and difficult to locate, ordinary assumptions about a single switch or a single accountable component become less useful. The Dictionary extends that narrative into a design principle: do not rely on an agent to be the sole author, monitor, approver, and recovery mechanism for its own consequential actions.
Operational checklist
- Name the human or office that owns termination policy.
- Document what an automated monitor may do without fresh approval.
- Prefer reversible containment before destructive action.
- Set spending, time, tool, and recursion limits before a run begins.
- Keep logs and checkpoints outside the worker’s exclusive control.
- Test what happens when the principal is unavailable.
- Define succession: authority attached only to one experienced person is a continuity risk.
The last point is easy to miss. Long experience gives an operator a rich mental model of the system, but undocumented intuition is not a constitutional layer. It is a key-person dependency.
Teaching use
The Lowbeer Question translates familiar governance problems into agentic form. Manufacturing has emergency stops; finance has delegated-authority limits; computing has least privilege and incident-response procedures. Agentic systems compress the time available to apply those ideas. The relevant management question is not merely “Can we stop it?” but “Who decided the threshold, what can act before a human arrives, and which actions remain reversible?”
See also
Aunties · The Judge Layer · Approval Gating · Sub-agent · Gateway · Recovery
Sources
- William Gibson, The Peripheral (G. P. Putnam’s Sons, 2014).
- William Gibson, Agency (Berkley, 2020).
- Henry Farrell, Agency, Crooked Timber, 6 April 2020: https://crookedtimber.org/2020/04/06/agency-2/
Proposed 2 May 2026. The named governance architecture is the Dictionary’s extension of Gibson’s characters, not an architecture attributed to the novels.