Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
efdecf9
🤖 fix: detect pending ask_user_question within latest turn
jaaydenh Mar 19, 2026
5696c31
🤖 fix: suppress interruption UI for pending question turns
jaaydenh Mar 19, 2026
cff3aa7
🤖 fix: preserve error retry states for failed question turns
jaaydenh Mar 19, 2026
2d0fca8
🤖 fix: use authoritative awaiting-question signal in retry gating
jaaydenh Mar 19, 2026
f28e8a4
🤖 fix: suppress interrupted rows with authoritative awaiting state
jaaydenh Mar 19, 2026
a66fd6c
🤖 fix: ignore ephemeral plan-display rows for awaiting detection
jaaydenh Mar 19, 2026
e2703d5
🤖 fix: treat plan-display rows as decorative in interruption checks
jaaydenh Mar 19, 2026
ed9943f
🤖 fix: scope plan-display skipping to interrupted-row turn resolution
jaaydenh Mar 19, 2026
6105ed2
🤖 fix: ignore plan-display previews in ask-user waiting fallback
jaaydenh Mar 19, 2026
aaa6e52
🤖 fix: require latest unfinished part to be ask_user_question for awa…
jaaydenh Mar 19, 2026
bd89e87
🤖 fix: keep interruption visible when output continues after question
jaaydenh Mar 19, 2026
34d8778
🤖 fix: prefer later tool failures over ask-user awaiting state
jaaydenh Mar 19, 2026
9969383
🤖 fix: align retry suppression with ask-user question tail state
jaaydenh Mar 19, 2026
b929481
🤖 fix: keep pending ask-user turns out of startup auto-retry
jaaydenh Mar 19, 2026
74cb31e
🤖 fix: treat failed redacted tools as interruption tails
jaaydenh Mar 19, 2026
8e00324
🤖 fix: keep stale ask-user tool rows from showing as executing
jaaydenh Mar 19, 2026
38c4428
🤖 fix: keep failed-tail ask-user prompts answerable
jaaydenh Mar 19, 2026
9b3e527
🤖 fix: preserve pending ask-user recovery when streams error
jaaydenh Mar 19, 2026
1a4dbb8
🤖 fix: only suppress retry UI when awaiting question is visible
jaaydenh Mar 19, 2026
f039f0b
Use authoritative awaiting flag for interruption barriers
jaaydenh Mar 19, 2026
bc8bc13
Clear awaiting state when question row is truncated
jaaydenh Mar 19, 2026
8ea39e8
Treat post-question tool output as interrupted tail state
jaaydenh Mar 19, 2026
f6fcd1e
Suppress interrupted marker for answerable question rows
jaaydenh Mar 19, 2026
0de1cde
Preserve persisted ask_user_question recovery semantics
jaaydenh Mar 19, 2026
e5dec82
Handle redacted and completed tool tails in retry recovery
jaaydenh Mar 19, 2026
2a9d63a
Keep sibling pending-question recovery paths intact
jaaydenh Mar 19, 2026
a739e6d
Keep pending question state across truncation and restart
jaaydenh Mar 19, 2026
0b562f3
Clear awaiting flag for interrupted ask_user_question tails
jaaydenh Mar 19, 2026
42b18f6
Avoid awaiting fallback on errored truncated turns
jaaydenh Mar 19, 2026
989783c
Keep all pending ask_user_question tool calls answerable
jaaydenh Mar 19, 2026
43b3950
Keep awaiting question rows visible and sibling tools pending
jaaydenh Mar 19, 2026
87ac791
Pin only latest answerable ask_user_question rows
jaaydenh Mar 19, 2026
36840c1
Align startup ask_user_question pending detection with interrupted tails
jaaydenh Mar 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/browser/components/ChatPane/ChatPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,8 @@ export const ChatPane: React.FC<ChatPaneProps> = (props) => {
workspaceState.messages,
workspaceState.pendingStreamStartTime,
workspaceState.runtimeStatus,
workspaceState.lastAbortReason
workspaceState.lastAbortReason,
workspaceState.awaitingUserQuestion
)
: null;

Expand Down Expand Up @@ -860,7 +861,11 @@ export const ChatPane: React.FC<ChatPaneProps> = (props) => {
/>
)}
{isAtCutoff && <EditCutoffBarrier />}
{shouldShowInterruptedBarrier(msg) && <InterruptedBarrier />}
{shouldShowInterruptedBarrier(
msg,
deferredMessages,
workspaceState.awaitingUserQuestion
) && <InterruptedBarrier />}
</React.Fragment>
);
})}
Expand Down
Loading