@agent-nexus/cli 0.1.2 → 0.1.3

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/index.js +2 -2
  2. package/package.json +9 -10
package/dist/index.js CHANGED
@@ -150,7 +150,7 @@ var require_package = __commonJS({
150
150
  "package.json"(exports2, module2) {
151
151
  module2.exports = {
152
152
  name: "@agent-nexus/cli",
153
- version: "0.1.2",
153
+ version: "0.1.3",
154
154
  description: "Official CLI for the Nexus AI agent platform.",
155
155
  license: "MIT",
156
156
  keywords: [
@@ -222,7 +222,7 @@ function getBanner(version) {
222
222
  lines.push(bold(line));
223
223
  }
224
224
  lines.push("");
225
- lines.push(dim(" The AI agent platform") + " " + teal("v" + version));
225
+ lines.push(dim(" The AI agent platform") + " " + teal("v" + version) + " " + teal("\u2591 BETA \u2591"));
226
226
  lines.push("");
227
227
  return lines.join("\n");
228
228
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-nexus/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Official CLI for the Nexus AI agent platform.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -28,19 +28,18 @@
28
28
  "engines": {
29
29
  "node": ">=18"
30
30
  },
31
- "scripts": {
32
- "build": "tsup",
33
- "dev": "tsup --watch",
34
- "typecheck": "tsc --noEmit",
35
- "prepublishOnly": "pnpm run build"
36
- },
37
31
  "dependencies": {
38
- "@agent-nexus/sdk": "workspace:*",
39
- "commander": "^13.0.0"
32
+ "commander": "^13.0.0",
33
+ "@agent-nexus/sdk": "0.1.3"
40
34
  },
41
35
  "devDependencies": {
42
36
  "@types/node": "24.6.2",
43
37
  "tsup": "^8.5.0",
44
38
  "typescript": "^5.8.3"
39
+ },
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "dev": "tsup --watch",
43
+ "typecheck": "tsc --noEmit"
45
44
  }
46
- }
45
+ }