claudish 6.5.3 → 6.6.0
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 +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -34311,7 +34311,7 @@ async function fetchGLMCodingModels() {
|
|
|
34311
34311
|
return [];
|
|
34312
34312
|
}
|
|
34313
34313
|
}
|
|
34314
|
-
var __filename4, __dirname4, VERSION = "6.
|
|
34314
|
+
var __filename4, __dirname4, VERSION = "6.6.0", CACHE_MAX_AGE_DAYS2 = 2, CLAUDISH_CACHE_DIR2, BUNDLED_MODELS_PATH, CACHED_MODELS_PATH, ALL_MODELS_JSON_PATH;
|
|
34315
34315
|
var init_cli = __esm(() => {
|
|
34316
34316
|
init_config();
|
|
34317
34317
|
init_model_loader();
|
|
@@ -95688,8 +95688,10 @@ async function runWithGrid(sessionPath, models, input, opts) {
|
|
|
95688
95688
|
`if [ -n "$MAGMUX_SOCK" ]; then`,
|
|
95689
95689
|
` if [ $_ec -eq 0 ]; then`,
|
|
95690
95690
|
` echo '{"cmd":"tint","pane":${paneIndex},"color":"green"}' | nc -U "$MAGMUX_SOCK" -w 1 2>/dev/null;`,
|
|
95691
|
+
` echo '{"cmd":"overlay","pane":${paneIndex},"text":"DONE","color":"green"}' | nc -U "$MAGMUX_SOCK" -w 1 2>/dev/null;`,
|
|
95691
95692
|
` else`,
|
|
95692
95693
|
` echo '{"cmd":"tint","pane":${paneIndex},"color":"red"}' | nc -U "$MAGMUX_SOCK" -w 1 2>/dev/null;`,
|
|
95694
|
+
` echo '{"cmd":"overlay","pane":${paneIndex},"text":"FAIL","color":"red"}' | nc -U "$MAGMUX_SOCK" -w 1 2>/dev/null;`,
|
|
95693
95695
|
` fi;`,
|
|
95694
95696
|
`fi;`,
|
|
95695
95697
|
`exec sleep 86400`
|
|
@@ -95729,6 +95731,8 @@ async function runWithGrid(sessionPath, models, input, opts) {
|
|
|
95729
95731
|
const spawnArgs = ["-g", gridfilePath, "-S", statusbarPath];
|
|
95730
95732
|
if (mux.kind === "mtm") {
|
|
95731
95733
|
spawnArgs.push("-t", "xterm-256color");
|
|
95734
|
+
} else {
|
|
95735
|
+
spawnArgs.push("-w");
|
|
95732
95736
|
}
|
|
95733
95737
|
const proc = spawn3(mux.path, spawnArgs, {
|
|
95734
95738
|
stdio: "inherit",
|