ccjk 13.6.5 → 14.0.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/chunks/api-cli.mjs +4 -2
- package/dist/chunks/api-config-selector.mjs +7 -7
- package/dist/chunks/auto-fix.mjs +3 -1
- package/dist/chunks/auto-updater.mjs +100 -2
- package/dist/chunks/banner.mjs +0 -16
- package/dist/chunks/ccjk-all.mjs +5 -2
- package/dist/chunks/ccjk-mcp.mjs +6 -3
- package/dist/chunks/ccjk-setup.mjs +4 -1
- package/dist/chunks/ccr.mjs +5 -5
- package/dist/chunks/check-updates.mjs +12 -2
- package/dist/chunks/claude-code-incremental-manager.mjs +45 -21
- package/dist/chunks/claude-wrapper.mjs +1 -1
- package/dist/chunks/cli-hook.mjs +4 -5
- package/dist/chunks/codex-config-switch.mjs +3 -3
- package/dist/chunks/codex-provider-manager.mjs +1 -1
- package/dist/chunks/codex.mjs +4 -360
- package/dist/chunks/config-switch.mjs +22 -11
- package/dist/chunks/config.mjs +1104 -5
- package/dist/chunks/config2.mjs +6 -4
- package/dist/chunks/config3.mjs +4 -2
- package/dist/chunks/constants.mjs +1 -1
- package/dist/chunks/doctor.mjs +2 -2
- package/dist/chunks/evolution.mjs +47 -27
- package/dist/chunks/features.mjs +76 -12
- package/dist/chunks/index10.mjs +78 -24
- package/dist/chunks/init.mjs +18 -35
- package/dist/chunks/installer.mjs +3 -3
- package/dist/chunks/mcp-cli.mjs +16 -16
- package/dist/chunks/mcp.mjs +9 -9
- package/dist/chunks/memory-check.mjs +1 -1
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/platform.mjs +1 -1
- package/dist/chunks/quick-setup.mjs +11 -10
- package/dist/chunks/research.mjs +225 -27
- package/dist/chunks/slash-commands.mjs +1 -1
- package/dist/chunks/smart-defaults.mjs +2 -2
- package/dist/chunks/uninstall.mjs +1 -1
- package/dist/chunks/update.mjs +16 -16
- package/dist/chunks/version-checker.mjs +11 -1
- package/dist/cli.mjs +5 -1
- package/dist/i18n/locales/en/cli.json +0 -4
- package/dist/i18n/locales/en/menu.json +10 -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 +10 -3
- package/dist/i18n/locales/zh-CN/notification.json +2 -2
- package/dist/index.mjs +3 -2
- package/dist/shared/{ccjk.C4m4ypdk.mjs → ccjk.B6VCKdyy.mjs} +4 -3
- package/dist/shared/ccjk.BI-hdI7P.mjs +30 -0
- package/dist/shared/{ccjk.DvAP4XfP.mjs → ccjk.CVjfbEIj.mjs} +2 -2
- package/dist/shared/ccjk.DKXs7Fbm.mjs +361 -0
- package/dist/shared/{ccjk.BP5hsTZQ.mjs → ccjk.Dh6Be-ef.mjs} +2 -2
- package/package.json +3 -1
- package/templates/common/workflow/essential/en/feat.md +68 -291
- package/templates/common/workflow/sixStep/en/workflow.md +56 -330
- package/dist/chunks/claude-code-config-manager.mjs +0 -809
- package/dist/chunks/claude-config.mjs +0 -253
package/dist/chunks/init.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { existsSync } from 'node:fs';
|
|
|
2
2
|
import process__default from 'node:process';
|
|
3
3
|
import a from './index5.mjs';
|
|
4
4
|
import { i as inquirer } from './index6.mjs';
|
|
5
|
-
import {
|
|
5
|
+
import { M as MCP_SERVICE_CONFIGS, g as getMcpServices } from '../shared/ccjk.DKXs7Fbm.mjs';
|
|
6
6
|
import { SETTINGS_FILE, API_DEFAULT_URL, DEFAULT_CODE_TOOL_TYPE, CODE_TOOL_BANNERS, isClaudeFamilyCodeTool, CODE_TOOL_INFO } from './constants.mjs';
|
|
7
7
|
import { ensureI18nInitialized, i18n } from './index2.mjs';
|
|
8
8
|
import { displayBannerWithInfo, padToDisplayWidth } from './banner.mjs';
|
|
@@ -11,16 +11,17 @@ import { readCcrConfig, backupCcrConfig, createDefaultCcrConfig, writeCcrConfig,
|
|
|
11
11
|
import { exec } from 'node:child_process';
|
|
12
12
|
import { promisify } from 'node:util';
|
|
13
13
|
import { updateCcr } from './auto-updater.mjs';
|
|
14
|
-
import { w as wrapCommandWithSudo,
|
|
15
|
-
import {
|
|
14
|
+
import { w as wrapCommandWithSudo, i as isWindows, b as isTermux } from './platform.mjs';
|
|
15
|
+
import { v as setMyclaudeProviderProfiles, p as promptApiConfigurationAction, n as addCompletedOnboarding, l as setPrimaryApiKey, x as ensureClaudeDir, y as clearMyclaudeProviderProfiles, h as getExistingApiConfig, q as switchToOfficialLogin, b as backupExistingConfig, k as copyConfigFiles, t as applyAiLanguageDirective, i as configureApi, d as backupMcpConfig, e as buildMcpServerConfig, r as readMcpConfig, z as replaceMcpServers, f as fixWindowsMcpConfig, w as writeMcpConfig, A as syncMcpPermissions } from './config.mjs';
|
|
16
|
+
import { h as runCodexFullInit } from './codex.mjs';
|
|
16
17
|
import { a as resolveStartupCodeType, r as resolveCodeType } from '../shared/ccjk.yYQMbHH3.mjs';
|
|
17
18
|
import { exists } from './fs-operations.mjs';
|
|
18
19
|
import { readJsonConfig, writeJsonConfig } from './json-config.mjs';
|
|
19
|
-
import { p as promptApiConfigurationAction, i as ensureClaudeDir, d as getExistingApiConfig, s as switchToOfficialLogin, b as backupExistingConfig, f as copyConfigFiles, h as applyAiLanguageDirective, e as configureApi } from './config.mjs';
|
|
20
20
|
import { n as needsMigration, m as migrateSettingsForTokenRetrieval, d as displayMigrationResult, p as promptMigration } from '../shared/ccjk.DDq2hqA5.mjs';
|
|
21
|
-
import { m as modifyApiConfigPartially,
|
|
21
|
+
import { m as modifyApiConfigPartially, a as configureApiCompletely, c as configureOutputStyle, f as formatApiKeyDisplay } from '../shared/ccjk.Dh6Be-ef.mjs';
|
|
22
22
|
import { a as handleExitPromptError, h as handleGeneralError } from '../shared/ccjk.DGllfVCZ.mjs';
|
|
23
23
|
import { getInstallationStatus, installMyclaude, installClaudeCode } from './installer.mjs';
|
|
24
|
+
import { s as selectMcpServices } from '../shared/ccjk.BI-hdI7P.mjs';
|
|
24
25
|
import { p as parseOrchestrationLevel, w as writeOrchestrationPolicy } from './smart-defaults.mjs';
|
|
25
26
|
import { a as addNumbersToChoices } from '../shared/ccjk.BFQ7yr5S.mjs';
|
|
26
27
|
import { resolveAiOutputLanguage } from './prompts.mjs';
|
|
@@ -97,30 +98,6 @@ async function installCcr() {
|
|
|
97
98
|
}
|
|
98
99
|
}
|
|
99
100
|
|
|
100
|
-
async function selectMcpServices() {
|
|
101
|
-
ensureI18nInitialized();
|
|
102
|
-
const mcpServices = await getMcpServices();
|
|
103
|
-
const defaultSelectedIds = new Set(
|
|
104
|
-
MCP_SERVICE_CONFIGS.filter((c) => c.defaultSelected).map((c) => c.id)
|
|
105
|
-
);
|
|
106
|
-
const choices = mcpServices.map((service) => ({
|
|
107
|
-
name: `${service.name} - ${a.gray(service.description)}`,
|
|
108
|
-
value: service.id,
|
|
109
|
-
checked: defaultSelectedIds.has(service.id)
|
|
110
|
-
}));
|
|
111
|
-
const { services } = await inquirer.prompt({
|
|
112
|
-
type: "checkbox",
|
|
113
|
-
name: "services",
|
|
114
|
-
message: `${i18n.t("mcp:selectMcpServices")}${i18n.t("common:multiSelectHint")}`,
|
|
115
|
-
choices
|
|
116
|
-
});
|
|
117
|
-
if (services === void 0) {
|
|
118
|
-
console.log(a.yellow(i18n.t("common:cancelled")));
|
|
119
|
-
return void 0;
|
|
120
|
-
}
|
|
121
|
-
return services;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
101
|
const COMETIX_PACKAGE_NAME = "@cometix/ccline";
|
|
125
102
|
const COMETIX_COMMAND_NAME = "ccline";
|
|
126
103
|
const COMETIX_COMMANDS = {
|
|
@@ -792,7 +769,7 @@ async function validateApiConfigs(configs) {
|
|
|
792
769
|
}
|
|
793
770
|
}
|
|
794
771
|
async function handleClaudeCodeConfigs(configs) {
|
|
795
|
-
const { ClaudeCodeConfigManager } = await import('./
|
|
772
|
+
const { ClaudeCodeConfigManager } = await import('./config.mjs').then(function (n) { return n.D; });
|
|
796
773
|
const addedProfiles = [];
|
|
797
774
|
for (const config of configs) {
|
|
798
775
|
if (config.type === "ccr_proxy") {
|
|
@@ -861,7 +838,7 @@ async function handleCodexConfigs(configs) {
|
|
|
861
838
|
}
|
|
862
839
|
const defaultConfig = configs.find((c) => c.default);
|
|
863
840
|
if (defaultConfig) {
|
|
864
|
-
const { switchCodexProvider } = await import('./codex.mjs').then(function (n) { return n.
|
|
841
|
+
const { switchCodexProvider } = await import('./codex.mjs').then(function (n) { return n.q; });
|
|
865
842
|
const displayName = defaultConfig.name || defaultConfig.provider || "custom";
|
|
866
843
|
const providerId = displayName.toLowerCase().replace(/[^a-z0-9]/g, "-");
|
|
867
844
|
if (addedProviderIds.includes(providerId)) {
|
|
@@ -883,7 +860,7 @@ async function handleCodexConfigs(configs) {
|
|
|
883
860
|
}
|
|
884
861
|
async function saveSingleConfigToToml(apiConfig, provider, options) {
|
|
885
862
|
try {
|
|
886
|
-
const { ClaudeCodeConfigManager } = await import('./
|
|
863
|
+
const { ClaudeCodeConfigManager } = await import('./config.mjs').then(function (n) { return n.D; });
|
|
887
864
|
const profile = await convertSingleConfigToProfile(apiConfig, provider, options);
|
|
888
865
|
const result = await ClaudeCodeConfigManager.addProfile(profile);
|
|
889
866
|
if (result.success) {
|
|
@@ -909,7 +886,7 @@ async function saveSingleConfigToToml(apiConfig, provider, options) {
|
|
|
909
886
|
}
|
|
910
887
|
}
|
|
911
888
|
async function buildClaudeCodeProfile(params) {
|
|
912
|
-
const { ClaudeCodeConfigManager } = await import('./
|
|
889
|
+
const { ClaudeCodeConfigManager } = await import('./config.mjs').then(function (n) { return n.D; });
|
|
913
890
|
let {
|
|
914
891
|
url: baseUrl,
|
|
915
892
|
authType,
|
|
@@ -930,6 +907,7 @@ async function buildClaudeCodeProfile(params) {
|
|
|
930
907
|
return {
|
|
931
908
|
name: params.name,
|
|
932
909
|
authType,
|
|
910
|
+
provider: params.provider || "custom",
|
|
933
911
|
apiKey: params.key,
|
|
934
912
|
baseUrl,
|
|
935
913
|
primaryModel,
|
|
@@ -974,7 +952,12 @@ async function convertToMyclaudeProviderProfile(config) {
|
|
|
974
952
|
apiKey: claudeProfile.apiKey,
|
|
975
953
|
baseUrl: claudeProfile.baseUrl,
|
|
976
954
|
model: claudeProfile.primaryModel,
|
|
977
|
-
fastModel: claudeProfile.defaultHaikuModel
|
|
955
|
+
fastModel: claudeProfile.defaultHaikuModel,
|
|
956
|
+
authType: claudeProfile.authType,
|
|
957
|
+
primaryModel: claudeProfile.primaryModel,
|
|
958
|
+
defaultHaikuModel: claudeProfile.defaultHaikuModel,
|
|
959
|
+
defaultSonnetModel: claudeProfile.defaultSonnetModel,
|
|
960
|
+
defaultOpusModel: claudeProfile.defaultOpusModel
|
|
978
961
|
};
|
|
979
962
|
}
|
|
980
963
|
async function convertToCodexProvider(config) {
|
|
@@ -1525,7 +1508,7 @@ async function init(options = {}) {
|
|
|
1525
1508
|
const hasModelParams = options.apiModel || options.apiHaikuModel || options.apiSonnetModel || options.apiOpusModel;
|
|
1526
1509
|
if (hasModelParams && action !== "docs-only" && (codeToolType === "claude-code" || codeToolType === "myclaude")) {
|
|
1527
1510
|
if (options.skipPrompt) {
|
|
1528
|
-
const { updateCustomModel } = await import('./config.mjs').then(function (n) { return n.
|
|
1511
|
+
const { updateCustomModel } = await import('./config.mjs').then(function (n) { return n.B; });
|
|
1529
1512
|
updateCustomModel(
|
|
1530
1513
|
options.apiModel || void 0,
|
|
1531
1514
|
options.apiHaikuModel || void 0,
|
|
@@ -9,7 +9,7 @@ import { getCodeToolRuntimeCommand, CODE_TOOL_INFO, isClaudeFamilyCodeTool } fro
|
|
|
9
9
|
import { ensureI18nInitialized, i18n } from './index2.mjs';
|
|
10
10
|
import { updateClaudeCode } from './auto-updater.mjs';
|
|
11
11
|
import { exists } from './fs-operations.mjs';
|
|
12
|
-
import { f as findCommandPath, g as getPlatform, a as getHomebrewCommandPaths,
|
|
12
|
+
import { f as findCommandPath, g as getPlatform, a as getHomebrewCommandPaths, b as isTermux, c as getTermuxPrefix, w as wrapCommandWithSudo, d as isWSL, e as getWSLInfo, h as commandExists, j as getRecommendedInstallMethods } from './platform.mjs';
|
|
13
13
|
import { j as join } from '../shared/ccjk.bQ7Dh1g4.mjs';
|
|
14
14
|
import '../shared/ccjk.BAGoDD49.mjs';
|
|
15
15
|
import 'node:readline';
|
|
@@ -224,7 +224,7 @@ async function getInstallationStatus(codeType = "claude-code") {
|
|
|
224
224
|
async function getInstallMethodFromConfig(codeType) {
|
|
225
225
|
try {
|
|
226
226
|
if (isClaudeFamilyCodeTool(codeType)) {
|
|
227
|
-
const { readMcpConfig } = await import('./
|
|
227
|
+
const { readMcpConfig } = await import('./config.mjs').then(function (n) { return n.E; });
|
|
228
228
|
const config = readMcpConfig();
|
|
229
229
|
return config?.installMethod || null;
|
|
230
230
|
}
|
|
@@ -348,7 +348,7 @@ async function uninstallCodeTool(codeType) {
|
|
|
348
348
|
async function setInstallMethod(method, codeType = "claude-code") {
|
|
349
349
|
try {
|
|
350
350
|
if (isClaudeFamilyCodeTool(codeType)) {
|
|
351
|
-
const { readMcpConfig, writeMcpConfig } = await import('./
|
|
351
|
+
const { readMcpConfig, writeMcpConfig } = await import('./config.mjs').then(function (n) { return n.E; });
|
|
352
352
|
let config = readMcpConfig();
|
|
353
353
|
if (!config) {
|
|
354
354
|
config = { mcpServers: {} };
|
package/dist/chunks/mcp-cli.mjs
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import a from './index5.mjs';
|
|
2
|
-
import { g as getMcpServices } from '
|
|
2
|
+
import { g as getMcpServices } from '../shared/ccjk.DKXs7Fbm.mjs';
|
|
3
3
|
import { i18n } from './index2.mjs';
|
|
4
|
-
import { r as readMcpConfig } from './
|
|
5
|
-
import { i as installMcpService, u as uninstallMcpService } from '../shared/ccjk.
|
|
4
|
+
import { r as readMcpConfig } from './config.mjs';
|
|
5
|
+
import { i as installMcpService, u as uninstallMcpService } from '../shared/ccjk.B6VCKdyy.mjs';
|
|
6
6
|
import '../shared/ccjk.BAGoDD49.mjs';
|
|
7
|
+
import 'node:child_process';
|
|
7
8
|
import 'node:process';
|
|
8
9
|
import 'node:fs';
|
|
9
10
|
import 'node:url';
|
|
11
|
+
import '../shared/ccjk.bQ7Dh1g4.mjs';
|
|
10
12
|
import '../shared/ccjk.RyizuzOI.mjs';
|
|
11
13
|
import './index6.mjs';
|
|
12
14
|
import 'node:readline';
|
|
@@ -23,24 +25,22 @@ import 'node:os';
|
|
|
23
25
|
import 'node:crypto';
|
|
24
26
|
import 'buffer';
|
|
25
27
|
import 'string_decoder';
|
|
26
|
-
import './
|
|
27
|
-
import '
|
|
28
|
-
import '
|
|
29
|
-
import '
|
|
28
|
+
import './constants.mjs';
|
|
29
|
+
import './json-config.mjs';
|
|
30
|
+
import './fs-operations.mjs';
|
|
31
|
+
import 'node:fs/promises';
|
|
32
|
+
import './platform.mjs';
|
|
30
33
|
import './main.mjs';
|
|
31
34
|
import 'module';
|
|
32
|
-
import 'node:child_process';
|
|
33
35
|
import 'node:stream';
|
|
34
|
-
import '
|
|
35
|
-
import '../shared/ccjk.bQ7Dh1g4.mjs';
|
|
36
|
+
import '../shared/ccjk.DScm_NnL.mjs';
|
|
36
37
|
import './ccjk-config.mjs';
|
|
38
|
+
import '../shared/ccjk.BBtCGd_g.mjs';
|
|
37
39
|
import './index3.mjs';
|
|
38
|
-
import './
|
|
39
|
-
import '
|
|
40
|
-
import '
|
|
41
|
-
import '
|
|
42
|
-
import '../shared/ccjk.DScm_NnL.mjs';
|
|
43
|
-
import './platform.mjs';
|
|
40
|
+
import './codex.mjs';
|
|
41
|
+
import './index8.mjs';
|
|
42
|
+
import '../shared/ccjk.DeWpAShp.mjs';
|
|
43
|
+
import '../shared/ccjk.CxpGa6MC.mjs';
|
|
44
44
|
import '../shared/ccjk.BFQ7yr5S.mjs';
|
|
45
45
|
import './prompts.mjs';
|
|
46
46
|
import '../shared/ccjk.gDEDGD_t.mjs';
|
package/dist/chunks/mcp.mjs
CHANGED
|
@@ -5,10 +5,11 @@ import { readZcfConfig } from './ccjk-config.mjs';
|
|
|
5
5
|
import 'node:child_process';
|
|
6
6
|
import 'node:process';
|
|
7
7
|
import { M as MCP_SERVICE_TIERS, i as isCoreService, g as getServicesByTier, c as checkMcpPerformance, f as formatPerformanceWarning, a as calculateResourceUsage, b as getOptimizationSuggestions, d as getMcpTierConfig } from './mcp-performance.mjs';
|
|
8
|
-
import { r as readMcpConfig,
|
|
9
|
-
export { m as mcpInstall, a as mcpList, b as mcpSearch, c as mcpUninstall } from '../shared/ccjk.
|
|
10
|
-
import { M as MCP_SERVICE_CONFIGS
|
|
11
|
-
import {
|
|
8
|
+
import { r as readMcpConfig, d as backupMcpConfig, w as writeMcpConfig } from './config.mjs';
|
|
9
|
+
export { m as mcpInstall, a as mcpList, b as mcpSearch, c as mcpUninstall } from '../shared/ccjk.CVjfbEIj.mjs';
|
|
10
|
+
import { M as MCP_SERVICE_CONFIGS } from '../shared/ccjk.DKXs7Fbm.mjs';
|
|
11
|
+
import { r as readCodexConfig, e as backupCodexComplete, w as writeCodexConfig, g as applyCodexPlatformCommand } from './codex.mjs';
|
|
12
|
+
import { i as isWindows, l as getSystemRoot } from './platform.mjs';
|
|
12
13
|
import '../shared/ccjk.BAGoDD49.mjs';
|
|
13
14
|
import 'node:os';
|
|
14
15
|
import '../shared/ccjk.bQ7Dh1g4.mjs';
|
|
@@ -34,15 +35,14 @@ import 'child_process';
|
|
|
34
35
|
import 'node:path';
|
|
35
36
|
import 'buffer';
|
|
36
37
|
import 'string_decoder';
|
|
37
|
-
import '../shared/ccjk.
|
|
38
|
+
import '../shared/ccjk.DScm_NnL.mjs';
|
|
39
|
+
import '../shared/ccjk.B6VCKdyy.mjs';
|
|
38
40
|
import './index8.mjs';
|
|
39
41
|
import '../shared/ccjk.DeWpAShp.mjs';
|
|
40
42
|
import '../shared/ccjk.CxpGa6MC.mjs';
|
|
41
43
|
import './main.mjs';
|
|
42
44
|
import 'module';
|
|
43
45
|
import 'node:stream';
|
|
44
|
-
import './config.mjs';
|
|
45
|
-
import '../shared/ccjk.DScm_NnL.mjs';
|
|
46
46
|
import '../shared/ccjk.BFQ7yr5S.mjs';
|
|
47
47
|
import './prompts.mjs';
|
|
48
48
|
import '../shared/ccjk.gDEDGD_t.mjs';
|
|
@@ -575,8 +575,8 @@ function getServiceTier(serviceId, tiers) {
|
|
|
575
575
|
return caseInsensitiveMatch?.[1] || "ondemand";
|
|
576
576
|
}
|
|
577
577
|
async function mcpStatus(options = {}) {
|
|
578
|
-
const { readMcpConfig } = await import('./
|
|
579
|
-
const { readCodexConfig } = await import('./codex.mjs').then(function (n) { return n.
|
|
578
|
+
const { readMcpConfig } = await import('./config.mjs').then(function (n) { return n.E; });
|
|
579
|
+
const { readCodexConfig } = await import('./codex.mjs').then(function (n) { return n.q; });
|
|
580
580
|
const { checkMcpPerformance, formatPerformanceWarning } = await import('./mcp-performance.mjs').then(function (n) { return n.e; });
|
|
581
581
|
const { MCP_SERVICE_TIERS } = await import('./mcp-performance.mjs').then(function (n) { return n.m; });
|
|
582
582
|
const lang = options.lang || i18n.language || "en";
|
|
@@ -2940,7 +2940,7 @@ const memoryCheck = {
|
|
|
2940
2940
|
}
|
|
2941
2941
|
const fixes = [];
|
|
2942
2942
|
if (!hasMemoryDir || !hasMemoryContent) {
|
|
2943
|
-
fixes.push("Enable Claude
|
|
2943
|
+
fixes.push("Enable shared Claude-family memory in settings");
|
|
2944
2944
|
result.command = "ccjk menu";
|
|
2945
2945
|
}
|
|
2946
2946
|
if (!hasCcjkRules) {
|
package/dist/chunks/package.mjs
CHANGED
package/dist/chunks/platform.mjs
CHANGED
|
@@ -392,4 +392,4 @@ const platform = {
|
|
|
392
392
|
wrapCommandWithSudo: wrapCommandWithSudo
|
|
393
393
|
};
|
|
394
394
|
|
|
395
|
-
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, getSystemRoot as l, getMcpCommand as m, normalizeTomlPath as n, platform as p, shouldUseSudoForGlobalInstall as s, wrapCommandWithSudo as w };
|
|
@@ -37,25 +37,26 @@ 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';
|
|
40
|
+
import '../shared/ccjk.DKXs7Fbm.mjs';
|
|
41
|
+
import './banner.mjs';
|
|
42
|
+
import './config2.mjs';
|
|
44
43
|
import './config.mjs';
|
|
45
|
-
import './claude-config.mjs';
|
|
46
44
|
import '../shared/ccjk.DScm_NnL.mjs';
|
|
47
|
-
import '../shared/ccjk.BFQ7yr5S.mjs';
|
|
48
|
-
import './prompts.mjs';
|
|
49
45
|
import '../shared/ccjk.DZ2LLOa-.mjs';
|
|
50
|
-
import '
|
|
51
|
-
import './config2.mjs';
|
|
46
|
+
import '../shared/ccjk.DeWpAShp.mjs';
|
|
52
47
|
import './auto-updater.mjs';
|
|
48
|
+
import './index8.mjs';
|
|
53
49
|
import './version-checker.mjs';
|
|
50
|
+
import '../shared/ccjk.CxpGa6MC.mjs';
|
|
51
|
+
import './codex.mjs';
|
|
52
|
+
import '../shared/ccjk.BFQ7yr5S.mjs';
|
|
53
|
+
import './prompts.mjs';
|
|
54
54
|
import '../shared/ccjk.yYQMbHH3.mjs';
|
|
55
55
|
import '../shared/ccjk.DDq2hqA5.mjs';
|
|
56
|
-
import '../shared/ccjk.
|
|
56
|
+
import '../shared/ccjk.Dh6Be-ef.mjs';
|
|
57
57
|
import '../shared/ccjk.DGllfVCZ.mjs';
|
|
58
58
|
import './installer.mjs';
|
|
59
|
+
import '../shared/ccjk.BI-hdI7P.mjs';
|
|
59
60
|
import '../shared/ccjk.BJENIVf7.mjs';
|
|
60
61
|
import '../shared/ccjk.Bq8TqZG_.mjs';
|
|
61
62
|
|