@learnrudi/cli 1.10.6 → 1.10.8

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/index.cjs CHANGED
@@ -40670,7 +40670,7 @@ async function cmdStudio(args, flags) {
40670
40670
  }
40671
40671
 
40672
40672
  // src/index.js
40673
- var VERSION2 = "2.0.0";
40673
+ var VERSION2 = true ? "1.10.8" : process.env.npm_package_version || "0.0.0";
40674
40674
  async function main() {
40675
40675
  const { command, args, flags } = parseArgs(process.argv.slice(2));
40676
40676
  if (flags.version || flags.v) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generated": "2026-01-11T00:47:39.830Z",
3
+ "generated": "2026-01-11T15:40:59.295Z",
4
4
  "packages": {
5
5
  "runtimes": [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learnrudi/cli",
3
- "version": "1.10.6",
3
+ "version": "1.10.8",
4
4
  "description": "RUDI CLI - Install and manage MCP stacks, runtimes, and AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -15,22 +15,22 @@
15
15
  "scripts": {
16
16
  "start": "node src/index.js",
17
17
  "prebuild": "node scripts/generate-manifest.js",
18
- "build": "esbuild src/index.js --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:better-sqlite3 && cp src/router-mcp.js dist/router-mcp.js && cp src/packages-manifest.json dist/packages-manifest.json",
18
+ "build": "esbuild src/index.js --bundle --platform=node --format=cjs --outfile=dist/index.cjs --define:__RUDI_CLI_VERSION__=$(node -p \"JSON.stringify(require('./package.json').version)\") --external:better-sqlite3 && cp src/router-mcp.js dist/router-mcp.js && cp src/packages-manifest.json dist/packages-manifest.json",
19
19
  "postinstall": "node scripts/postinstall.js",
20
20
  "prepublishOnly": "npm run build",
21
21
  "test": "node --test src/__tests__/"
22
22
  },
23
23
  "dependencies": {
24
- "@learnrudi/core": "workspace:*",
25
- "@learnrudi/db": "workspace:*",
26
- "@learnrudi/embeddings": "workspace:*",
27
- "@learnrudi/env": "workspace:*",
28
- "@learnrudi/manifest": "workspace:*",
29
- "@learnrudi/mcp": "workspace:*",
30
- "@learnrudi/registry-client": "workspace:*",
31
- "@learnrudi/runner": "workspace:*",
32
- "@learnrudi/secrets": "workspace:*",
33
- "@learnrudi/utils": "workspace:*",
24
+ "@learnrudi/core": "1.0.5",
25
+ "@learnrudi/db": "1.0.2",
26
+ "@learnrudi/embeddings": "0.1.0",
27
+ "@learnrudi/env": "1.0.1",
28
+ "@learnrudi/manifest": "1.0.0",
29
+ "@learnrudi/mcp": "1.0.0",
30
+ "@learnrudi/registry-client": "1.0.5",
31
+ "@learnrudi/runner": "1.0.1",
32
+ "@learnrudi/secrets": "1.0.1",
33
+ "@learnrudi/utils": "1.0.0",
34
34
  "better-sqlite3": "^12.5.0"
35
35
  },
36
36
  "devDependencies": {
@@ -51,7 +51,7 @@
51
51
  ],
52
52
  "repository": {
53
53
  "type": "git",
54
- "url": "https://github.com/learn-rudi/cli.git"
54
+ "url": "git+https://github.com/learn-rudi/cli.git"
55
55
  },
56
56
  "homepage": "https://learnrudi.com",
57
57
  "publishConfig": {