open-agents-ai 0.185.3 → 0.185.4
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 +15 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -51503,7 +51503,8 @@ async function handleUpdate(subcommand, ctx) {
|
|
|
51503
51503
|
const { execFileSync } = await import("node:child_process");
|
|
51504
51504
|
if (ctx.hasActiveTask?.())
|
|
51505
51505
|
ctx.abortActiveTask?.();
|
|
51506
|
-
ctx.
|
|
51506
|
+
ctx.stopBanner?.();
|
|
51507
|
+
ctx.deactivateStatusBar?.();
|
|
51507
51508
|
if (process.stdout.isTTY) {
|
|
51508
51509
|
process.stdout.write("\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[r\x1B[?25h\x1B[?1049l\x1B[2J\x1B[H\x1B[0m");
|
|
51509
51510
|
}
|
|
@@ -60936,6 +60937,10 @@ var init_status_bar = __esm({
|
|
|
60936
60937
|
clearTimeout(this._resizeTimer);
|
|
60937
60938
|
this._resizeTimer = null;
|
|
60938
60939
|
}
|
|
60940
|
+
if (this._processing) {
|
|
60941
|
+
this._brailleSpinner.stop();
|
|
60942
|
+
this._processing = false;
|
|
60943
|
+
}
|
|
60939
60944
|
this.stopAllMetrics();
|
|
60940
60945
|
const rows = process.stdout.rows ?? 24;
|
|
60941
60946
|
this.termWrite(`\x1B[1;${rows}r`);
|
|
@@ -67204,6 +67209,7 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
67204
67209
|
statusBar.deactivate();
|
|
67205
67210
|
if (carousel.isRunning)
|
|
67206
67211
|
carousel.stop();
|
|
67212
|
+
banner.stop();
|
|
67207
67213
|
voiceEngine.dispose();
|
|
67208
67214
|
if (memoryDb) {
|
|
67209
67215
|
try {
|
|
@@ -67213,6 +67219,14 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
|
|
|
67213
67219
|
}
|
|
67214
67220
|
rl.close();
|
|
67215
67221
|
},
|
|
67222
|
+
deactivateStatusBar() {
|
|
67223
|
+
statusBar.deactivate();
|
|
67224
|
+
},
|
|
67225
|
+
stopBanner() {
|
|
67226
|
+
banner.stop();
|
|
67227
|
+
if (carousel.isRunning)
|
|
67228
|
+
carousel.stop();
|
|
67229
|
+
},
|
|
67216
67230
|
async voiceToggle() {
|
|
67217
67231
|
const msg = await voiceEngine.toggle();
|
|
67218
67232
|
if (telegramBridge) {
|
package/package.json
CHANGED