ccjk 13.3.19 → 13.3.21
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/chunks/features.mjs
CHANGED
|
@@ -316,15 +316,13 @@ ${a.green(`\u2139 ${i18n.t("configuration:existingModelConfig") || "Existing mod
|
|
|
316
316
|
}
|
|
317
317
|
}
|
|
318
318
|
const { model } = await inquirer.prompt({
|
|
319
|
-
type: "
|
|
319
|
+
type: "list",
|
|
320
320
|
name: "model",
|
|
321
321
|
message: i18n.t("configuration:selectDefaultModel") || "Select default model",
|
|
322
|
-
choices:
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
}))
|
|
327
|
-
),
|
|
322
|
+
choices: DEFAULT_MODEL_CHOICES.map((choice) => ({
|
|
323
|
+
name: i18n.t(choice.nameKey) || choice.fallback,
|
|
324
|
+
value: choice.value
|
|
325
|
+
})),
|
|
328
326
|
default: existingModel ? DEFAULT_MODEL_CHOICES.findIndex((choice) => choice.value === existingModel) : 0
|
|
329
327
|
});
|
|
330
328
|
if (!model) {
|
package/dist/chunks/package.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.3.
|
|
4
|
+
"version": "13.3.21",
|
|
5
5
|
"description": "Turn Claude Code into a production-ready AI dev environment with one-command setup, persistent memory, MCP automation, cloud sync, and zero-config browser workflows.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "CCJK Team",
|