ccjk 4.0.0-beta.1 → 4.0.0-beta.3
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/LICENSE +50 -1
- package/dist/chunks/claude-wrapper.mjs +3587 -394
- package/dist/chunks/codex.mjs +3 -3
- package/dist/chunks/context.mjs +737 -214
- package/dist/chunks/index3.mjs +19 -19
- package/dist/chunks/index4.mjs +8 -237
- package/dist/chunks/init.mjs +25 -9
- package/dist/chunks/menu.mjs +1 -1
- package/dist/chunks/notification.mjs +20 -20
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/platform.mjs +21 -70
- package/dist/chunks/version-checker.mjs +31 -31
- package/dist/cli.mjs +8 -7
- package/dist/i18n/locales/en/errors.json +14 -1
- package/dist/i18n/locales/zh-CN/errors.json +14 -1
- package/dist/index.d.mts +271 -196
- package/dist/index.d.ts +271 -196
- package/dist/index.mjs +2 -2
- package/package.json +67 -63
- package/templates/claude-code/en/workflow/essential/commands/feat.md +6 -0
- package/templates/claude-code/zh-CN/workflow/essential/commands/feat.md +6 -0
- package/dist/chunks/context-manager.mjs +0 -641
package/dist/chunks/codex.mjs
CHANGED
|
@@ -1478,7 +1478,7 @@ async function configureCodexApi(options) {
|
|
|
1478
1478
|
}
|
|
1479
1479
|
const managementMode = detectConfigManagementMode();
|
|
1480
1480
|
if (managementMode.mode === "management" && managementMode.hasProviders) {
|
|
1481
|
-
const { default: { configureIncrementalManagement } } = await import('./index4.mjs').then(function (n) { return n.
|
|
1481
|
+
const { default: { configureIncrementalManagement } } = await import('./index4.mjs').then(function (n) { return n.a_; });
|
|
1482
1482
|
await configureIncrementalManagement();
|
|
1483
1483
|
return;
|
|
1484
1484
|
}
|
|
@@ -1742,7 +1742,7 @@ async function runCodexUpdate(force = false, skipPrompt = false) {
|
|
|
1742
1742
|
}
|
|
1743
1743
|
async function runCodexUninstall() {
|
|
1744
1744
|
ensureI18nInitialized();
|
|
1745
|
-
const { CodexUninstaller } = await import('./index4.mjs').then(function (n) { return n.
|
|
1745
|
+
const { CodexUninstaller } = await import('./index4.mjs').then(function (n) { return n.a$; });
|
|
1746
1746
|
const zcfConfig = readZcfConfig();
|
|
1747
1747
|
const preferredLang = zcfConfig?.preferredLang;
|
|
1748
1748
|
const uninstallLang = preferredLang && SUPPORTED_LANGS.includes(preferredLang) ? preferredLang : "en";
|
|
@@ -1971,4 +1971,4 @@ const codex = {
|
|
|
1971
1971
|
writeCodexConfig: writeCodexConfig
|
|
1972
1972
|
};
|
|
1973
1973
|
|
|
1974
|
-
export { getBackupMessage as A, getCodexVersion as B, getCurrentCodexProvider as C, installCodexCli as D, isCodexInstalled as E, migrateEnvKeyInContent as F, migrateEnvKeyToTempEnvKey as G, needsEnvKeyMigration as H, parseCodexConfig as I, renderCodexConfig as J, runCodexSystemPromptSelection as K, runCodexWorkflowImport as L, MCP_SERVICE_CONFIGS as M, runCodexWorkflowSelection as N, shouldShowManagementMode as O, getAvailableManagementActions as P, codex as Q, switchCodexProvider as a, switchToOfficialLogin as b, switchToProvider as c, runCodexUpdate as d, getMcpService as e, applyCodexPlatformCommand as f, getMcpServices as g,
|
|
1974
|
+
export { getBackupMessage as A, getCodexVersion as B, getCurrentCodexProvider as C, installCodexCli as D, isCodexInstalled as E, migrateEnvKeyInContent as F, migrateEnvKeyToTempEnvKey as G, needsEnvKeyMigration as H, parseCodexConfig as I, renderCodexConfig as J, runCodexSystemPromptSelection as K, runCodexWorkflowImport as L, MCP_SERVICE_CONFIGS as M, runCodexWorkflowSelection as N, shouldShowManagementMode as O, getAvailableManagementActions as P, codex as Q, switchCodexProvider as a, switchToOfficialLogin as b, switchToProvider as c, runCodexUpdate as d, getMcpService as e, applyCodexPlatformCommand as f, getMcpServices as g, runCodexUninstall as h, configureCodexMcp as i, configureCodexApi as j, runCodexWorkflowImportWithLanguageSelection as k, listCodexProviders as l, runCodexFullInit as m, backupCodexComplete as n, writeAuthFile as o, detectConfigManagementMode as p, backupCodexAgents as q, readCodexConfig as r, selectMcpServices as s, backupCodexConfig as t, backupCodexFiles as u, backupCodexPrompts as v, writeCodexConfig as w, checkCodexUpdate as x, createBackupDirectory as y, ensureEnvKeyMigration as z };
|