fix(ui): queue follow-ups after aborted turns#2374
Open
BeiZi6 wants to merge 1 commit into
Open
Conversation
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.
What
Queue ordinary follow-up prompts submitted after a turn has already been interrupted, instead of treating them as mid-turn steering that the abort path will clear. This covers the TUI path and the attached dashboard submit bridge.
Why
Fixes #2335. After Esc/Ctrl+C aborts a running turn, the UI still briefly accepts busy-turn input. That input previously went through
loop.steer(...); the abort cleanup clears the steer queue, so the first corrective prompt appeared to do nothing and the user had to send it again.How to verify
npm test -- tests/turn-interrupt.test.tsnpx biome check src/cli/ui/App.tsx src/cli/ui/turn-interrupt.ts tests/turn-interrupt.test.ts src/i18n/types.ts src/i18n/EN.ts src/i18n/zh-CN.ts src/i18n/JA.ts src/i18n/de.tsnpm run typechecknpm run verifyNote:
npm run verifyexits successfully and reports the existingsrc/cli/ui/PlanPanel.tsxtype-only import warning, which is outside this PR.Checklist
npm run verifypasses locally (lint + typecheck + tests + comment-policy gate)Co-Authored-By: Claudetrailer in commitsCHANGELOG.md— release notes are maintainer-written at release time