Skip to content

feat(cli): press Esc to interrupt a running turn#3255

Open
amazd wants to merge 3 commits into
ultraworkers:mainfrom
amazd:esc-interrupt
Open

feat(cli): press Esc to interrupt a running turn#3255
amazd wants to merge 3 commits into
ultraworkers:mainfrom
amazd:esc-interrupt

Conversation

@amazd

@amazd amazd commented Jun 21, 2026

Copy link
Copy Markdown

Summary

Press Esc to gracefully interrupt a running turn and return to the REPL prompt with the session intact. Previously the only way to stop a long-running turn was Ctrl+C, which left the in-flight request running.

This lands the feature in three layers:

  1. TurnInterruptSignal (runtime) — a shared flag the conversation loop polls at safe points (before each model request, on stream failure, before each pending tool). When set, the turn winds down instead of failing: pending tool_uses get synthesized error tool_results so every tool call stays answered and the session remains valid for the next request. TurnSummary gains an interrupted field and the tracer records a turn_interrupted event.

  2. In-flight request cancellation (CLI)AnthropicRuntimeClient races the streaming request against the interrupt flag with tokio::select!; tripping the flag drops the request future, aborting the HTTP stream for every provider. The per-turn Ctrl+C monitor now interrupts the whole turn rather than only aborting hooks.

  3. Esc key listener (CLI)EscapeInterruptMonitor switches stdin to a minimal non-canonical mode (echo/line-buffering off; ISIG/OPOST untouched, unlike full raw mode) for the duration of a turn and watches for a lone ESC byte. Arrow/function-key escape sequences are recognized and swallowed. Permission prompts that read whole lines mid-turn coordinate stdin ownership via StdinPromptGate, which restores canonical mode while a prompt holds a lease.

The spinner shows (esc to interrupt) and WorkerStatus/WorkerEventKind gain an interrupted lifecycle state. Non-terminal stdin and non-unix platforms skip the listener; Ctrl+C interruption still works there.

Closes #3196.

Testing

  • scripts/fmt.sh --check — clean
  • Runtime: interrupt_before_first_request_skips_the_api_call, interrupt_after_stream_synthesizes_results_for_pending_tools, stream_error_during_interrupt_is_reported_as_interruption, interrupted_status_serializes_and_displays_as_snake_case — pass
  • CLI: escape-byte classification unit tests (lone ESC vs. escape sequence vs. other) — pass

🤖 Generated with Claude Code

amazd added 3 commits June 10, 2026 12:31
Add a shared interrupt flag that the conversation loop polls at safe
points: before each model request, when a stream call fails, and before
each pending tool execution. When the flag is set the turn winds down
instead of failing: tools that have not run yet receive synthesized
error tool_results so every tool_use stays answered and the session
remains valid for the next request.

TurnSummary gains an interrupted field so callers can distinguish a
user-initiated stop from a completed turn, and the session tracer
records a turn_interrupted event (with iteration and phase) instead of
turn_failed / turn_completed.

Groundwork for Esc-to-interrupt (ultraworkers#3196): a follow-up wires this signal
into the streaming API client and the CLI input listener.
Wire the runtime's TurnInterruptSignal through the CLI turn lifecycle:

- AnthropicRuntimeClient races the streaming request against the
  interrupt flag with tokio::select!; when the flag trips, the request
  future is dropped, aborting the in-flight HTTP stream for every
  provider variant.
- BuiltRuntime installs the shared signal into both the conversation
  loop and the API client.
- The per-turn Ctrl+C monitor now interrupts the whole turn instead of
  only aborting running hooks, so Ctrl+C mid-turn returns to the REPL
  prompt with partial output instead of leaving the request running.
- The REPL spinner reports an interrupted turn distinctly from a
  completed one.

Part of the Esc-to-interrupt work (ultraworkers#3196); the Esc key listener lands
separately.
While a turn runs the main thread is blocked in the conversation loop,
so nothing reads the keyboard. Add an EscapeInterruptMonitor that, for
the duration of a turn on an interactive terminal, switches stdin to a
minimal non-canonical mode (echo/line-buffering off; ISIG and output
processing untouched, unlike full raw mode) and polls for a lone ESC
byte. Escape sequences such as arrow keys are recognized and swallowed.
On Esc it trips the TurnInterruptSignal: the in-flight request is
aborted and control returns to the REPL prompt with the session intact.

Permission prompts read whole lines from stdin mid-turn, so stdin
ownership is coordinated through a StdinPromptGate: while a prompt holds
a lease the listener restores canonical mode and stops consuming bytes.

Also:
- spinner shows '(esc to interrupt)' and the banner/help mention Esc
- WorkerStatus/WorkerEventKind gain an 'interrupted' lifecycle state
- non-terminal stdin and non-unix platforms skip the listener; Ctrl+C
  interruption still works there

Closes the Esc-to-interrupt feature request (ultraworkers#3196).
jcdauchy added a commit to jcdauchy/claw-code that referenced this pull request Jun 22, 2026
@DereC4

DereC4 commented Jun 23, 2026

Copy link
Copy Markdown
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Feature Request: Escape key to interrupt a running agent turn

2 participants