open-agents-ai 0.184.86 → 0.184.87

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 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -65421,8 +65421,8 @@ async function startInteractive(config, repoPath) {
65421
65421
  const savedSettings = resolveSettings(repoRoot);
65422
65422
  let restoredSessionContext = null;
65423
65423
  if (process.stdout.isTTY) {
65424
- process.stdout.write("\x1B[2J\x1B[3J\x1B[H");
65425
- process.stdout.write("\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[?1015l\x1B[?1049h\x1B[48;5;233m\x1B[2J\x1B[3J\x1B[H\x1B[?25l");
65424
+ process.stdout.write("\x1Bc\x1B[2J\x1B[3J\x1B]50;ClearScrollback\x07\x1B[H");
65425
+ 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
65426
  const restoreScreen = () => {
65427
65427
  process.stdout.write("\x1B[?1002l\x1B[?1003l\x1B[?1006l\x1B[?1015l\x1B[?25h\x1B[?1049l");
65428
65428
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.184.86",
3
+ "version": "0.184.87",
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",