claudish 6.4.5 → 6.4.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.
- package/dist/index.js +6 -5
- package/package.json +1 -1
- package/recommended-models.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30977,7 +30977,7 @@ async function fetchGLMCodingModels() {
|
|
|
30977
30977
|
return [];
|
|
30978
30978
|
}
|
|
30979
30979
|
}
|
|
30980
|
-
var __filename4, __dirname4, VERSION = "6.4.
|
|
30980
|
+
var __filename4, __dirname4, VERSION = "6.4.6", CACHE_MAX_AGE_DAYS2 = 2, CLAUDISH_CACHE_DIR2, BUNDLED_MODELS_PATH, CACHED_MODELS_PATH, ALL_MODELS_JSON_PATH;
|
|
30981
30981
|
var init_cli = __esm(() => {
|
|
30982
30982
|
init_config();
|
|
30983
30983
|
init_model_loader();
|
|
@@ -95384,10 +95384,11 @@ var isKimiLogout = args.includes("--kimi-logout");
|
|
|
95384
95384
|
var isUpdateCommand = args.includes("update");
|
|
95385
95385
|
var isInitCommand = args[0] === "init" || args.includes("init");
|
|
95386
95386
|
var isProfileCommand = args[0] === "profile" || args.some((a, i) => a === "profile" && (i === 0 || !args[i - 1]?.startsWith("-")));
|
|
95387
|
-
var
|
|
95388
|
-
var
|
|
95389
|
-
var
|
|
95390
|
-
var
|
|
95387
|
+
var firstPositional = args.find((a) => !a.startsWith("-"));
|
|
95388
|
+
var isTelemetryCommand = firstPositional === "telemetry";
|
|
95389
|
+
var isStatsCommand = firstPositional === "stats";
|
|
95390
|
+
var isConfigCommand = firstPositional === "config";
|
|
95391
|
+
var isTeamCommand = firstPositional === "team";
|
|
95391
95392
|
if (isMcpMode) {
|
|
95392
95393
|
Promise.resolve().then(() => (init_mcp_server(), exports_mcp_server)).then((mcp) => mcp.startMcpServer());
|
|
95393
95394
|
} else if (isGeminiLogin) {
|
package/package.json
CHANGED