open-agents-ai 0.14.5 → 0.14.6

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14817,8 +14817,6 @@ 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
14821
  process.stdout.write("\x1B[2J\x1B[H");
14824
14822
  renderInfo(`Updated to v${version} \u2014 picking up where you left off.
@@ -15109,8 +15107,7 @@ async function startInteractive(config, repoPath) {
15109
15107
  activeTask.runner.abort();
15110
15108
  }
15111
15109
  statusBar.deactivate();
15112
- if (process.stdout.isTTY)
15113
- process.stdout.write("\x1B[?1049l");
15110
+ process.stdout.write("\x1B[2J\x1B[3J\x1B[H");
15114
15111
  process.stdout.write(`${c2.dim("Goodbye!")}
15115
15112
  `);
15116
15113
  rl.close();
@@ -15299,8 +15296,7 @@ Summarize or analyze this transcription as appropriate.`;
15299
15296
  });
15300
15297
  rl.on("close", () => {
15301
15298
  statusBar.deactivate();
15302
- if (process.stdout.isTTY)
15303
- process.stdout.write("\x1B[?1049l");
15299
+ process.stdout.write("\x1B[2J\x1B[3J\x1B[H");
15304
15300
  process.stdout.write(`${c2.dim("Goodbye!")}
15305
15301
  `);
15306
15302
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.14.5",
3
+ "version": "0.14.6",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",