ccjk 9.4.12 → 9.4.13
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/mcp.mjs
CHANGED
|
@@ -303,7 +303,7 @@ const MCP_PROFILES = [
|
|
|
303
303
|
nameZh: "\u5F00\u53D1\u6A21\u5F0F",
|
|
304
304
|
description: "Suitable for daily development",
|
|
305
305
|
descriptionZh: "\u9002\u5408\u65E5\u5E38\u5F00\u53D1",
|
|
306
|
-
services: ["context7", "open-websearch", "mcp-deepwiki", "
|
|
306
|
+
services: ["context7", "open-websearch", "mcp-deepwiki", "sqlite"],
|
|
307
307
|
maxServices: 5,
|
|
308
308
|
tier: "ondemand",
|
|
309
309
|
isDefault: true
|
package/dist/chunks/package.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const name = "ccjk";
|
|
2
2
|
const type = "module";
|
|
3
|
-
const version = "9.4.
|
|
3
|
+
const version = "9.4.12";
|
|
4
4
|
const packageManager = "pnpm@10.17.1";
|
|
5
5
|
const description = "CCJK v9.0.0 - Revolutionary AI Development Platform with Enterprise Security, Streaming Cloud Sync, CRDT Conflict Resolution, and Unified V3 Architecture";
|
|
6
6
|
const author = {
|
|
@@ -139,7 +139,7 @@ async function promptCustomConfig() {
|
|
|
139
139
|
{
|
|
140
140
|
type: "confirm",
|
|
141
141
|
name: "customizeMcp",
|
|
142
|
-
message: isZh ? "\u662F\u5426\u81EA\u5B9A\u4E49 MCP \u670D\u52A1? (\u9ED8\u8BA4:
|
|
142
|
+
message: isZh ? "\u662F\u5426\u81EA\u5B9A\u4E49 MCP \u670D\u52A1? (\u9ED8\u8BA4: context7, mcp-deepwiki, open-websearch)" : "Customize MCP services? (default: context7, mcp-deepwiki, open-websearch)",
|
|
143
143
|
default: false
|
|
144
144
|
},
|
|
145
145
|
{
|
|
@@ -164,17 +164,18 @@ async function promptMcpServices() {
|
|
|
164
164
|
name: "services",
|
|
165
165
|
message: isZh ? "\u9009\u62E9 MCP \u670D\u52A1:" : "Select MCP services:",
|
|
166
166
|
choices: [
|
|
167
|
-
{ name: "
|
|
168
|
-
{ name: "
|
|
169
|
-
{ name: "
|
|
170
|
-
{ name: "
|
|
171
|
-
{ name: "
|
|
167
|
+
{ name: "context7 (\u6587\u6863\u67E5\u8BE2)", value: "context7", checked: true },
|
|
168
|
+
{ name: "mcp-deepwiki (DeepWiki)", value: "mcp-deepwiki", checked: true },
|
|
169
|
+
{ name: "open-websearch (\u7F51\u7EDC\u641C\u7D22)", value: "open-websearch", checked: true },
|
|
170
|
+
{ name: "spec-workflow (\u89C4\u8303\u5DE5\u4F5C\u6D41)", value: "spec-workflow" },
|
|
171
|
+
{ name: "serena (Serena \u52A9\u624B)", value: "serena" },
|
|
172
|
+
{ name: "Playwright (\u6D4F\u89C8\u5668\u81EA\u52A8\u5316)", value: "Playwright" },
|
|
172
173
|
{ name: "sqlite (\u6570\u636E\u5E93)", value: "sqlite" },
|
|
173
174
|
{ name: isZh ? "\u5168\u90E8" : "All", value: "__all__" }
|
|
174
175
|
]
|
|
175
176
|
});
|
|
176
177
|
if (services.includes("__all__")) {
|
|
177
|
-
return ["
|
|
178
|
+
return ["context7", "mcp-deepwiki", "open-websearch", "spec-workflow", "serena", "Playwright", "sqlite"];
|
|
178
179
|
}
|
|
179
180
|
return services;
|
|
180
181
|
}
|
|
@@ -230,7 +231,7 @@ function applyDefaultsToInitOptions(defaults, apiKey, provider, lang, skipApiCon
|
|
|
230
231
|
apiType: skipApiConfig ? "skip" : "api_key",
|
|
231
232
|
apiKey: skipApiConfig ? void 0 : apiKey,
|
|
232
233
|
provider: skipApiConfig ? void 0 : provider,
|
|
233
|
-
//
|
|
234
|
+
// Recommended MCP services based on platform
|
|
234
235
|
mcpServices: defaults.mcpServices,
|
|
235
236
|
// Essential skills (git-commit, feat, workflow, init-project)
|
|
236
237
|
workflows: defaults.skills.map((s) => s.replace("ccjk:", "")),
|
|
@@ -22,12 +22,8 @@ class SmartDefaultsDetector {
|
|
|
22
22
|
// API configuration
|
|
23
23
|
apiKey,
|
|
24
24
|
apiProvider,
|
|
25
|
-
//
|
|
26
|
-
mcpServices:
|
|
27
|
-
"filesystem",
|
|
28
|
-
"git",
|
|
29
|
-
"fetch"
|
|
30
|
-
],
|
|
25
|
+
// Recommended MCP services based on platform
|
|
26
|
+
mcpServices: this.getRecommendedMcpServices(platform),
|
|
31
27
|
// Essential skills (common 5)
|
|
32
28
|
skills: [
|
|
33
29
|
"ccjk:git-commit",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "9.4.
|
|
4
|
+
"version": "9.4.13",
|
|
5
5
|
"packageManager": "pnpm@10.17.1",
|
|
6
6
|
"description": "CCJK v9.0.0 - Revolutionary AI Development Platform with Enterprise Security, Streaming Cloud Sync, CRDT Conflict Resolution, and Unified V3 Architecture",
|
|
7
7
|
"author": {
|