buildwithnexus 0.8.9 → 0.8.10

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.
package/README.md CHANGED
@@ -109,7 +109,7 @@ Built-in DLP (Data Loss Prevention) layer protects every data path — zero depe
109
109
 
110
110
  - **npm:** [npmjs.com/package/buildwithnexus](https://www.npmjs.com/package/buildwithnexus)
111
111
  - **Docs:** [buildwithnexus.dev](https://buildwithnexus.dev)
112
- - **GitHub:** [github.com/Garrett-s-Apps/buildwithnexus](https://github.com/Garrett-s-Apps/buildwithnexus)
112
+ - **GitHub:** [github.com/Garretts-Apps/buildwithnexus](https://github.com/Garretts-Apps/buildwithnexus)
113
113
 
114
114
  ## License
115
115
 
package/dist/bin.js CHANGED
@@ -1469,13 +1469,14 @@ ${urlCheck.error}`);
1469
1469
  }
1470
1470
  for await (const parsed of parseSSEStream(reader)) {
1471
1471
  const type = parsed.type;
1472
- const eventContent = parsed.data["content"] || "";
1472
+ const data = parsed.data;
1473
+ const eventContent = data["content"] || data["result"] || data["task"] || "";
1473
1474
  if (type === "done") {
1474
- tui.displayEvent(type, { content: "Task completed successfully" });
1475
+ tui.displayEvent(type, { content: eventContent || "Task completed successfully" });
1475
1476
  tui.displayComplete(tui.getElapsedTime());
1476
1477
  process.exit(0);
1477
1478
  } else if (type === "error") {
1478
- tui.displayError(eventContent);
1479
+ tui.displayError(data["error"] || eventContent || "Unknown error");
1479
1480
  process.exit(1);
1480
1481
  } else {
1481
1482
  tui.displayEvent(type, { content: eventContent });
@@ -1605,7 +1606,7 @@ init_secrets();
1605
1606
  init_docker();
1606
1607
 
1607
1608
  // src/core/version.ts
1608
- var resolvedVersion = true ? "0.8.9" : pkg.version;
1609
+ var resolvedVersion = true ? "0.8.10" : pkg.version;
1609
1610
 
1610
1611
  // src/cli/interactive.ts
1611
1612
  var appVersion = resolvedVersion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildwithnexus",
3
- "version": "0.8.9",
3
+ "version": "0.8.10",
4
4
  "description": "Interactive AI agent orchestrator with intent-based planning, execution, and brainstorming modes",
5
5
  "type": "module",
6
6
  "bin": {
@@ -43,7 +43,7 @@
43
43
  "license": "MIT",
44
44
  "repository": {
45
45
  "type": "git",
46
- "url": "https://github.com/Garrett-s-Apps/buildwithnexus.git"
46
+ "url": "git+https://github.com/Garretts-Apps/buildwithnexus.git"
47
47
  },
48
48
  "homepage": "https://buildwithnexus.dev",
49
49
  "dependencies": {
@@ -57,7 +57,7 @@
57
57
  "node-ssh": "^13.2.1",
58
58
  "ora": "^8.1.1",
59
59
  "string-width": "^8.2.0",
60
- "yaml": "^2.7.0"
60
+ "yaml": "^2.8.4"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/ejs": "^3.1.5",