buildwithnexus 0.6.24 → 0.6.25
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/dist/bin.js +4 -4
- package/dist/deep-agents-bin.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -156,7 +156,7 @@ function getVersion() {
|
|
|
156
156
|
const packageJson = JSON.parse(readFileSync(packagePath, "utf-8"));
|
|
157
157
|
return packageJson.version;
|
|
158
158
|
} catch {
|
|
159
|
-
return true ? "0.6.
|
|
159
|
+
return true ? "0.6.25" : "0.0.0-unknown";
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
function showBanner() {
|
|
@@ -223,7 +223,7 @@ var init_banner = __esm({
|
|
|
223
223
|
\u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557
|
|
224
224
|
\u2551 ${chalk5.bold.cyan("B U I L D W I T H N E X U S")} \u2551
|
|
225
225
|
\u2551 \u2551
|
|
226
|
-
\u2551
|
|
226
|
+
\u2551 Autonomous Agent Orchestration \u2551
|
|
227
227
|
\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255D
|
|
228
228
|
`;
|
|
229
229
|
}
|
|
@@ -3515,7 +3515,7 @@ function getVersionStatic() {
|
|
|
3515
3515
|
const packageJson = JSON.parse(readFileSync2(packagePath, "utf-8"));
|
|
3516
3516
|
return packageJson.version;
|
|
3517
3517
|
} catch {
|
|
3518
|
-
return true ? "0.6.
|
|
3518
|
+
return true ? "0.6.25" : "0.0.0-unknown";
|
|
3519
3519
|
}
|
|
3520
3520
|
}
|
|
3521
3521
|
var cli = new Command15().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(getVersionStatic());
|
|
@@ -3636,7 +3636,7 @@ import os5 from "os";
|
|
|
3636
3636
|
import path11 from "path";
|
|
3637
3637
|
var homeEnvPath = path11.join(os5.homedir(), ".env.local");
|
|
3638
3638
|
dotenv2.config({ path: homeEnvPath });
|
|
3639
|
-
var version = true ? "0.6.
|
|
3639
|
+
var version = true ? "0.6.25" : "0.5.17";
|
|
3640
3640
|
checkForUpdates(version);
|
|
3641
3641
|
program.name("buildwithnexus").description("Nexus - AI-Powered Task Execution").version(version);
|
|
3642
3642
|
program.command("da-init").description("Initialize Nexus (set up API keys and .env.local)").action(deepAgentsInitCommand);
|
package/dist/deep-agents-bin.js
CHANGED
|
@@ -226,7 +226,7 @@ async function runCommand(task, options) {
|
|
|
226
226
|
const repl = new PlanningREPL();
|
|
227
227
|
const formatter = new StreamFormatter();
|
|
228
228
|
console.log(`
|
|
229
|
-
Starting
|
|
229
|
+
Starting Nexus Workflow
|
|
230
230
|
`);
|
|
231
231
|
console.log(` Task: ${task}`);
|
|
232
232
|
console.log(` Agent: ${options.agent}`);
|