buildwithnexus 0.6.21 → 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 CHANGED
@@ -43,11 +43,6 @@ import path2 from "path";
43
43
  import os2 from "os";
44
44
  import * as readline from "readline";
45
45
  async function deepAgentsInitCommand() {
46
- console.log(`
47
- \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\u2557
48
- \u2551 Nexus - Configuration \u2551
49
- \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\u255D
50
- `);
51
46
  const envPath = path2.join(os2.homedir(), ".env.local");
52
47
  console.log(
53
48
  "Please provide your LLM API keys:\n(You can set these later by editing .env.local)\n"
@@ -161,7 +156,7 @@ function getVersion() {
161
156
  const packageJson = JSON.parse(readFileSync(packagePath, "utf-8"));
162
157
  return packageJson.version;
163
158
  } catch {
164
- return true ? "0.6.21" : "0.0.0-unknown";
159
+ return true ? "0.6.25" : "0.0.0-unknown";
165
160
  }
166
161
  }
167
162
  function showBanner() {
@@ -228,7 +223,7 @@ var init_banner = __esm({
228
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
229
224
  \u2551 ${chalk5.bold.cyan("B U I L D W I T H N E X U S")} \u2551
230
225
  \u2551 \u2551
231
- \u2551 Autonomous AI Runtime \xB7 Nested Isolation \u2551
226
+ \u2551 Autonomous Agent Orchestration \u2551
232
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
233
228
  `;
234
229
  }
@@ -3520,7 +3515,7 @@ function getVersionStatic() {
3520
3515
  const packageJson = JSON.parse(readFileSync2(packagePath, "utf-8"));
3521
3516
  return packageJson.version;
3522
3517
  } catch {
3523
- return true ? "0.6.21" : "0.0.0-unknown";
3518
+ return true ? "0.6.25" : "0.0.0-unknown";
3524
3519
  }
3525
3520
  }
3526
3521
  var cli = new Command15().name("buildwithnexus").description("Auto-scaffold and launch a fully autonomous NEXUS runtime").version(getVersionStatic());
@@ -3641,7 +3636,7 @@ import os5 from "os";
3641
3636
  import path11 from "path";
3642
3637
  var homeEnvPath = path11.join(os5.homedir(), ".env.local");
3643
3638
  dotenv2.config({ path: homeEnvPath });
3644
- var version = true ? "0.6.21" : "0.5.17";
3639
+ var version = true ? "0.6.25" : "0.5.17";
3645
3640
  checkForUpdates(version);
3646
3641
  program.name("buildwithnexus").description("Nexus - AI-Powered Task Execution").version(version);
3647
3642
  program.command("da-init").description("Initialize Nexus (set up API keys and .env.local)").action(deepAgentsInitCommand);
@@ -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 Deep Agents workflow
229
+ Starting Nexus Workflow
230
230
  `);
231
231
  console.log(` Task: ${task}`);
232
232
  console.log(` Agent: ${options.agent}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildwithnexus",
3
- "version": "0.6.21",
3
+ "version": "0.6.25",
4
4
  "description": "Interactive AI agent orchestrator with intent-based planning, execution, and brainstorming modes",
5
5
  "type": "module",
6
6
  "bin": {