ccjk 13.6.4 → 13.6.7
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/agents.mjs +1 -1
- package/dist/chunks/api-config-selector.mjs +6 -4
- package/dist/chunks/auto-updater.mjs +100 -2
- package/dist/chunks/banner.mjs +0 -16
- package/dist/chunks/ccjk-mcp.mjs +2 -2
- package/dist/chunks/ccr.mjs +6 -4
- package/dist/chunks/check-updates.mjs +28 -17
- package/dist/chunks/claude-code-config-manager.mjs +3 -1
- package/dist/chunks/claude-code-incremental-manager.mjs +46 -20
- package/dist/chunks/claude-config.mjs +52 -2
- package/dist/chunks/claude-wrapper.mjs +1 -1
- package/dist/chunks/cli-hook.mjs +25 -83
- package/dist/chunks/codex-config-switch.mjs +3 -2
- package/dist/chunks/codex-provider-manager.mjs +1 -0
- package/dist/chunks/codex.mjs +3 -359
- package/dist/chunks/config-switch.mjs +23 -10
- package/dist/chunks/config.mjs +1 -1
- package/dist/chunks/config2.mjs +3 -3
- package/dist/chunks/constants.mjs +179 -3
- package/dist/chunks/doctor.mjs +1 -1
- package/dist/chunks/features.mjs +76 -11
- package/dist/chunks/index10.mjs +55 -36
- package/dist/chunks/init.mjs +120 -61
- package/dist/chunks/installer.mjs +80 -19
- package/dist/chunks/mcp-cli.mjs +17 -16
- package/dist/chunks/mcp.mjs +8 -7
- package/dist/chunks/memory-check.mjs +1 -1
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/platform.mjs +5 -1
- package/dist/chunks/quick-setup.mjs +13 -11
- package/dist/chunks/research.mjs +1177 -0
- package/dist/chunks/sessions.mjs +1 -1
- package/dist/chunks/smart-defaults.mjs +42 -14
- package/dist/chunks/uninstall.mjs +2 -2
- package/dist/chunks/update.mjs +14 -13
- package/dist/chunks/version-checker.mjs +11 -1
- package/dist/cli.mjs +32 -0
- package/dist/i18n/locales/en/cli.json +0 -4
- package/dist/i18n/locales/en/menu.json +3 -3
- package/dist/i18n/locales/en/notification.json +2 -2
- package/dist/i18n/locales/zh-CN/cli.json +0 -4
- package/dist/i18n/locales/zh-CN/menu.json +3 -3
- package/dist/i18n/locales/zh-CN/notification.json +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +8 -174
- package/dist/shared/{ccjk.DvAP4XfP.mjs → ccjk.B4aXNclK.mjs} +2 -2
- package/dist/shared/ccjk.BI-hdI7P.mjs +30 -0
- package/dist/shared/{ccjk.DwSebGy0.mjs → ccjk.BOO14f66.mjs} +1 -1
- package/dist/shared/ccjk.BnsY5WxD.mjs +171 -0
- package/dist/shared/{ccjk.C4m4ypdk.mjs → ccjk.DHaUdzX3.mjs} +4 -3
- package/dist/shared/ccjk.DKXs7Fbm.mjs +361 -0
- package/dist/shared/{ccjk.BP5hsTZQ.mjs → ccjk.Dz0ssUQx.mjs} +1 -1
- package/dist/shared/ccjk.yYQMbHH3.mjs +115 -0
- package/package.json +70 -65
- package/templates/common/workflow/essential/en/feat.md +68 -291
- package/templates/common/workflow/sixStep/en/workflow.md +56 -330
- package/dist/shared/ccjk.CiKtBUW_.mjs +0 -54
package/dist/chunks/platform.mjs
CHANGED
|
@@ -230,6 +230,7 @@ async function getHomebrewCommandPaths(command) {
|
|
|
230
230
|
}
|
|
231
231
|
const caskNameMap = {
|
|
232
232
|
claude: "claude-code",
|
|
233
|
+
myclaude: "myclaude-code",
|
|
233
234
|
codex: "codex"
|
|
234
235
|
};
|
|
235
236
|
const caskName = caskNameMap[command];
|
|
@@ -356,6 +357,9 @@ function getRecommendedInstallMethods(codeType) {
|
|
|
356
357
|
return ["powershell", "npm"];
|
|
357
358
|
}
|
|
358
359
|
}
|
|
360
|
+
if (codeType === "myclaude") {
|
|
361
|
+
return ["npm"];
|
|
362
|
+
}
|
|
359
363
|
if (codeType === "codex") {
|
|
360
364
|
if (platform2 === "macos") {
|
|
361
365
|
return ["homebrew", "npm"];
|
|
@@ -388,4 +392,4 @@ const platform = {
|
|
|
388
392
|
wrapCommandWithSudo: wrapCommandWithSudo
|
|
389
393
|
};
|
|
390
394
|
|
|
391
|
-
export { getHomebrewCommandPaths as a,
|
|
395
|
+
export { getHomebrewCommandPaths as a, isTermux as b, getTermuxPrefix as c, isWSL as d, getWSLInfo as e, findCommandPath as f, getPlatform as g, commandExists as h, isWindows as i, getRecommendedInstallMethods as j, findRealCommandPath as k, getMcpCommand as l, getSystemRoot as m, normalizeTomlPath as n, platform as p, shouldUseSudoForGlobalInstall as s, wrapCommandWithSudo as w };
|
|
@@ -37,25 +37,27 @@ import '../shared/ccjk.DJuyfrlL.mjs';
|
|
|
37
37
|
import 'node:url';
|
|
38
38
|
import '../shared/ccjk.BBtCGd_g.mjs';
|
|
39
39
|
import './index3.mjs';
|
|
40
|
-
import '
|
|
41
|
-
import './
|
|
42
|
-
import '
|
|
43
|
-
import '../shared/ccjk.CxpGa6MC.mjs';
|
|
44
|
-
import './config.mjs';
|
|
40
|
+
import '../shared/ccjk.DKXs7Fbm.mjs';
|
|
41
|
+
import './banner.mjs';
|
|
42
|
+
import './config2.mjs';
|
|
45
43
|
import './claude-config.mjs';
|
|
44
|
+
import './config.mjs';
|
|
46
45
|
import '../shared/ccjk.DScm_NnL.mjs';
|
|
47
|
-
import '../shared/ccjk.BFQ7yr5S.mjs';
|
|
48
|
-
import './prompts.mjs';
|
|
49
46
|
import '../shared/ccjk.DZ2LLOa-.mjs';
|
|
50
|
-
import '
|
|
51
|
-
import './config2.mjs';
|
|
47
|
+
import '../shared/ccjk.DeWpAShp.mjs';
|
|
52
48
|
import './auto-updater.mjs';
|
|
49
|
+
import './index8.mjs';
|
|
53
50
|
import './version-checker.mjs';
|
|
54
|
-
import '../shared/ccjk.
|
|
51
|
+
import '../shared/ccjk.CxpGa6MC.mjs';
|
|
52
|
+
import './codex.mjs';
|
|
53
|
+
import '../shared/ccjk.BFQ7yr5S.mjs';
|
|
54
|
+
import './prompts.mjs';
|
|
55
|
+
import '../shared/ccjk.yYQMbHH3.mjs';
|
|
55
56
|
import '../shared/ccjk.DDq2hqA5.mjs';
|
|
56
|
-
import '../shared/ccjk.
|
|
57
|
+
import '../shared/ccjk.Dz0ssUQx.mjs';
|
|
57
58
|
import '../shared/ccjk.DGllfVCZ.mjs';
|
|
58
59
|
import './installer.mjs';
|
|
60
|
+
import '../shared/ccjk.BI-hdI7P.mjs';
|
|
59
61
|
import '../shared/ccjk.BJENIVf7.mjs';
|
|
60
62
|
import '../shared/ccjk.Bq8TqZG_.mjs';
|
|
61
63
|
|