@learnrudi/cli 1.9.10 → 1.9.12

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generated": "2026-01-09T17:11:22.872Z",
3
+ "generated": "2026-01-09T20:10:12.259Z",
4
4
  "packages": {
5
5
  "runtimes": [
6
6
  {
@@ -65,6 +65,21 @@
65
65
  }
66
66
  ]
67
67
  },
68
+ {
69
+ "id": "ollama",
70
+ "name": "Ollama",
71
+ "kind": "runtime",
72
+ "installDir": "ollama",
73
+ "basePath": "runtimes",
74
+ "installType": "binary",
75
+ "commands": [
76
+ {
77
+ "name": "ollama",
78
+ "bin": "ollama",
79
+ "args": null
80
+ }
81
+ ]
82
+ },
68
83
  {
69
84
  "id": "python",
70
85
  "name": "Python",
@@ -167,21 +182,6 @@
167
182
  "args": null
168
183
  }
169
184
  ]
170
- },
171
- {
172
- "id": "ollama",
173
- "name": "Ollama",
174
- "kind": "agent",
175
- "installDir": "ollama",
176
- "basePath": "agents",
177
- "installType": "binary",
178
- "commands": [
179
- {
180
- "name": "ollama",
181
- "bin": "ollama",
182
- "args": null
183
- }
184
- ]
185
185
  }
186
186
  ],
187
187
  "binaries": []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learnrudi/cli",
3
- "version": "1.9.10",
3
+ "version": "1.9.12",
4
4
  "description": "RUDI CLI - Install and manage MCP stacks, runtimes, and AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -12,25 +12,18 @@
12
12
  "scripts",
13
13
  "README.md"
14
14
  ],
15
- "scripts": {
16
- "start": "node src/index.js",
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",
19
- "postinstall": "node scripts/postinstall.js",
20
- "prepublishOnly": "npm run build",
21
- "test": "node --test src/__tests__/"
22
- },
23
15
  "dependencies": {
24
- "@learnrudi/core": "workspace:*",
25
- "@learnrudi/db": "workspace:*",
26
- "@learnrudi/env": "workspace:*",
27
- "@learnrudi/manifest": "workspace:*",
28
- "@learnrudi/mcp": "workspace:*",
29
- "@learnrudi/registry-client": "workspace:*",
30
- "@learnrudi/runner": "workspace:*",
31
- "@learnrudi/secrets": "workspace:*",
32
- "@learnrudi/utils": "workspace:*",
33
- "better-sqlite3": "^12.5.0"
16
+ "better-sqlite3": "^12.5.0",
17
+ "@learnrudi/core": "1.0.5",
18
+ "@learnrudi/db": "1.0.2",
19
+ "@learnrudi/env": "1.0.1",
20
+ "@learnrudi/embeddings": "0.1.0",
21
+ "@learnrudi/manifest": "1.0.0",
22
+ "@learnrudi/mcp": "1.0.0",
23
+ "@learnrudi/registry-client": "1.0.5",
24
+ "@learnrudi/runner": "1.0.1",
25
+ "@learnrudi/utils": "1.0.0",
26
+ "@learnrudi/secrets": "1.0.1"
34
27
  },
35
28
  "devDependencies": {
36
29
  "esbuild": "^0.27.2"
@@ -56,5 +49,12 @@
56
49
  "publishConfig": {
57
50
  "access": "public"
58
51
  },
59
- "license": "MIT"
60
- }
52
+ "license": "MIT",
53
+ "scripts": {
54
+ "start": "node src/index.js",
55
+ "prebuild": "node scripts/generate-manifest.js",
56
+ "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",
57
+ "postinstall": "node scripts/postinstall.js",
58
+ "test": "node --test src/__tests__/"
59
+ }
60
+ }