buildwithnexus 0.6.21 → 0.6.24

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/bin.js +3 -8
  2. package/package.json +1 -1
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.24" : "0.0.0-unknown";
165
160
  }
166
161
  }
167
162
  function showBanner() {
@@ -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.24" : "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.24" : "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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildwithnexus",
3
- "version": "0.6.21",
3
+ "version": "0.6.24",
4
4
  "description": "Interactive AI agent orchestrator with intent-based planning, execution, and brainstorming modes",
5
5
  "type": "module",
6
6
  "bin": {