open-agents-ai 0.187.81 → 0.187.82
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 +16 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278562,6 +278562,14 @@ 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
|
+
}
|
|
278565
278573
|
/** Callback to get available slash commands for suggestion matching */
|
|
278566
278574
|
_commandListProvider = null;
|
|
278567
278575
|
/** Callback to apply a selected suggestion to the input line */
|
|
@@ -311628,7 +311636,15 @@ ${result.content.slice(0, 2e3)}${result.content.length > 2e3 ? "\n[truncated]" :
|
|
|
311628
311636
|
return;
|
|
311629
311637
|
}
|
|
311630
311638
|
if (pasteBuffer.length === 0 && input.startsWith("/")) {
|
|
311639
|
+
if (statusBar.isActive) {
|
|
311640
|
+
statusBar.lockFooter();
|
|
311641
|
+
statusBar.syncBegin();
|
|
311642
|
+
}
|
|
311631
311643
|
processLine(input);
|
|
311644
|
+
if (statusBar.isActive) {
|
|
311645
|
+
statusBar.syncEnd();
|
|
311646
|
+
setTimeout(() => statusBar.unlockFooter(), 0);
|
|
311647
|
+
}
|
|
311632
311648
|
return;
|
|
311633
311649
|
}
|
|
311634
311650
|
pasteBuffer.push(input);
|
package/package.json
CHANGED