ccjk 13.6.7 → 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 +2 -4
- package/dist/chunks/auto-fix.mjs +3 -1
- package/dist/chunks/ccjk-all.mjs +5 -2
- package/dist/chunks/ccjk-mcp.mjs +5 -2
- package/dist/chunks/ccjk-setup.mjs +4 -1
- package/dist/chunks/ccr.mjs +3 -5
- package/dist/chunks/check-updates.mjs +0 -1
- package/dist/chunks/claude-code-incremental-manager.mjs +4 -6
- package/dist/chunks/codex-config-switch.mjs +0 -1
- package/dist/chunks/codex-provider-manager.mjs +0 -1
- package/dist/chunks/codex.mjs +2 -2
- package/dist/chunks/config-switch.mjs +2 -4
- package/dist/chunks/config.mjs +1104 -5
- package/dist/chunks/config2.mjs +6 -4
- package/dist/chunks/config3.mjs +4 -2
- package/dist/chunks/doctor.mjs +1 -1
- package/dist/chunks/evolution.mjs +47 -27
- package/dist/chunks/features.mjs +2 -3
- package/dist/chunks/index10.mjs +64 -10
- package/dist/chunks/init.mjs +6 -7
- package/dist/chunks/installer.mjs +2 -2
- package/dist/chunks/mcp-cli.mjs +18 -19
- package/dist/chunks/mcp.mjs +6 -7
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/platform.mjs +1 -1
- package/dist/chunks/quick-setup.mjs +1 -2
- package/dist/chunks/slash-commands.mjs +1 -1
- package/dist/chunks/update.mjs +4 -5
- package/dist/i18n/locales/en/menu.json +7 -0
- package/dist/i18n/locales/zh-CN/menu.json +7 -0
- package/dist/index.mjs +3 -2
- package/dist/shared/{ccjk.DHaUdzX3.mjs → ccjk.B6VCKdyy.mjs} +2 -2
- package/dist/shared/{ccjk.B4aXNclK.mjs → ccjk.CVjfbEIj.mjs} +1 -1
- package/dist/shared/{ccjk.Dz0ssUQx.mjs → ccjk.Dh6Be-ef.mjs} +1 -1
- package/package.json +1 -1
- package/dist/chunks/claude-code-config-manager.mjs +0 -811
- package/dist/chunks/claude-config.mjs +0 -286
|
@@ -157,6 +157,13 @@
|
|
|
157
157
|
"focus": "核心初始化、配置管理与工具专属操作。",
|
|
158
158
|
"config": "使用当前激活工具的配置档案。",
|
|
159
159
|
"menuTitle": "CCJK 控制中心"
|
|
160
|
+
},
|
|
161
|
+
"myclaude": {
|
|
162
|
+
"title": "myclaude 工作台",
|
|
163
|
+
"summary": "面向 Provider 的控制中心,启动时应明确展示当前运行态。",
|
|
164
|
+
"focus": "Provider 档案、路由状态、模型槽位与 Claude 家族兼容配置。",
|
|
165
|
+
"config": "主配置文件:~/.claude.json(运行态) + ~/.ccjk/config.toml(可复用档案)",
|
|
166
|
+
"menuTitle": "myclaude 控制中心"
|
|
160
167
|
}
|
|
161
168
|
},
|
|
162
169
|
"menu": {
|
package/dist/index.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import a from './chunks/index5.mjs';
|
|
|
15
15
|
import { g as getRuntimeVersion } from './shared/ccjk.gDEDGD_t.mjs';
|
|
16
16
|
import { j as join$1 } from './shared/ccjk.bQ7Dh1g4.mjs';
|
|
17
17
|
import { b as buildCommand, c as commandExists, a as escapeArgument, e as executeCommand, d as executeCommandParallel, f as executeCommandSequence, g as executeCommandStream, h as getCommandPath, i as getCommandVersion, p as parseVersion } from './shared/ccjk.BnsY5WxD.mjs';
|
|
18
|
-
export {
|
|
18
|
+
export { B as config } from './chunks/config.mjs';
|
|
19
19
|
export { a as loggerUtils } from './shared/ccjk.8oaxX4iR.mjs';
|
|
20
20
|
export { p as platform } from './chunks/platform.mjs';
|
|
21
21
|
import { Transform } from 'node:stream';
|
|
@@ -40,11 +40,12 @@ import 'fs';
|
|
|
40
40
|
import 'child_process';
|
|
41
41
|
import 'buffer';
|
|
42
42
|
import 'string_decoder';
|
|
43
|
-
import './chunks/claude-config.mjs';
|
|
44
43
|
import './chunks/json-config.mjs';
|
|
45
44
|
import './chunks/fs-operations.mjs';
|
|
46
45
|
import 'node:fs/promises';
|
|
47
46
|
import './shared/ccjk.DScm_NnL.mjs';
|
|
47
|
+
import './chunks/ccjk-config.mjs';
|
|
48
|
+
import './chunks/index3.mjs';
|
|
48
49
|
import './chunks/main.mjs';
|
|
49
50
|
import 'module';
|
|
50
51
|
|
|
@@ -4,10 +4,10 @@ import { a as getMcpService, d as dynamicMcpRegistry, M as MCP_SERVICE_CONFIGS }
|
|
|
4
4
|
import { SETTINGS_FILE, CLAUDE_DIR, ClAUDE_CONFIG_FILE, CODEX_CONFIG_FILE } from '../chunks/constants.mjs';
|
|
5
5
|
import { exists, ensureDir } from '../chunks/fs-operations.mjs';
|
|
6
6
|
import { readJsonConfig, writeJsonConfig } from '../chunks/json-config.mjs';
|
|
7
|
-
import {
|
|
7
|
+
import { o as deepMerge, r as readMcpConfig, e as buildMcpServerConfig, w as writeMcpConfig } from '../chunks/config.mjs';
|
|
8
8
|
import { ensureI18nInitialized, i18n } from '../chunks/index2.mjs';
|
|
9
9
|
import { r as readCodexConfig, g as applyCodexPlatformCommand, w as writeCodexConfig } from '../chunks/codex.mjs';
|
|
10
|
-
import { i as isWindows,
|
|
10
|
+
import { i as isWindows, l as getSystemRoot } from '../chunks/platform.mjs';
|
|
11
11
|
|
|
12
12
|
function readClaudeConfig(configPath = SETTINGS_FILE) {
|
|
13
13
|
try {
|
|
@@ -2,7 +2,7 @@ import a from '../chunks/index5.mjs';
|
|
|
2
2
|
import { i as inquirer } from '../chunks/index6.mjs';
|
|
3
3
|
import { M as MCP_SERVICE_CONFIGS } from './ccjk.DKXs7Fbm.mjs';
|
|
4
4
|
import { i18n } from '../chunks/index2.mjs';
|
|
5
|
-
import { d as displayInstalledMcpServices, b as isMcpServiceInstalled, i as installMcpService, u as uninstallMcpService } from './ccjk.
|
|
5
|
+
import { d as displayInstalledMcpServices, b as isMcpServiceInstalled, i as installMcpService, u as uninstallMcpService } from './ccjk.B6VCKdyy.mjs';
|
|
6
6
|
import { existsSync, unlinkSync, statSync, mkdirSync, readFileSync } from 'node:fs';
|
|
7
7
|
import { homedir } from 'node:os';
|
|
8
8
|
import { writeFileAtomic } from '../chunks/fs-operations.mjs';
|
|
@@ -2,7 +2,7 @@ import a from '../chunks/index5.mjs';
|
|
|
2
2
|
import { i as inquirer } from '../chunks/index6.mjs';
|
|
3
3
|
import { CLAUDE_DIR, SETTINGS_FILE } from '../chunks/constants.mjs';
|
|
4
4
|
import { ensureI18nInitialized, i18n } from '../chunks/index2.mjs';
|
|
5
|
-
import {
|
|
5
|
+
import { h as getExistingApiConfig, i as configureApi, q as switchToOfficialLogin, b as backupExistingConfig, t as applyAiLanguageDirective } from '../chunks/config.mjs';
|
|
6
6
|
import { fileURLToPath } from 'node:url';
|
|
7
7
|
import { updateZcfConfig } from '../chunks/ccjk-config.mjs';
|
|
8
8
|
import { exists, removeFile, ensureDir, copyFile } from '../chunks/fs-operations.mjs';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "14.0.0",
|
|
5
5
|
"packageManager": "pnpm@10.17.1",
|
|
6
6
|
"description": "Production-ready AI dev environment for Claude Code, Codex, and modern coding workflows with 30-second onboarding, persistent memory, Agent Teams, remote control, and capability discovery.",
|
|
7
7
|
"author": {
|