open-agents-ai 0.187.70 → 0.187.72

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
@@ -279671,6 +279671,8 @@ var init_status_bar = __esm({
279671
279671
  if (!this.active)
279672
279672
  return;
279673
279673
  this.updateFooterHeight();
279674
+ if (this._currentFooterHeight < 4)
279675
+ this._currentFooterHeight = 4;
279674
279676
  this.writeDepth++;
279675
279677
  this.cancelMouseIdle();
279676
279678
  this.enableMouseTracking();
@@ -279853,7 +279855,8 @@ ${CONTENT_BG_SEQ}`);
279853
279855
  return;
279854
279856
  const rows = process.stdout.rows ?? 24;
279855
279857
  const pos = this.rowPositions(rows);
279856
- this.termWrite(`\x1B[${pos.inputStartRow};1H\x1B[2K\x1B[?25h`);
279858
+ const inputTextRow = pos.inputStartRow + 1;
279859
+ this.termWrite(`\x1B[${inputTextRow};${this.promptWidth + 1}H\x1B[?25h`);
279857
279860
  }
279858
279861
  /** Strip ANSI escape codes to measure visible character width */
279859
279862
  static visWidth(s2) {
@@ -294115,7 +294118,7 @@ async function handleUpdate(subcommand, ctx3) {
294115
294118
  const boxFg = getBoxFg();
294116
294119
  const bgSeq = getBgSeq();
294117
294120
  const contentTop = 4;
294118
- const contentBottom = rows - 5;
294121
+ const contentBottom = rows - 2;
294119
294122
  const contentHeight = Math.max(5, contentBottom - contentTop + 1);
294120
294123
  let buf = "\x1B[?2026h\x1B7\x1B[?25l";
294121
294124
  for (let r2 = contentTop; r2 <= contentBottom; r2++) {
@@ -294192,7 +294195,7 @@ async function handleUpdate(subcommand, ctx3) {
294192
294195
  clearInterval(timer);
294193
294196
  const rows = process.stdout.rows ?? 24;
294194
294197
  const contentTop = 4;
294195
- const contentBottom = rows - 5;
294198
+ const contentBottom = rows - 2;
294196
294199
  const { tuiBgSeq: getDismissBg } = (init_theme(), __toCommonJS(theme_exports));
294197
294200
  let buf = "\x1B7";
294198
294201
  for (let r2 = contentTop; r2 <= contentBottom; r2++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.70",
3
+ "version": "0.187.72",
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",