open-agents-ai 0.123.0 → 0.124.0

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 +18 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -42426,7 +42426,24 @@ async function handleUpdate(subcommand, ctx) {
42426
42426
  installError = (stderr || err.message || "").trim();
42427
42427
  resolve32(!err);
42428
42428
  });
42429
- child.stdout?.resume();
42429
+ child.stdout?.on("data", (chunk) => {
42430
+ const text = String(chunk);
42431
+ for (const line of text.split("\n")) {
42432
+ if (line.trim()) {
42433
+ process.stdout.write(` ${c2.dim("\u2502")} ${line.trim().slice(0, 70)}
42434
+ `);
42435
+ }
42436
+ }
42437
+ });
42438
+ child.stderr?.on("data", (chunk) => {
42439
+ const text = String(chunk);
42440
+ for (const line of text.split("\n")) {
42441
+ if (line.trim() && !line.includes("npm warn")) {
42442
+ process.stdout.write(` ${c2.dim("\u2502")} ${c2.yellow(line.trim().slice(0, 70))}
42443
+ `);
42444
+ }
42445
+ }
42446
+ });
42430
42447
  });
42431
42448
  if (needsSudo) {
42432
42449
  process.stdout.write("\x1B[?1049l");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.123.0",
3
+ "version": "0.124.0",
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",