open-agents-ai 0.187.240 → 0.187.241

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 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -291461,6 +291461,7 @@ var init_status_bar = __esm({
291461
291461
  buf += `\x1B[${pos.bufferRow};1H${PANEL_BG_SEQ}\x1B[2K${BOX_FG}${BOX_BL}${BOX_H.repeat(Math.max(0, boxInnerP))}${BOX_BR}${RESET2}`;
291462
291462
  buf += `\x1B[${pos.metricsRow};1H${PANEL_BG_SEQ}\x1B[2K${this.buildMetricsLine()}${RESET2}\x1B[?7h\x1B[${pos.scrollEnd};1H`;
291463
291463
  this.termWrite(buf);
291464
+ if (this._bannerRefresh) this._bannerRefresh();
291464
291465
  } else {
291465
291466
  this.applyScrollRegion(true);
291466
291467
  this.fillContentArea();
@@ -308695,6 +308696,7 @@ var init_banner = __esm({
308695
308696
  if (!isTTY7 || !this.currentDesign) return 0;
308696
308697
  this.renderCurrentFrame();
308697
308698
  this._resizeHandler = () => {
308699
+ setTermSize(process.stdout.rows ?? 24, process.stdout.columns ?? 80);
308698
308700
  this.width = termCols();
308699
308701
  if (this.currentDesign) {
308700
308702
  if (this.currentDesign.type === "default") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.240",
3
+ "version": "0.187.241",
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",