open-agents-ai 0.138.76 → 0.138.77

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 +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -44523,10 +44523,16 @@ async function showExposeDashboard(gateway, rl, ctx) {
44523
44523
  }
44524
44524
  }
44525
44525
  };
44526
+ if (process.stdout.isTTY) {
44527
+ process.stdout.write("\x1B[?1002l\x1B[?1006l");
44528
+ }
44526
44529
  process.stdin.on("data", onData);
44527
44530
  const cleanup = () => {
44528
44531
  stopped = true;
44529
44532
  process.stdin.removeListener("data", onData);
44533
+ if (process.stdout.isTTY) {
44534
+ process.stdout.write("\x1B[?1002h\x1B[?1006h");
44535
+ }
44530
44536
  };
44531
44537
  const origResolve = resolve32;
44532
44538
  resolve32 = (() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.138.76",
3
+ "version": "0.138.77",
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",