open-agents-ai 0.187.210 → 0.187.211

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 +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -327041,6 +327041,10 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
327041
327041
  process.stdout.on("resize", () => {
327042
327042
  statusBar.handleResize();
327043
327043
  setTermSize(process.stdout.rows ?? 24, process.stdout.columns ?? 80);
327044
+ try {
327045
+ refreshTuiTasks();
327046
+ } catch {
327047
+ }
327044
327048
  if (isNeovimActive()) {
327045
327049
  const contentRows = statusBar.isActive ? statusBar.availableContentRows : Math.max(5, termRows() - 6);
327046
327050
  resizeNeovim(termCols(), contentRows);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.210",
3
+ "version": "0.187.211",
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",