open-agents-ai 0.187.73 → 0.187.74

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 +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -279671,10 +279671,12 @@ var init_status_bar = __esm({
279671
279671
  beginContentWrite() {
279672
279672
  if (!this.active)
279673
279673
  return;
279674
+ this.writeDepth++;
279675
+ if (this.writeDepth > 1)
279676
+ return;
279674
279677
  this.updateFooterHeight();
279675
279678
  if (this._currentFooterHeight < 4)
279676
279679
  this._currentFooterHeight = 4;
279677
- this.writeDepth++;
279678
279680
  this.cancelMouseIdle();
279679
279681
  this.enableMouseTracking();
279680
279682
  const rows = process.stdout.rows ?? 24;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.73",
3
+ "version": "0.187.74",
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",