feat(tui): show pausing/paused state for /pause#3156
Merged
Conversation
|
❌ PR Review Failed — The review agent encountered an error and could not complete the review. View logs. |
|
❌ PR Review Failed — The review agent encountered an error and could not complete the review. View logs. |
aheritier
approved these changes
Jun 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
/pausecommand interrupts the run loop at the next iteration boundary, blocking it until resumed with/pauseagain. However, users can't currently see that this has happened—the TUI remains responsive to input, but there's no visual feedback indicating that the agent has been paused or is in the process of pausing.This change adds visual state indicators to improve that experience. It introduces a
PausedEventemitted by the runtime when the run loop blocks at an iteration boundary, anisPaused()helper for checking pause state, and a three-state machine (None,Pausing,Paused) tracked per session in the TUI. ThehandleTogglePausefunction drives state transitions, and pause-related text is rendered directly in both the resize handle and lean-mode status views.Users now see "Pausing… (finishing current request)" during the transient pause window, and "⏸ Paused (/pause to resume)" once the agent has fully stopped, making the pause action's effect clear and actionable.