ccjk 2.4.4 → 2.5.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-providers.mjs +73 -1
- package/dist/chunks/ccjk-config.mjs +13 -77
- package/dist/chunks/ccr.mjs +9 -4
- package/dist/chunks/check-updates.mjs +4 -2
- package/dist/chunks/claude-code-config-manager.mjs +9 -15
- package/dist/chunks/claude-code-incremental-manager.mjs +5 -8
- package/dist/chunks/codex.mjs +10 -569
- package/dist/chunks/config-switch.mjs +7 -5
- package/dist/chunks/config.mjs +573 -0
- package/dist/chunks/config2.mjs +451 -0
- package/dist/chunks/doctor.mjs +89 -1
- package/dist/chunks/features.mjs +13 -10
- package/dist/chunks/index.mjs +10 -1164
- package/dist/chunks/index2.mjs +8 -2
- package/dist/chunks/init.mjs +14 -11
- package/dist/chunks/json-config.mjs +59 -0
- package/dist/chunks/mcp-server.mjs +776 -0
- package/dist/chunks/mcp.mjs +10 -8
- package/dist/chunks/menu.mjs +5 -5
- package/dist/chunks/package.mjs +1 -1
- package/dist/chunks/permissions.mjs +420 -0
- package/dist/chunks/prompts.mjs +2 -1
- package/dist/chunks/providers.mjs +261 -0
- package/dist/chunks/session.mjs +484 -41
- package/dist/chunks/skills.mjs +553 -0
- package/dist/chunks/stats.mjs +411 -0
- package/dist/chunks/uninstall.mjs +4 -3
- package/dist/chunks/update.mjs +6 -3
- package/dist/chunks/workflows2.mjs +140 -0
- package/dist/cli.mjs +316 -10
- package/dist/i18n/locales/en/hooks.json +47 -0
- package/dist/i18n/locales/en/mcp.json +55 -0
- package/dist/i18n/locales/en/permissions.json +43 -0
- package/dist/i18n/locales/en/sandbox.json +44 -0
- package/dist/i18n/locales/en/skills.json +89 -129
- package/dist/i18n/locales/en/stats.json +20 -0
- package/dist/i18n/locales/zh-CN/hooks.json +47 -0
- package/dist/i18n/locales/zh-CN/mcp.json +55 -0
- package/dist/i18n/locales/zh-CN/permissions.json +43 -0
- package/dist/i18n/locales/zh-CN/sandbox.json +44 -0
- package/dist/i18n/locales/zh-CN/skills.json +88 -128
- package/dist/i18n/locales/zh-CN/stats.json +20 -0
- package/dist/index.mjs +12 -8
- package/dist/shared/ccjk.B-lZxV2u.mjs +1162 -0
- package/dist/shared/{ccjk.CURU8gbR.mjs → ccjk.CUdzQluX.mjs} +1 -1
- package/dist/shared/{ccjk.ByTIGCUC.mjs → ccjk.Dut3wyoP.mjs} +1 -1
- package/dist/shared/ccjk.J8YiPsOw.mjs +259 -0
- package/dist/shared/{ccjk.CGTmRqsu.mjs → ccjk.rLRHmcqD.mjs} +5 -134
- package/dist/shared/{ccjk.QbS8EAOd.mjs → ccjk.uVUeWAt8.mjs} +2 -1
- package/package.json +1 -1
- package/templates/common/skills/code-review.md +343 -0
- package/templates/common/skills/summarize.md +312 -0
- package/templates/common/skills/translate.md +202 -0
|
@@ -1,140 +1,100 @@
|
|
|
1
1
|
{
|
|
2
|
-
"title": "技能管理",
|
|
3
|
-
"description": "管理 CCJK 技能并支持自动激活",
|
|
4
|
-
|
|
5
|
-
"installed": "技能 '{{name}}' 安装成功",
|
|
6
|
-
"uninstalled": "技能 '{{name}}' 已卸载",
|
|
7
|
-
"activated": "技能 '{{name}}' 已激活",
|
|
8
|
-
"deactivated": "技能 '{{name}}' 已停用",
|
|
9
|
-
"notFound": "技能 '{{name}}' 未找到",
|
|
10
|
-
"alreadyInstalled": "技能 '{{name}}' 已安装",
|
|
11
|
-
|
|
12
|
-
"autoActivated": "自动激活技能:{{name}}",
|
|
13
|
-
"matchedTrigger": "匹配触发器:{{trigger}}",
|
|
14
|
-
"matchedCondition": "匹配条件:{{condition}}",
|
|
15
|
-
"confidence": "置信度:{{score}}%",
|
|
16
|
-
|
|
17
|
-
"list": {
|
|
18
|
-
"title": "可用技能",
|
|
19
|
-
"empty": "未安装任何技能",
|
|
20
|
-
"count": "共 {{count}} 个技能可用",
|
|
21
|
-
"enabled": "已启用",
|
|
22
|
-
"disabled": "已禁用",
|
|
23
|
-
"builtin": "内置",
|
|
24
|
-
"marketplace": "市场",
|
|
25
|
-
"local": "本地"
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
"categories": {
|
|
29
|
-
"dev": "开发",
|
|
30
|
-
"git": "Git 操作",
|
|
31
|
-
"review": "代码审查",
|
|
32
|
-
"testing": "测试",
|
|
33
|
-
"docs": "文档",
|
|
34
|
-
"devops": "DevOps",
|
|
35
|
-
"planning": "规划",
|
|
36
|
-
"debugging": "调试",
|
|
37
|
-
"custom": "自定义"
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
"difficulty": {
|
|
41
|
-
"beginner": "初级",
|
|
42
|
-
"intermediate": "中级",
|
|
43
|
-
"advanced": "高级"
|
|
44
|
-
},
|
|
45
|
-
|
|
46
2
|
"menu": {
|
|
47
|
-
"title": "
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
3
|
+
"title": "技能管理",
|
|
4
|
+
"prompt": "请选择操作",
|
|
5
|
+
"list": "列出所有技能",
|
|
6
|
+
"run": "运行技能",
|
|
7
|
+
"info": "查看技能信息",
|
|
8
|
+
"create": "创建新技能",
|
|
9
|
+
"batch": "批量操作",
|
|
52
10
|
"enable": "启用技能",
|
|
53
11
|
"disable": "禁用技能",
|
|
54
|
-
"
|
|
12
|
+
"delete": "删除技能",
|
|
55
13
|
"back": "返回"
|
|
56
14
|
},
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"failed": "技能安装失败",
|
|
63
|
-
"selectSource": "选择安装来源:",
|
|
64
|
-
"sources": {
|
|
65
|
-
"marketplace": "从市场安装",
|
|
66
|
-
"local": "从本地文件安装",
|
|
67
|
-
"url": "从 URL 安装"
|
|
68
|
-
}
|
|
15
|
+
"title": {
|
|
16
|
+
"list": "可用技能列表",
|
|
17
|
+
"run": "运行技能",
|
|
18
|
+
"info": "技能信息",
|
|
19
|
+
"create": "创建新技能"
|
|
69
20
|
},
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
21
|
+
"message": {
|
|
22
|
+
"noSkills": "未找到任何技能",
|
|
23
|
+
"totalSkills": "共 {{count}} 个技能",
|
|
24
|
+
"skillExecuted": "技能执行成功",
|
|
25
|
+
"skillCreated": "技能创建成功:{{name}}",
|
|
26
|
+
"skillEnabled": "技能已启用:{{name}}",
|
|
27
|
+
"skillDisabled": "技能已禁用:{{name}}",
|
|
28
|
+
"skillDeleted": "技能已删除:{{name}}",
|
|
29
|
+
"alreadyEnabled": "技能已经是启用状态:{{name}}",
|
|
30
|
+
"alreadyDisabled": "技能已经是禁用状态:{{name}}",
|
|
31
|
+
"deleteCancelled": "删除操作已取消"
|
|
81
32
|
},
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"belowThreshold": "置信度低于激活阈值"
|
|
33
|
+
"hint": {
|
|
34
|
+
"createSkill": "提示:使用 'ccjk skills create' 创建新技能",
|
|
35
|
+
"listSkills": "提示:使用 'ccjk skills list' 查看所有可用技能",
|
|
36
|
+
"enableSkill": "提示:使用 'ccjk skills enable <名称>' 启用此技能",
|
|
37
|
+
"runSkill": "提示:使用 'ccjk skills run <名称>' 运行此技能",
|
|
38
|
+
"copyTemplate": "提示:模板已复制到剪贴板,可以直接粘贴使用"
|
|
89
39
|
},
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
40
|
+
"label": {
|
|
41
|
+
"triggers": "触发词",
|
|
42
|
+
"template": "模板内容",
|
|
43
|
+
"details": "详细信息",
|
|
44
|
+
"id": "ID",
|
|
45
|
+
"version": "版本",
|
|
46
|
+
"category": "类别",
|
|
47
|
+
"author": "作者",
|
|
48
|
+
"tags": "标签",
|
|
49
|
+
"agents": "关联代理",
|
|
50
|
+
"characters": "字符",
|
|
51
|
+
"path": "路径"
|
|
52
|
+
},
|
|
53
|
+
"error": {
|
|
54
|
+
"listFailed": "列出技能失败",
|
|
55
|
+
"skillNotFound": "未找到技能:{{name}}",
|
|
56
|
+
"runFailed": "运行技能失败",
|
|
57
|
+
"infoFailed": "获取技能信息失败",
|
|
58
|
+
"skillExists": "技能已存在:{{name}}",
|
|
59
|
+
"nameRequired": "技能名称不能为空",
|
|
60
|
+
"descriptionRequired": "描述不能为空",
|
|
61
|
+
"triggersRequired": "触发词不能为空",
|
|
62
|
+
"createFailed": "创建技能失败",
|
|
63
|
+
"enableFailed": "启用技能失败",
|
|
64
|
+
"disableFailed": "禁用技能失败",
|
|
65
|
+
"deleteFailed": "删除技能失败"
|
|
66
|
+
},
|
|
67
|
+
"warning": {
|
|
68
|
+
"skillDisabled": "技能已禁用:{{name}}"
|
|
69
|
+
},
|
|
70
|
+
"prompt": {
|
|
71
|
+
"skillName": "请输入技能名称",
|
|
72
|
+
"newSkillName": "请输入新技能名称",
|
|
73
|
+
"nameEn": "技能名称(英文)",
|
|
74
|
+
"nameZh": "技能名称(中文)",
|
|
75
|
+
"descriptionEn": "技能描述(英文)",
|
|
76
|
+
"descriptionZh": "技能描述(中文)",
|
|
77
|
+
"category": "选择类别",
|
|
78
|
+
"triggers": "触发词(用逗号分隔)",
|
|
79
|
+
"template": "技能模板内容",
|
|
80
|
+
"confirmDelete": "确认删除技能 {{name}}?(yes/no)"
|
|
81
|
+
},
|
|
82
|
+
"category": {
|
|
83
|
+
"git": "Git 操作",
|
|
84
|
+
"dev": "开发工具",
|
|
85
|
+
"testing": "测试",
|
|
86
|
+
"docs": "文档",
|
|
87
|
+
"review": "代码审查",
|
|
88
|
+
"seo": "SEO 优化",
|
|
89
|
+
"devops": "DevOps",
|
|
90
|
+
"custom": "自定义"
|
|
132
91
|
},
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
92
|
+
"batch": {
|
|
93
|
+
"title": "批量创建技能",
|
|
94
|
+
"prompt": "选择要创建的技能",
|
|
95
|
+
"noneSelected": "未选择任何技能",
|
|
96
|
+
"creating": "正在创建技能",
|
|
97
|
+
"created": "成功创建 {{count}} 个技能",
|
|
98
|
+
"failed": "失败 {{count}} 个"
|
|
139
99
|
}
|
|
140
100
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "使用统计",
|
|
3
|
+
"totalRequests": "总请求数",
|
|
4
|
+
"successRate": "成功率",
|
|
5
|
+
"totalTokens": "总令牌数",
|
|
6
|
+
"input": "输入",
|
|
7
|
+
"output": "输出",
|
|
8
|
+
"estimatedCost": "预估成本",
|
|
9
|
+
"averageLatency": "平均延迟",
|
|
10
|
+
"providerDistribution": "提供商分布",
|
|
11
|
+
"noData": "暂无数据",
|
|
12
|
+
"period": {
|
|
13
|
+
"1d": "最近24小时",
|
|
14
|
+
"7d": "最近7天",
|
|
15
|
+
"30d": "最近30天",
|
|
16
|
+
"90d": "最近90天",
|
|
17
|
+
"all": "全部时间"
|
|
18
|
+
},
|
|
19
|
+
"exportSuccess": "统计数据导出成功"
|
|
20
|
+
}
|
package/dist/index.mjs
CHANGED
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
export { l as createHomebrewSymlink, f as detectInstalledVersion, m as displayVerificationResult, j as executeInstallMethod, g as getInstallationStatus, k as handleInstallFailure, i as init, b as installClaudeCode, d as installCodex, a as isClaudeCodeInstalled, c as isCodexInstalled, e as isLocalClaudeCodeInstalled, r as removeLocalClaudeCode, h as selectInstallMethod, s as setInstallMethod, u as uninstallCodeTool, v as verifyInstallation } from './chunks/init.mjs';
|
|
2
2
|
export { AIDER_CONFIG_FILE, AIDER_DIR, AIDER_ENV_FILE, AI_OUTPUT_LANGUAGES, API_DEFAULT_URL, API_ENV_KEY, CCJK_CLOUD_API_URL, CCJK_CLOUD_PLUGINS_API, CCJK_CLOUD_PLUGINS_CACHE_DIR, CCJK_CLOUD_PLUGINS_CACHE_FILE, CCJK_CLOUD_PLUGINS_DIR, CCJK_CLOUD_PLUGINS_INSTALLED_DIR, CCJK_CONFIG_DIR, CCJK_CONFIG_FILE, CCJK_GROUPS_DIR, CCJK_PLUGINS_DIR, CCJK_SKILLS_DIR, CLAUDE_DIR, CLAUDE_MD_FILE, CLAUDE_VSC_CONFIG_FILE, CLINE_CONFIG_FILE, CLINE_DIR, CLOUD_PLUGINS_CACHE_TTL, CLOUD_PLUGINS_MAX_CACHE_SIZE, CODEX_AGENTS_FILE, CODEX_AUTH_FILE, CODEX_CONFIG_FILE, CODEX_DIR, CODEX_PROMPTS_DIR, CODE_TOOL_ALIASES, CODE_TOOL_BANNERS, CODE_TOOL_INFO, CODE_TOOL_TYPES, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, SETTINGS_FILE, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, getAiOutputLanguageLabel, isCodeToolType, resolveCodeToolType } from './chunks/constants.mjs';
|
|
3
3
|
export { C as COLORS, S as STATUS, b as boxify, d as displayBanner, a as displayBannerWithInfo, g as getDisplayWidth, m as menuItem, p as padToDisplayWidth, r as renderProgressBar, s as sectionDivider } from './shared/ccjk.BhKlRJ0h.mjs';
|
|
4
|
-
export {
|
|
4
|
+
export { e as addCompletedOnboarding, y as applyAiLanguageDirective, l as backupExistingConfig, b as backupMcpConfig, d as buildMcpServerConfig, c as cleanupPermissions, o as configureApi, n as copyConfigFiles, h as ensureApiKeyApproved, k as ensureClaudeDir, f as fixWindowsMcpConfig, x as getExistingApiConfig, v as getExistingModelConfig, g as getMcpConfigPath, j as manageApiKeyApproval, m as mergeAndCleanPermissions, p as mergeConfigs, a as mergeMcpServers, t as mergeSettingsFile, A as promptApiConfigurationAction, r as readMcpConfig, i as removeApiKeyFromRejected, s as setPrimaryApiKey, z as switchToOfficialLogin, u as updateCustomModel, q as updateDefaultModel, w as writeMcpConfig } from './chunks/config.mjs';
|
|
5
5
|
export { compareConfigs, consolidateConfigs, detectAllConfigs, displayConfigScan, removeRedundantConfigs, writeConsolidatedConfig } from './chunks/config-consolidator.mjs';
|
|
6
|
-
export { d as detectProjectContext, k as formatFileSize, e as generateContextContent, b as getApplicableRules, j as getContextFileTypeLabel, c as getContextFiles, g as getContextRules, h as getProjectTypeLabel, f as getRecommendedRules, i as importRecommendedEnv, a as importRecommendedPermissions, m as mergeContextContent, o as openSettingsJson, r as readContextFile, w as writeContextFile } from './shared/ccjk.
|
|
7
|
-
export {
|
|
6
|
+
export { d as detectProjectContext, k as formatFileSize, e as generateContextContent, b as getApplicableRules, j as getContextFileTypeLabel, c as getContextFiles, g as getContextRules, h as getProjectTypeLabel, f as getRecommendedRules, i as importRecommendedEnv, a as importRecommendedPermissions, m as mergeContextContent, o as openSettingsJson, r as readContextFile, w as writeContextFile } from './shared/ccjk.Dut3wyoP.mjs';
|
|
7
|
+
export { U as CodexUninstaller, al as MenuBuilder, a2 as addContinueCustomCommand, a1 as addContinueMcpServer, Z as addContinueModel, o as addGroup, Q as addProviderToExisting, M as configureAiderApi, a0 as configureContinueApi, P as configureIncrementalManagement, an as confirm, S as deleteProviders, p as disableGroup, f as disablePlugin, d as discoverPlugins, aj as displayHealthReport, R as editExistingProvider, a3 as enableContinueContextProvider, q as enableGroup, c as enablePlugin, J as ensureAiderDir, V as ensureContinueDir, s as ensureGroupsDir, e as ensurePluginsDir, t as exportGroups, ag as formatToolStatus, N as getAiderModelPresets, H as getAiderVersion, v as getAllGroups, ae as getAllToolsInfo, aa as getAllToolsStatus, $ as getContinueProviderPresets, x as getEnabledAgents, y as getEnabledSkillIds, z as getGroup, A as getGroupRegistry, ab as getInstalledTools, g as getLoadedPlugins, i as getPluginAgents, a as getPluginInfo, j as getPluginMcpServices, k as getPluginOutputStyles, m as getPluginSkills, h as getPluginWorkflows, ah as getRecommendedTools, a5 as getToolConfigPath, a6 as getToolDir, ad as getToolInfo, a9 as getToolStatus, a8 as getToolVersion, af as getToolsByCategory, B as importGroups, n as initializePlugins, I as installAider, ac as installTool, G as isAiderInstalled, W as isContinueConfigured, C as isGroupEnabled, a7 as isToolInstalled, b as listPlugins, l as loadPlugin, K as readAiderConfig, X as readContinueConfig, r as readPluginConfig, D as refreshGroupRegistry, _ as removeContinueModel, E as removeGroup, O as runAider, ak as runDoctor, ai as runHealthCheck, F as searchGroups, am as showQuickMenu, ao as showStatus, a4 as syncSkillsToContinue, u as unloadPlugin, T as validateProviderData, L as writeAiderConfig, Y as writeContinueConfig, w as writePluginConfig } from './chunks/index.mjs';
|
|
8
8
|
export { b as detectBuildTools, e as detectCICDSystems, a as detectFrameworks, f as detectLanguages, d as detectPackageManager, h as detectProject, c as detectTestFrameworks, g as determineProjectType, m as exportProjectKnowledge, i as generateSuggestions, k as getProjectKnowledge, j as getProjectSummary, l as loadKnowledgeBase, q as quickSync, r as runOnboarding, s as saveKnowledgeBase } from './chunks/onboarding.mjs';
|
|
9
9
|
export { PERMISSION_TEMPLATES, addAutoApprovePattern, applyTemplate, displayPermissions, exportPermissions, getCurrentTemplateId, importPermissions, isDirectoryTrusted, isPermissionAllowed, readPermissions, removeAutoApprovePattern, resetPermissions, trustDirectory, untrustDirectory, writePermissions } from './chunks/permission-manager.mjs';
|
|
10
10
|
export { commandExists, getPlatform } from './chunks/platform.mjs';
|
|
11
11
|
export { checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkPluginVersions, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin } from './chunks/upgrade-manager.mjs';
|
|
12
12
|
export { d as displayCurrentStatus, r as runConfigWizard } from './shared/ccjk.-FoZ3zat.mjs';
|
|
13
|
+
export { a as addSkill, c as createBatchSkills, e as ensureSkillsDir, b as exportSkills, g as getAllSkills, d as getBatchCategories, f as getBuiltinSkill, h as getBuiltinSkills, i as getSkill, j as getSkillRegistry, k as importSkills, l as isBuiltinSkill, r as refreshSkillRegistry, m as removeSkill, s as searchSkills, n as setSkillEnabled } from './shared/ccjk.B-lZxV2u.mjs';
|
|
14
|
+
export { L as applyCodexPlatformCommand, c as backupCodexAgents, b as backupCodexComplete, e as backupCodexConfig, f as backupCodexFiles, g as backupCodexPrompts, h as checkCodexUpdate, s as codexSwitchToOfficialLogin, i as configureCodexApi, K as configureCodexMcp, j as createBackupDirectory, d as detectConfigManagementMode, k as ensureEnvKeyMigration, J as getAvailableManagementActions, l as getBackupMessage, m as getCodexVersion, n as getCurrentCodexProvider, o as installCodexCli, p as isCodexCliInstalled, q as listCodexProviders, t as migrateEnvKeyInContent, u as migrateEnvKeyToTempEnvKey, v as needsEnvKeyMigration, x as parseCodexConfig, r as readCodexConfig, y as renderCodexConfig, z as runCodexFullInit, A as runCodexSystemPromptSelection, B as runCodexUninstall, C as runCodexUpdate, D as runCodexWorkflowImport, E as runCodexWorkflowImportWithLanguageSelection, F as runCodexWorkflowSelection, I as shouldShowManagementMode, G as switchCodexProvider, H as switchToProvider, a as writeAuthFile, w as writeCodexConfig } from './chunks/codex.mjs';
|
|
13
15
|
import 'node:fs';
|
|
14
16
|
import 'node:process';
|
|
15
17
|
import 'ansis';
|
|
16
18
|
import 'inquirer';
|
|
17
19
|
import './chunks/package.mjs';
|
|
18
|
-
import './
|
|
20
|
+
import './chunks/workflows2.mjs';
|
|
19
21
|
import './chunks/index2.mjs';
|
|
20
22
|
import 'node:url';
|
|
21
23
|
import 'i18next';
|
|
@@ -26,19 +28,21 @@ import 'smol-toml';
|
|
|
26
28
|
import './chunks/fs-operations.mjs';
|
|
27
29
|
import 'node:crypto';
|
|
28
30
|
import 'node:fs/promises';
|
|
31
|
+
import './chunks/json-config.mjs';
|
|
29
32
|
import 'dayjs';
|
|
30
|
-
import './shared/ccjk.DhBeLRzf.mjs';
|
|
31
|
-
import 'inquirer-toggle';
|
|
32
|
-
import 'node:child_process';
|
|
33
33
|
import 'node:os';
|
|
34
|
+
import 'node:child_process';
|
|
34
35
|
import 'node:util';
|
|
36
|
+
import './shared/ccjk.DhBeLRzf.mjs';
|
|
37
|
+
import 'inquirer-toggle';
|
|
35
38
|
import './chunks/auto-updater.mjs';
|
|
36
39
|
import 'ora';
|
|
37
40
|
import 'tinyexec';
|
|
38
41
|
import './chunks/version-checker.mjs';
|
|
39
42
|
import 'node:path';
|
|
40
43
|
import 'semver';
|
|
41
|
-
import './shared/ccjk.
|
|
44
|
+
import './shared/ccjk.CUdzQluX.mjs';
|
|
45
|
+
import './shared/ccjk.rLRHmcqD.mjs';
|
|
42
46
|
import './shared/ccjk.tB4-Y4Qb.mjs';
|
|
43
47
|
import './chunks/prompts.mjs';
|
|
44
48
|
import 'fs-extra';
|