Skip to content

v1.106.2

Choose a tag to compare

@deivid11 deivid11 released this 28 May 16:41
· 24 commits to master since this release

What's New

Fixed

  • 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.