You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Live "Running..." bash modal stuck after a JSONL session refresh. When the matching tool_result for an open live bash modal arrived after the live look-ahead window had already closed, the modal stayed in isLive: true with no resolved output. AgentTerminalPane now fires onLiveBashResultLinked(command, output) the first time a Bash tool_use in dedupedHistory gains its _bashOutput link, threaded through SplitTerminalLayout to GuakeOutputPanel, which swaps the matching live modal to the resolved output and clears isLive. The reported-id set is keyed by tool_use id and reset on agentId change so it never fires twice per result.
Technical Details
New optional prop AgentTerminalPaneProps.onLiveBashResultLinked (also forwarded by SplitTerminalLayout).
GuakeOutputPanel.handleLiveBashResultLinked matches by prev.command and only acts while prev.isLive is true.