open-agents-ai 0.138.38 → 0.138.39

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 -17
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -53365,7 +53365,6 @@ ${entry.fullContent}`
53365
53365
  streamTextBuffer = "";
53366
53366
  if (!isNeovimActive()) {
53367
53367
  if (stream?.enabled) {
53368
- stream?.muteReadline?.();
53369
53368
  if (statusBar?.isActive)
53370
53369
  statusBar.beginContentWrite();
53371
53370
  stream.renderer.onStreamStart();
@@ -53403,9 +53402,10 @@ ${entry.fullContent}`
53403
53402
  } else {
53404
53403
  if (stream?.enabled) {
53405
53404
  stream.renderer.onStreamEnd();
53406
- if (statusBar?.isActive)
53405
+ if (statusBar?.isActive) {
53407
53406
  statusBar.endContentWrite();
53408
- stream?.unmuteReadline?.();
53407
+ statusBar.positionAtInput();
53408
+ }
53409
53409
  }
53410
53410
  if (config.verbose && streamDurationMs > 0) {
53411
53411
  const streamChars = event.content?.length ?? 0;
@@ -54071,6 +54071,7 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
54071
54071
  completer
54072
54072
  });
54073
54073
  statusBar.hookReadlineScroll(rl);
54074
+ rl.output = null;
54074
54075
  function persistHistoryLine(line) {
54075
54076
  if (!line.trim())
54076
54077
  return;
@@ -55744,20 +55745,8 @@ Execute this skill now. Follow the behavioral guidance above.`;
55744
55745
  statusBar.setProcessing(true);
55745
55746
  const task = startTask(skillPrompt, currentConfig, repoRoot, voiceEngine, {
55746
55747
  enabled: streamEnabled,
55747
- renderer: streamRenderer,
55748
- muteReadline: () => {
55749
- if (rl.output) {
55750
- rl._savedOutput = rl.output;
55751
- rl.output = null;
55752
- }
55753
- },
55754
- unmuteReadline: () => {
55755
- if (rl._savedOutput) {
55756
- rl.output = rl._savedOutput;
55757
- delete rl._savedOutput;
55758
- }
55759
- showPrompt();
55760
- }
55748
+ renderer: streamRenderer
55749
+ // rl.output permanently null — all display via footer renderer
55761
55750
  }, {
55762
55751
  contextStores,
55763
55752
  taskMemoryStore: taskMemoryStore ?? void 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.138.38",
3
+ "version": "0.138.39",
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",