claudish 6.8.0 → 6.8.1
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.js
CHANGED
|
@@ -33064,6 +33064,16 @@ async function parseArgs(args) {
|
|
|
33064
33064
|
if (["auto", "logfile", "off"].includes(mode)) {
|
|
33065
33065
|
config3.diagMode = mode;
|
|
33066
33066
|
}
|
|
33067
|
+
} else if (arg === "--team" && i + 1 < args.length) {
|
|
33068
|
+
const models = args[++i].split(",").map((m) => m.trim()).filter(Boolean);
|
|
33069
|
+
config3.team = models;
|
|
33070
|
+
} else if (arg === "--mode" && i + 1 < args.length) {
|
|
33071
|
+
const mode = args[++i].toLowerCase();
|
|
33072
|
+
if (["default", "interactive", "json"].includes(mode)) {
|
|
33073
|
+
config3.teamMode = mode;
|
|
33074
|
+
}
|
|
33075
|
+
} else if ((arg === "-f" || arg === "--file") && i + 1 < args.length) {
|
|
33076
|
+
config3.inputFile = args[++i];
|
|
33067
33077
|
} else if (arg === "--") {
|
|
33068
33078
|
config3.claudeArgs.push(...args.slice(i + 1));
|
|
33069
33079
|
break;
|
|
@@ -33941,6 +33951,8 @@ claudish - Run Claude Code with any AI model (OpenRouter, Gemini, OpenAI, MiniMa
|
|
|
33941
33951
|
USAGE:
|
|
33942
33952
|
claudish # Interactive mode (default, shows model selector)
|
|
33943
33953
|
claudish [OPTIONS] <claude-args...> # Single-shot mode (requires --model)
|
|
33954
|
+
claudish --team a,b,c "prompt" # Run models in parallel (magmux grid)
|
|
33955
|
+
claudish --team a,b,c -f input.md # Team mode with file input
|
|
33944
33956
|
|
|
33945
33957
|
MODEL ROUTING:
|
|
33946
33958
|
New syntax: provider@model[:concurrency]
|
|
@@ -34013,6 +34025,10 @@ OPTIONS:
|
|
|
34013
34025
|
--models List ALL models (OpenRouter + OpenCode Zen + Ollama)
|
|
34014
34026
|
--models <query> Fuzzy search all models by name, ID, or description
|
|
34015
34027
|
--top-models List recommended/top programming models (curated)
|
|
34028
|
+
--team <models> Run multiple models in parallel (comma-separated)
|
|
34029
|
+
Example: --team minimax-m2.5,kimi-k2.5 "prompt"
|
|
34030
|
+
--mode <mode> Team mode: default (grid), interactive, json
|
|
34031
|
+
-f, --file <path> Read prompt from file (use with --team or single-shot)
|
|
34016
34032
|
--probe <models...> Show fallback chain for each model (diagnostic)
|
|
34017
34033
|
--json Output in JSON format (use with --models, --top-models, --probe)
|
|
34018
34034
|
--force-update Force refresh model cache from OpenRouter API
|
|
@@ -34474,7 +34490,7 @@ async function fetchGLMCodingModels() {
|
|
|
34474
34490
|
return [];
|
|
34475
34491
|
}
|
|
34476
34492
|
}
|
|
34477
|
-
var __filename4, __dirname4, VERSION = "6.8.
|
|
34493
|
+
var __filename4, __dirname4, VERSION = "6.8.1", CACHE_MAX_AGE_DAYS2 = 2, CLAUDISH_CACHE_DIR2, BUNDLED_MODELS_PATH, CACHED_MODELS_PATH, ALL_MODELS_JSON_PATH;
|
|
34478
34494
|
var init_cli = __esm(() => {
|
|
34479
34495
|
init_config();
|
|
34480
34496
|
init_model_loader();
|
|
@@ -95687,6 +95703,19 @@ function findMagmuxBinary() {
|
|
|
95687
95703
|
const bundledMagmux = join27(pkgRoot, "native", "magmux", `magmux-${platform3}-${arch}`);
|
|
95688
95704
|
if (existsSync26(bundledMagmux))
|
|
95689
95705
|
return bundledMagmux;
|
|
95706
|
+
try {
|
|
95707
|
+
const pkgName = `@claudish/magmux-${platform3}-${arch}`;
|
|
95708
|
+
let searchDir = pkgRoot;
|
|
95709
|
+
for (let i = 0;i < 5; i++) {
|
|
95710
|
+
const candidate = join27(searchDir, "node_modules", pkgName, "bin", "magmux");
|
|
95711
|
+
if (existsSync26(candidate))
|
|
95712
|
+
return candidate;
|
|
95713
|
+
const parent = dirname6(searchDir);
|
|
95714
|
+
if (parent === searchDir)
|
|
95715
|
+
break;
|
|
95716
|
+
searchDir = parent;
|
|
95717
|
+
}
|
|
95718
|
+
} catch {}
|
|
95690
95719
|
try {
|
|
95691
95720
|
const result = execSync3("which magmux", { encoding: "utf-8" }).trim();
|
|
95692
95721
|
if (result)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudish",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.1",
|
|
4
4
|
"description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"dist/",
|
|
42
|
-
"native/magmux/magmux-*",
|
|
43
42
|
"AI_AGENT_GUIDE.md",
|
|
44
43
|
"recommended-models.json",
|
|
45
44
|
"skills/"
|
|
@@ -59,6 +58,12 @@
|
|
|
59
58
|
"model-context-protocol",
|
|
60
59
|
"ai"
|
|
61
60
|
],
|
|
61
|
+
"optionalDependencies": {
|
|
62
|
+
"@claudish/magmux-darwin-arm64": "6.8.1",
|
|
63
|
+
"@claudish/magmux-darwin-x64": "6.8.1",
|
|
64
|
+
"@claudish/magmux-linux-arm64": "6.8.1",
|
|
65
|
+
"@claudish/magmux-linux-x64": "6.8.1"
|
|
66
|
+
},
|
|
62
67
|
"author": "Jack Rudenko <i@madappgang.com>",
|
|
63
68
|
"license": "MIT",
|
|
64
69
|
"repository": {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|