FG—01AI Design Field Guide

Search the field guide

Search chapters, principles, patterns, worksheets, and glossary terms

PTN—33

Interrupt and steer

Let people stop or redirect the AI mid-flight without losing completed work or starting the task over.

Long-running AI work creates a new failure mode: watching the system head confidently in the wrong direction and having no way to say so. Interrupt-and-steer gives people a live grip on work in progress — a stop that actually stops, and a way to inject new instruction that redirects the run instead of restarting it. The difference between “cancel and re-prompt from scratch” and “keep going, but use the staging database” is the difference between supervising an agent and babysitting one.

A real interrupt has two obligations. First, it must be immediate and safe: the agent finishes or rolls back the atomic operation it is inside, then halts — it does not sprint through three more tool calls after you hit stop. Second, it must preserve state. Work completed before the interrupt survives; the transcript shows where things stood; the person can resume, redirect, or abandon from an honest checkpoint rather than a corrupted half-state.

Steering is the higher-value half of the pattern. Most interruptions are not “stop everything” — they are course corrections: wrong assumption, better idea, new information. Let people type into the run. The best implementations queue the message, fold it into the agent’s context at the next safe point, and visibly acknowledge the correction so people trust it landed.

Anatomy

Fig. 01Interrupt and steerLive specimen

Assistant · drafting reply

A running agent with a live stop control and an open composer: people can halt the run or inject a correction without restarting.

  1. 1Live activity feed. The stream of steps in progress — you cannot steer what you cannot see.
  2. 2Stop control. Always visible while the run is active; halts at the next safe boundary, never mid-write.
  3. 3Steering composer. A text input that stays open during the run so corrections can be typed the moment a wrong turn appears.
  4. 4Acknowledgment. The agent visibly registers the injected instruction — “Switching to the staging database” — so people know the correction took.

When to use

Design considerations

Pitfalls

In the wild

Claude Code
Escape interrupts the agent mid-run while preserving the session; you can then redirect with a new message instead of restarting the task.
ChatGPT
Shows a stop button during generation that halts the stream and keeps the partial response in the transcript for follow-up.
Cursor
Agent runs can be stopped mid-flight, and new instructions in the chat redirect the agent while completed edits remain in the workspace.
Midjourney
Long image jobs can be cancelled while queued or in progress, rather than forcing people to wait out a generation they already know is wrong.

Principles served

Discussed in the guide