erosolar-cli 1.7.148 → 1.7.149

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2735,11 +2735,19 @@ export class InteractiveShell {
2735
2735
  this.pinnedChatBox.enableScrollRegion();
2736
2736
  // Suppress readline echo so typed characters only appear in persistent input box
2737
2737
  this.suppressReadlineOutput();
2738
+ // Set up periodic render timer to ensure pinned chat box stays visible during streaming
2739
+ const renderInterval = setInterval(() => {
2740
+ if (this.isProcessing && this.pinnedChatBox.isActive()) {
2741
+ this.pinnedChatBox.forceRender();
2742
+ }
2743
+ }, 2000); // Render every 2 seconds during streaming
2738
2744
  // Enable streaming for real-time text output (Claude Code style)
2739
2745
  await agent.send(request, true);
2740
2746
  await this.awaitPendingCleanup();
2741
2747
  this.captureHistorySnapshot();
2742
2748
  this.autosaveIfEnabled();
2749
+ // Clear the render interval when streaming completes
2750
+ clearInterval(renderInterval);
2743
2751
  // Track metrics with Alpha Zero 2
2744
2752
  const elapsedMs = Date.now() - requestStartTime;
2745
2753
  this.alphaZeroMetrics.recordMessage(elapsedMs);