open-agents-ai 0.14.5 → 0.14.7
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 +6 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14817,10 +14817,7 @@ async function startInteractive(config, repoPath) {
|
|
|
14817
14817
|
const carousel = new Carousel();
|
|
14818
14818
|
let carouselLines = 0;
|
|
14819
14819
|
const version = getVersion();
|
|
14820
|
-
if (process.stdout.isTTY)
|
|
14821
|
-
process.stdout.write("\x1B[?1049h");
|
|
14822
14820
|
if (isResumed) {
|
|
14823
|
-
process.stdout.write("\x1B[2J\x1B[H");
|
|
14824
14821
|
renderInfo(`Updated to v${version} \u2014 picking up where you left off.
|
|
14825
14822
|
`);
|
|
14826
14823
|
} else {
|
|
@@ -15109,9 +15106,9 @@ async function startInteractive(config, repoPath) {
|
|
|
15109
15106
|
activeTask.runner.abort();
|
|
15110
15107
|
}
|
|
15111
15108
|
statusBar.deactivate();
|
|
15112
|
-
|
|
15113
|
-
|
|
15114
|
-
|
|
15109
|
+
const exitRows = process.stdout.rows ?? 24;
|
|
15110
|
+
process.stdout.write(`\x1B[${exitRows - 4};1H\x1B[J
|
|
15111
|
+
${c2.dim("Goodbye!")}
|
|
15115
15112
|
`);
|
|
15116
15113
|
rl.close();
|
|
15117
15114
|
process.exit(0);
|
|
@@ -15299,9 +15296,9 @@ Summarize or analyze this transcription as appropriate.`;
|
|
|
15299
15296
|
});
|
|
15300
15297
|
rl.on("close", () => {
|
|
15301
15298
|
statusBar.deactivate();
|
|
15302
|
-
|
|
15303
|
-
|
|
15304
|
-
|
|
15299
|
+
const closeRows = process.stdout.rows ?? 24;
|
|
15300
|
+
process.stdout.write(`\x1B[${closeRows - 4};1H\x1B[J
|
|
15301
|
+
${c2.dim("Goodbye!")}
|
|
15305
15302
|
`);
|
|
15306
15303
|
process.exit(0);
|
|
15307
15304
|
});
|
package/package.json
CHANGED