open-agents-ai 0.184.88 → 0.184.89

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 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -61248,9 +61248,12 @@ var init_status_bar = __esm({
61248
61248
  return;
61249
61249
  const w = process.stdout.columns ?? 80;
61250
61250
  const overlay = renderHeaderButtons(w);
61251
- if (overlay) {
61252
- const writer = this._origWrite ?? process.stdout.write.bind(process.stdout);
61253
- writer("\x1B7" + overlay + "\x1B8");
61251
+ if (!overlay)
61252
+ return;
61253
+ const writer = this._origWrite ?? process.stdout.write.bind(process.stdout);
61254
+ writer(overlay);
61255
+ if (this.writeDepth === 0) {
61256
+ this.renderFooterAndPositionInput();
61254
61257
  }
61255
61258
  }
61256
61259
  /** Set a callback to re-render the banner after resize/redraw */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.184.88",
3
+ "version": "0.184.89",
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",