open-agents-ai 0.187.81 → 0.187.83
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.
- package/dist/index.js +24 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278562,6 +278562,21 @@ var init_status_bar = __esm({
|
|
|
278562
278562
|
unlockFooter() {
|
|
278563
278563
|
this._suppressStdinRedraw = false;
|
|
278564
278564
|
}
|
|
278565
|
+
/** Begin DEC 2026 synchronized output — terminal buffers all writes */
|
|
278566
|
+
syncBegin() {
|
|
278567
|
+
this.termWrite("\x1B[?2026h");
|
|
278568
|
+
}
|
|
278569
|
+
/** End DEC 2026 synchronized output — terminal displays all buffered writes atomically */
|
|
278570
|
+
syncEnd() {
|
|
278571
|
+
this.termWrite("\x1B[?2026l");
|
|
278572
|
+
}
|
|
278573
|
+
/** Force a complete footer redraw (public wrapper for renderFooterAndPositionInput) */
|
|
278574
|
+
redrawFooter() {
|
|
278575
|
+
if (!this.active)
|
|
278576
|
+
return;
|
|
278577
|
+
this.updateFooterHeight();
|
|
278578
|
+
this.renderFooterAndPositionInput();
|
|
278579
|
+
}
|
|
278565
278580
|
/** Callback to get available slash commands for suggestion matching */
|
|
278566
278581
|
_commandListProvider = null;
|
|
278567
278582
|
/** Callback to apply a selected suggestion to the input line */
|
|
@@ -311628,7 +311643,16 @@ ${result.content.slice(0, 2e3)}${result.content.length > 2e3 ? "\n[truncated]" :
|
|
|
311628
311643
|
return;
|
|
311629
311644
|
}
|
|
311630
311645
|
if (pasteBuffer.length === 0 && input.startsWith("/")) {
|
|
311646
|
+
if (statusBar.isActive) {
|
|
311647
|
+
statusBar.lockFooter();
|
|
311648
|
+
statusBar.syncBegin();
|
|
311649
|
+
statusBar.redrawFooter();
|
|
311650
|
+
statusBar.syncEnd();
|
|
311651
|
+
}
|
|
311631
311652
|
processLine(input);
|
|
311653
|
+
if (statusBar.isActive) {
|
|
311654
|
+
setTimeout(() => statusBar.unlockFooter(), 0);
|
|
311655
|
+
}
|
|
311632
311656
|
return;
|
|
311633
311657
|
}
|
|
311634
311658
|
pasteBuffer.push(input);
|
package/package.json
CHANGED