open-agents-ai 0.184.87 → 0.184.89
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 +7 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -61248,9 +61248,12 @@ var init_status_bar = __esm({
|
|
|
61248
61248
|
return;
|
|
61249
61249
|
const w = process.stdout.columns ?? 80;
|
|
61250
61250
|
const overlay = renderHeaderButtons(w);
|
|
61251
|
-
if (overlay)
|
|
61252
|
-
|
|
61253
|
-
|
|
61251
|
+
if (!overlay)
|
|
61252
|
+
return;
|
|
61253
|
+
const writer = this._origWrite ?? process.stdout.write.bind(process.stdout);
|
|
61254
|
+
writer(overlay);
|
|
61255
|
+
if (this.writeDepth === 0) {
|
|
61256
|
+
this.renderFooterAndPositionInput();
|
|
61254
61257
|
}
|
|
61255
61258
|
}
|
|
61256
61259
|
/** Set a callback to re-render the banner after resize/redraw */
|
|
@@ -65421,7 +65424,7 @@ async function startInteractive(config, repoPath) {
|
|
|
65421
65424
|
const savedSettings = resolveSettings(repoRoot);
|
|
65422
65425
|
let restoredSessionContext = null;
|
|
65423
65426
|
if (process.stdout.isTTY) {
|
|
65424
|
-
process.stdout.write("\
|
|
65427
|
+
process.stdout.write("\x1B[2J\x1B[3J\x1B]50;ClearScrollback\x07\x1B[H");
|
|
65425
65428
|
process.stdout.write(`\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[?1015l\x1B[?1049h\x1B[48;5;233m\x1B[2J\x1B[3J\x1B[H\x1B[1;${process.stdout.rows ?? 24}r\x1B[?25l`);
|
|
65426
65429
|
const restoreScreen = () => {
|
|
65427
65430
|
process.stdout.write("\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[?1015l\x1B[?25h\x1B[?1049l");
|
package/package.json
CHANGED