buildwithnexus 0.8.8 → 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 +1 -1
- package/dist/bin.js +5 -4
- package/dist/nexus-release.tar.gz +0 -0
- package/package.json +3 -4
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/
|
|
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
|
|
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.
|
|
1609
|
+
var resolvedVersion = true ? "0.8.10" : pkg.version;
|
|
1609
1610
|
|
|
1610
1611
|
// src/cli/interactive.ts
|
|
1611
1612
|
var appVersion = resolvedVersion;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "buildwithnexus",
|
|
3
|
-
"version": "0.8.
|
|
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,12 +43,11 @@
|
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"repository": {
|
|
45
45
|
"type": "git",
|
|
46
|
-
"url": "https://github.com/
|
|
46
|
+
"url": "git+https://github.com/Garretts-Apps/buildwithnexus.git"
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://buildwithnexus.dev",
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@inquirer/prompts": "^8.2.1",
|
|
51
|
-
"buildwithnexus": "^0.6.4",
|
|
52
51
|
"chalk": "^5.3.0",
|
|
53
52
|
"commander": "^12.1.0",
|
|
54
53
|
"dotenv": "^17.3.1",
|
|
@@ -58,7 +57,7 @@
|
|
|
58
57
|
"node-ssh": "^13.2.1",
|
|
59
58
|
"ora": "^8.1.1",
|
|
60
59
|
"string-width": "^8.2.0",
|
|
61
|
-
"yaml": "^2.
|
|
60
|
+
"yaml": "^2.8.4"
|
|
62
61
|
},
|
|
63
62
|
"devDependencies": {
|
|
64
63
|
"@types/ejs": "^3.1.5",
|