@learnrudi/cli 1.9.5 → 1.9.6

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.cjs +36 -2
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -4184,12 +4184,46 @@ async function cmdCheck(args, flags) {
4184
4184
  if (packageId.includes(":")) {
4185
4185
  [kind, name] = packageId.split(":");
4186
4186
  } else {
4187
- if (["claude", "codex", "gemini", "copilot"].includes(packageId)) {
4187
+ const KNOWN_AGENTS = ["claude", "codex", "gemini", "copilot", "ollama"];
4188
+ const KNOWN_RUNTIMES = ["node", "python", "deno", "bun"];
4189
+ const KNOWN_BINARIES = [
4190
+ "ffmpeg",
4191
+ "ripgrep",
4192
+ "rg",
4193
+ "git",
4194
+ "pandoc",
4195
+ "jq",
4196
+ "yq",
4197
+ "sqlite",
4198
+ "sqlite3",
4199
+ "imagemagick",
4200
+ "convert",
4201
+ "whisper",
4202
+ "docker",
4203
+ "kubectl",
4204
+ "terraform",
4205
+ "vercel",
4206
+ "netlify",
4207
+ "supabase",
4208
+ "wrangler",
4209
+ "railway",
4210
+ "flyctl",
4211
+ "gh",
4212
+ "ytdlp",
4213
+ "yt-dlp",
4214
+ "rclone",
4215
+ "chromium",
4216
+ "playwright"
4217
+ ];
4218
+ if (KNOWN_AGENTS.includes(packageId)) {
4188
4219
  kind = "agent";
4189
4220
  name = packageId;
4190
- } else if (["node", "python", "deno", "bun"].includes(packageId)) {
4221
+ } else if (KNOWN_RUNTIMES.includes(packageId)) {
4191
4222
  kind = "runtime";
4192
4223
  name = packageId;
4224
+ } else if (KNOWN_BINARIES.includes(packageId)) {
4225
+ kind = "binary";
4226
+ name = packageId;
4193
4227
  } else {
4194
4228
  kind = "stack";
4195
4229
  name = packageId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learnrudi/cli",
3
- "version": "1.9.5",
3
+ "version": "1.9.6",
4
4
  "description": "RUDI CLI - Install and manage MCP stacks, runtimes, and AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",