open-agents-ai 0.141.2 → 0.141.3

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 +10 -12
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -57912,24 +57912,22 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
57912
57912
  headerBtnActive = command;
57913
57913
  (async () => {
57914
57914
  try {
57915
- const needsContentWrap = command === "/help" || command === "/cohere";
57916
- if (needsContentWrap && statusBar.isActive)
57917
- statusBar.beginContentWrite();
57918
- try {
57915
+ const isOverlayCmd = command === "/model" || command === "/voice";
57916
+ if (isOverlayCmd) {
57919
57917
  await handleSlashCommand(command, commandCtxRef);
57920
- } finally {
57921
- if (needsContentWrap && statusBar.isActive) {
57922
- try {
57923
- statusBar.endContentWrite();
57924
- } catch {
57925
- }
57926
- }
57918
+ } else {
57919
+ writeContent(() => {
57920
+ handleSlashCommand(command, commandCtxRef).catch(() => {
57921
+ });
57922
+ });
57927
57923
  }
57928
57924
  } catch {
57929
57925
  }
57930
57926
  headerBtnActive = null;
57931
- if (statusBar.isActive)
57927
+ if (statusBar.isActive) {
57928
+ banner.renderCurrentFrame();
57932
57929
  statusBar.refreshDisplay();
57930
+ }
57933
57931
  })();
57934
57932
  });
57935
57933
  rl.output = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.141.2",
3
+ "version": "0.141.3",
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",