ccjk 2.0.8 → 2.0.9
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/README.md +48 -2
- package/dist/chunks/claude-code-config-manager.mjs +8 -8
- package/dist/chunks/claude-code-incremental-manager.mjs +2 -2
- package/dist/chunks/codex-config-switch.mjs +4 -4
- package/dist/chunks/codex-provider-manager.mjs +2 -2
- package/dist/chunks/codex-uninstaller.mjs +3 -3
- package/dist/chunks/commands.mjs +2 -2
- package/dist/chunks/features.mjs +11 -11
- package/dist/chunks/plugin-recommendation.mjs +555 -0
- package/dist/chunks/simple-config.mjs +227 -87
- package/dist/chunks/skills-sync.mjs +854 -0
- package/dist/cli.mjs +12580 -6948
- package/dist/i18n/locales/en/agents.json +135 -0
- package/dist/i18n/locales/en/claude-md.json +73 -0
- package/dist/i18n/locales/en/cloudPlugins.json +118 -0
- package/dist/i18n/locales/en/common.json +2 -1
- package/dist/i18n/locales/en/hooksSync.json +111 -0
- package/dist/i18n/locales/en/mcp.json +31 -6
- package/dist/i18n/locales/en/menu.json +60 -1
- package/dist/i18n/locales/en/notification.json +170 -1
- package/dist/i18n/locales/en/plugins.json +133 -0
- package/dist/i18n/locales/en/skillsSync.json +74 -0
- package/dist/i18n/locales/zh-CN/agents.json +135 -0
- package/dist/i18n/locales/zh-CN/claude-md.json +73 -0
- package/dist/i18n/locales/zh-CN/cloudPlugins.json +118 -0
- package/dist/i18n/locales/zh-CN/common.json +2 -1
- package/dist/i18n/locales/zh-CN/hooksSync.json +111 -0
- package/dist/i18n/locales/zh-CN/mcp.json +31 -6
- package/dist/i18n/locales/zh-CN/menu.json +60 -1
- package/dist/i18n/locales/zh-CN/notification.json +170 -1
- package/dist/i18n/locales/zh-CN/plugins.json +133 -0
- package/dist/i18n/locales/zh-CN/skillsSync.json +74 -0
- package/dist/index.d.mts +18 -18
- package/dist/index.d.ts +18 -18
- package/dist/index.mjs +190 -188
- package/package.json +52 -49
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "云端插件",
|
|
3
|
+
"description": "管理云端插件",
|
|
4
|
+
"command.description": "管理云端插件(列表、搜索、安装、推荐)",
|
|
5
|
+
"command.list": "列出可用插件",
|
|
6
|
+
"command.search": "按关键词搜索插件",
|
|
7
|
+
"command.install": "安装插件",
|
|
8
|
+
"command.uninstall": "卸载插件",
|
|
9
|
+
"command.update": "更新已安装的插件",
|
|
10
|
+
"command.recommend": "获取个性化插件推荐",
|
|
11
|
+
"command.info": "显示插件详情",
|
|
12
|
+
"command.cache": "管理插件缓存",
|
|
13
|
+
"options.category": "按分类筛选",
|
|
14
|
+
"options.limit": "最大结果数量",
|
|
15
|
+
"options.json": "以 JSON 格式输出",
|
|
16
|
+
"options.force": "强制执行,无需确认",
|
|
17
|
+
"options.dryRun": "显示将要执行的操作,但不实际执行",
|
|
18
|
+
"options.path": "要分析的项目路径",
|
|
19
|
+
"menu.title": "☁️ 云端插件",
|
|
20
|
+
"menu.selectAction": "选择操作:",
|
|
21
|
+
"menu.search": "搜索插件",
|
|
22
|
+
"menu.recommend": "获取推荐",
|
|
23
|
+
"menu.installed": "已安装插件",
|
|
24
|
+
"menu.update": "更新插件",
|
|
25
|
+
"menu.info": "插件信息",
|
|
26
|
+
"menu.cache": "管理缓存",
|
|
27
|
+
"menu.upload": "上传插件",
|
|
28
|
+
"menu.searchPrompt": "输入搜索关键词:",
|
|
29
|
+
"menu.infoPrompt": "输入插件 ID:",
|
|
30
|
+
"info.category": "分类",
|
|
31
|
+
"info.downloads": "下载量",
|
|
32
|
+
"info.rating": "评分",
|
|
33
|
+
"info.description": "描述",
|
|
34
|
+
"info.version": "版本",
|
|
35
|
+
"info.author": "作者",
|
|
36
|
+
"info.license": "许可证",
|
|
37
|
+
"info.keywords": "关键词",
|
|
38
|
+
"info.verified": "已验证插件",
|
|
39
|
+
"info.status": "状态",
|
|
40
|
+
"info.installed": "已安装",
|
|
41
|
+
"info.notInstalled": "未安装",
|
|
42
|
+
"info.ratings": "条评价",
|
|
43
|
+
"info.loading": "正在加载插件信息...",
|
|
44
|
+
"info.loaded": "插件信息已加载",
|
|
45
|
+
"info.notFound": "未找到插件 '{{id}}'",
|
|
46
|
+
"info.loadFailed": "加载插件信息失败",
|
|
47
|
+
"noResults": "未找到插件",
|
|
48
|
+
"list.loading": "正在加载已安装插件...",
|
|
49
|
+
"list.success": "找到 {{count}} 个已安装插件",
|
|
50
|
+
"list.title": "📦 已安装插件",
|
|
51
|
+
"list.titleFiltered": "📦 已安装插件({{category}})",
|
|
52
|
+
"list.failed": "加载插件失败",
|
|
53
|
+
"search.searching": "正在搜索 '{{query}}'...",
|
|
54
|
+
"search.found": "为 '{{query}}' 找到 {{count}} 个插件",
|
|
55
|
+
"search.results": "🔍 搜索结果",
|
|
56
|
+
"search.failed": "搜索失败",
|
|
57
|
+
"install.notFound": "在注册表中未找到插件 '{{id}}'",
|
|
58
|
+
"install.alreadyInstalled": "插件 '{{name}}' 已安装",
|
|
59
|
+
"install.dryRun": "[模拟运行] 将安装插件:",
|
|
60
|
+
"install.installing": "正在安装 '{{name}}'...",
|
|
61
|
+
"install.success": "成功安装 '{{name}}'",
|
|
62
|
+
"install.location": "位置",
|
|
63
|
+
"install.version": "版本",
|
|
64
|
+
"install.failed": "安装 '{{name}}' 失败",
|
|
65
|
+
"uninstall.notFound": "未找到插件 '{{id}}'",
|
|
66
|
+
"uninstall.notInstalled": "插件 '{{name}}' 未安装",
|
|
67
|
+
"uninstall.confirm": "确定要卸载 '{{name}}' 吗?",
|
|
68
|
+
"uninstall.cancelled": "已取消卸载",
|
|
69
|
+
"uninstall.uninstalling": "正在卸载 '{{name}}'...",
|
|
70
|
+
"uninstall.success": "成功卸载 '{{name}}'",
|
|
71
|
+
"uninstall.failed": "卸载 '{{name}}' 失败",
|
|
72
|
+
"update.notFound": "未找到插件 '{{id}}'",
|
|
73
|
+
"update.notInstalled": "插件 '{{name}}' 未安装",
|
|
74
|
+
"update.updating": "正在更新 '{{name}}'...",
|
|
75
|
+
"update.success": "成功将 '{{name}}' 更新到 v{{version}}",
|
|
76
|
+
"update.failed": "更新 '{{name}}' 失败",
|
|
77
|
+
"update.checking": "正在检查更新...",
|
|
78
|
+
"update.checkComplete": "更新检查完成",
|
|
79
|
+
"update.noUpdates": "所有插件都是最新的!",
|
|
80
|
+
"update.available": "有 {{count}} 个更新可用:",
|
|
81
|
+
"update.hint": "运行 'ccjk plugins update <id>' 更新指定插件",
|
|
82
|
+
"update.checkFailed": "检查更新失败",
|
|
83
|
+
"recommend.analyzing": "正在分析项目以获取推荐...",
|
|
84
|
+
"recommend.reasonExample": "基于您项目的技术栈和依赖",
|
|
85
|
+
"recommend.complete": "分析完成",
|
|
86
|
+
"recommend.failed": "获取推荐失败",
|
|
87
|
+
"recommendations.title": "⭐ 推荐插件",
|
|
88
|
+
"recommendations.forYou": "为您推荐",
|
|
89
|
+
"recommendations.trending": "热门插件",
|
|
90
|
+
"recommendations.popular": "最受欢迎",
|
|
91
|
+
"recommendations.new": "新品上架",
|
|
92
|
+
"recommendations.byCategory": "按分类浏览",
|
|
93
|
+
"recommendations.reason": "推荐理由",
|
|
94
|
+
"recommendations.confidence": "置信度",
|
|
95
|
+
"recommendations.projectType": "项目类型",
|
|
96
|
+
"recommendations.frameworks": "框架",
|
|
97
|
+
"recommendations.languages": "语言",
|
|
98
|
+
"recommendations.score": "推荐评分",
|
|
99
|
+
"recommendations.scoreHigh": "强烈推荐",
|
|
100
|
+
"recommendations.scoreMedium": "推荐",
|
|
101
|
+
"recommendations.scoreLow": "可能有用",
|
|
102
|
+
"recommendations.noRecommendations": "暂无推荐",
|
|
103
|
+
"recommendations.allInstalled": "您已安装所有推荐插件!",
|
|
104
|
+
"recommendations.cacheExpired": "缓存已过期,正在获取最新推荐...",
|
|
105
|
+
"recommendations.cloudUnavailable": "云服务不可用,使用本地数据",
|
|
106
|
+
"recommendations.fromCache": "来自缓存",
|
|
107
|
+
"recommendations.fromCloud": "来自云端",
|
|
108
|
+
"recommendations.popularity": "热度",
|
|
109
|
+
"recommendations.compatibility": "兼容性",
|
|
110
|
+
"recommendations.tags": "标签",
|
|
111
|
+
"recommendations.verified": "已验证",
|
|
112
|
+
"recommendations.installCommand": "安装命令",
|
|
113
|
+
"recommendations.viewDetails": "查看详情",
|
|
114
|
+
"recommendations.refresh": "刷新推荐",
|
|
115
|
+
"recommendations.filterByCategory": "按分类筛选",
|
|
116
|
+
"recommendations.environment": "您的环境",
|
|
117
|
+
"recommendations.os": "操作系统",
|
|
118
|
+
"recommendations.codeTool": "代码工具",
|
|
119
|
+
"recommendations.installedCount": "已安装插件数",
|
|
120
|
+
"recommendations.language": "首选语言",
|
|
121
|
+
"cache.selectAction": "选择缓存操作:",
|
|
122
|
+
"cache.clear": "清除缓存",
|
|
123
|
+
"cache.info": "缓存信息",
|
|
124
|
+
"cache.clearing": "正在清除缓存...",
|
|
125
|
+
"cache.cleared": "缓存已成功清除",
|
|
126
|
+
"cache.infoTitle": "📊 缓存信息",
|
|
127
|
+
"cache.location": "位置",
|
|
128
|
+
"cache.size": "大小",
|
|
129
|
+
"cache.entries": "条目数",
|
|
130
|
+
"cache.lastUpdated": "最后更新",
|
|
131
|
+
"errors.searchQueryRequired": "需要搜索关键词。用法:ccjk plugins search <query>",
|
|
132
|
+
"errors.pluginIdRequired": "需要插件 ID"
|
|
133
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": {
|
|
3
|
+
"sync": "🔄 技能同步",
|
|
4
|
+
"push": "↑ 上传技能",
|
|
5
|
+
"pull": "↓ 下载技能",
|
|
6
|
+
"list": "📋 云端技能列表"
|
|
7
|
+
},
|
|
8
|
+
"menu": {
|
|
9
|
+
"title": "技能云端同步",
|
|
10
|
+
"prompt": "请选择操作:",
|
|
11
|
+
"sync": "同步所有技能",
|
|
12
|
+
"push": "上传本地技能到云端",
|
|
13
|
+
"pull": "从云端下载技能",
|
|
14
|
+
"list": "查看云端技能列表",
|
|
15
|
+
"status": "查看同步状态",
|
|
16
|
+
"back": "返回"
|
|
17
|
+
},
|
|
18
|
+
"prompt": {
|
|
19
|
+
"confirmSync": "确认同步所有技能?",
|
|
20
|
+
"confirmPush": "确认上传本地技能到云端?",
|
|
21
|
+
"confirmPull": "确认从云端下载技能?"
|
|
22
|
+
},
|
|
23
|
+
"message": {
|
|
24
|
+
"syncing": "正在同步技能",
|
|
25
|
+
"pushing": "正在上传技能",
|
|
26
|
+
"pulling": "正在下载技能",
|
|
27
|
+
"cancelled": "操作已取消",
|
|
28
|
+
"foundLocalSkills": "找到 {{count}} 个本地技能",
|
|
29
|
+
"foundCloudSkills": "找到 {{count}} 个云端技能",
|
|
30
|
+
"noLocalSkills": "没有找到本地技能",
|
|
31
|
+
"noCloudSkills": "没有找到云端技能"
|
|
32
|
+
},
|
|
33
|
+
"label": {
|
|
34
|
+
"status": "同步状态",
|
|
35
|
+
"localSkills": "本地技能",
|
|
36
|
+
"cloudSkills": "云端技能",
|
|
37
|
+
"lastSync": "上次同步",
|
|
38
|
+
"syncStates": "同步状态统计",
|
|
39
|
+
"author": "作者",
|
|
40
|
+
"updated": "更新时间"
|
|
41
|
+
},
|
|
42
|
+
"status": {
|
|
43
|
+
"synced": "已同步",
|
|
44
|
+
"localAhead": "本地领先",
|
|
45
|
+
"remoteAhead": "云端领先",
|
|
46
|
+
"conflict": "冲突",
|
|
47
|
+
"localOnly": "仅本地",
|
|
48
|
+
"remoteOnly": "仅云端"
|
|
49
|
+
},
|
|
50
|
+
"result": {
|
|
51
|
+
"title": "同步结果",
|
|
52
|
+
"success": "同步成功",
|
|
53
|
+
"failed": "同步失败",
|
|
54
|
+
"statistics": "统计信息",
|
|
55
|
+
"total": "总计",
|
|
56
|
+
"succeeded": "成功",
|
|
57
|
+
"conflicts": "冲突",
|
|
58
|
+
"uploaded": "已上传",
|
|
59
|
+
"downloaded": "已下载",
|
|
60
|
+
"skipped": "已跳过",
|
|
61
|
+
"duration": "耗时",
|
|
62
|
+
"details": "详细信息",
|
|
63
|
+
"conflictHint": "请手动解决冲突或使用 --force 选项强制同步"
|
|
64
|
+
},
|
|
65
|
+
"error": {
|
|
66
|
+
"syncFailed": "同步失败",
|
|
67
|
+
"pushFailed": "上传失败",
|
|
68
|
+
"pullFailed": "下载失败",
|
|
69
|
+
"listFailed": "获取列表失败"
|
|
70
|
+
},
|
|
71
|
+
"warning": {
|
|
72
|
+
"statusFailed": "获取状态失败"
|
|
73
|
+
}
|
|
74
|
+
}
|
package/dist/index.d.mts
CHANGED
|
@@ -24,6 +24,14 @@ declare const CCJK_CONFIG_FILE: string;
|
|
|
24
24
|
declare const CCJK_PLUGINS_DIR: string;
|
|
25
25
|
declare const CCJK_SKILLS_DIR: string;
|
|
26
26
|
declare const CCJK_GROUPS_DIR: string;
|
|
27
|
+
declare const CCJK_CLOUD_PLUGINS_DIR: string;
|
|
28
|
+
declare const CCJK_CLOUD_PLUGINS_CACHE_DIR: string;
|
|
29
|
+
declare const CCJK_CLOUD_PLUGINS_CACHE_FILE: string;
|
|
30
|
+
declare const CCJK_CLOUD_PLUGINS_INSTALLED_DIR: string;
|
|
31
|
+
declare const CCJK_CLOUD_API_URL = "https://api.ccjk.dev/v1";
|
|
32
|
+
declare const CCJK_CLOUD_PLUGINS_API = "https://api.ccjk.dev/v1/plugins";
|
|
33
|
+
declare const CLOUD_PLUGINS_CACHE_TTL: number;
|
|
34
|
+
declare const CLOUD_PLUGINS_MAX_CACHE_SIZE = 1000;
|
|
27
35
|
declare const LEGACY_ZCF_CONFIG_DIR: string;
|
|
28
36
|
declare const LEGACY_ZCF_CONFIG_FILE: string;
|
|
29
37
|
declare const LEGACY_ZCF_CONFIG_FILES: string[];
|
|
@@ -1443,6 +1451,8 @@ declare const COLORS: {
|
|
|
1443
1451
|
muted: ansis.Ansis;
|
|
1444
1452
|
bold: ansis.Ansis;
|
|
1445
1453
|
};
|
|
1454
|
+
declare function getDisplayWidth(str: string): number;
|
|
1455
|
+
declare function padToDisplayWidth(str: string, targetWidth: number): string;
|
|
1446
1456
|
declare function displayBanner(subtitle?: string): void;
|
|
1447
1457
|
declare function displayBannerWithInfo(subtitle?: string): void;
|
|
1448
1458
|
declare function renderProgressBar(progress: number, width?: number): string;
|
|
@@ -1961,6 +1971,10 @@ declare function syncSkillsToContinue(skills: Array<{
|
|
|
1961
1971
|
template: string;
|
|
1962
1972
|
}>): void;
|
|
1963
1973
|
|
|
1974
|
+
/**
|
|
1975
|
+
* Code tool info type (extracted from CODE_TOOL_INFO)
|
|
1976
|
+
*/
|
|
1977
|
+
type CodeToolInfo = (typeof CODE_TOOL_INFO)[CodeToolType];
|
|
1964
1978
|
/**
|
|
1965
1979
|
* Tool installation status
|
|
1966
1980
|
*/
|
|
@@ -2016,25 +2030,11 @@ declare function installTool(tool: CodeToolType): Promise<ToolInstallResult>;
|
|
|
2016
2030
|
/**
|
|
2017
2031
|
* Get tool info
|
|
2018
2032
|
*/
|
|
2019
|
-
declare function getToolInfo(tool: CodeToolType):
|
|
2020
|
-
name: string;
|
|
2021
|
-
description: string;
|
|
2022
|
-
website: string;
|
|
2023
|
-
installCmd: string;
|
|
2024
|
-
configFormat: "json" | "toml" | "yaml";
|
|
2025
|
-
category: "cli" | "extension" | "editor";
|
|
2026
|
-
};
|
|
2033
|
+
declare function getToolInfo(tool: CodeToolType): CodeToolInfo;
|
|
2027
2034
|
/**
|
|
2028
2035
|
* Get all tools info
|
|
2029
2036
|
*/
|
|
2030
|
-
declare function getAllToolsInfo(): Record<
|
|
2031
|
-
name: string;
|
|
2032
|
-
description: string;
|
|
2033
|
-
website: string;
|
|
2034
|
-
installCmd: string;
|
|
2035
|
-
configFormat: "json" | "toml" | "yaml";
|
|
2036
|
-
category: "cli" | "extension" | "editor";
|
|
2037
|
-
}>;
|
|
2037
|
+
declare function getAllToolsInfo(): Record<CodeToolType, CodeToolInfo>;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* Get tools by category
|
|
2040
2040
|
*/
|
|
@@ -2641,5 +2641,5 @@ declare function checkAllVersions(): Promise<void>;
|
|
|
2641
2641
|
*/
|
|
2642
2642
|
declare function upgradeAll(): Promise<void>;
|
|
2643
2643
|
|
|
2644
|
-
export { AIDER_CONFIG_FILE, AIDER_DIR, AIDER_ENV_FILE, AI_OUTPUT_LANGUAGES, API_DEFAULT_URL, API_ENV_KEY, 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, 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, COLORS, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, CodexUninstaller, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, MenuBuilder, PERMISSION_TEMPLATES, SETTINGS_FILE, STATUS, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, addAutoApprovePattern, addCompletedOnboarding, addContinueCustomCommand, addContinueMcpServer, addContinueModel, addGroup, addProviderToExisting, addSkill, applyAiLanguageDirective, applyCodexPlatformCommand, applyTemplate, backupCodexAgents, backupCodexComplete, backupCodexConfig, backupCodexFiles, backupCodexPrompts, backupExistingConfig, backupMcpConfig, boxify, buildMcpServerConfig, checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkCodexUpdate, checkPluginVersions, cleanupPermissions, switchToOfficialLogin$1 as codexSwitchToOfficialLogin, commandExists, compareConfigs, configureAiderApi, configureApi, configureCodexApi, configureCodexMcp, configureContinueApi, configureIncrementalManagement, confirm, consolidateConfigs, copyConfigFiles, createBackupDirectory, createBatchSkills, createHomebrewSymlink, deleteProviders, detectAllConfigs, detectBuildTools, detectCICDSystems, detectConfigManagementMode, detectFrameworks, detectInstalledVersion, detectLanguages, detectPackageManager, detectProject, detectTestFrameworks, determineProjectType, disableGroup, disablePlugin, discoverPlugins, displayBanner, displayBannerWithInfo, displayConfigScan, displayCurrentStatus, displayHealthReport, displayPermissions, displayVerificationResult, editExistingProvider, enableContinueContextProvider, enableGroup, enablePlugin, ensureAiderDir, ensureApiKeyApproved, ensureClaudeDir, ensureContinueDir, ensureEnvKeyMigration, ensureGroupsDir, ensurePluginsDir, ensureSkillsDir, executeInstallMethod, exportGroups, exportPermissions, exportProjectKnowledge, exportSkills, fixWindowsMcpConfig, formatToolStatus, generateSuggestions, getAiOutputLanguageLabel, getAiderModelPresets, getAiderVersion, getAllGroups, getAllSkills, getAllToolsInfo, getAllToolsStatus, getAvailableManagementActions, getBackupMessage, getBatchCategories, getCodexVersion, getContinueProviderPresets, getCurrentCodexProvider, getCurrentTemplateId, getEnabledAgents, getEnabledSkillIds, getExistingApiConfig, getExistingModelConfig, getGroup, getRegistry as getGroupRegistry, getInstallationStatus, getInstalledTools, getLoadedPlugins, getMcpConfigPath, getPlatform, getPluginAgents, getPluginInfo, getPluginMcpServices, getPluginOutputStyles, getPluginSkills, getPluginWorkflows, getProjectKnowledge, getProjectSummary, getRecommendedTools, getSkill, getRegistry$1 as getSkillRegistry, getToolConfigPath, getToolDir, getToolInfo, getToolStatus, getToolVersion, getToolsByCategory, handleInstallFailure, importGroups, importPermissions, importRecommendedEnv, importRecommendedPermissions, importSkills, init, initializePlugins, installAider, installClaudeCode, installCodex, installCodexCli, installTool, isAiderInstalled, isClaudeCodeInstalled, isCodeToolType, isCodexInstalled$1 as isCodexCliInstalled, isCodexInstalled, isContinueConfigured, isDirectoryTrusted, isGroupEnabled, isLocalClaudeCodeInstalled, isPermissionAllowed, isToolInstalled, listCodexProviders, listPlugins, loadKnowledgeBase, loadPlugin, manageApiKeyApproval, menuItem, mergeAndCleanPermissions, mergeConfigs, mergeMcpServers, mergeSettingsFile, migrateEnvKeyInContent, migrateEnvKeyToTempEnvKey, needsEnvKeyMigration, openSettingsJson, parseCodexConfig, promptApiConfigurationAction, quickSync, readAiderConfig, readCodexConfig, readContinueConfig, readMcpConfig, readPermissions, readPluginConfig, refreshRegistry as refreshGroupRegistry, refreshRegistry$1 as refreshSkillRegistry, removeApiKeyFromRejected, removeAutoApprovePattern, removeContinueModel, removeGroup, removeLocalClaudeCode, removeRedundantConfigs, removeSkill, renderCodexConfig, renderProgressBar, resetPermissions, resolveCodeToolType, runAider, runCodexFullInit, runCodexSystemPromptSelection, runCodexUninstall, runCodexUpdate, runCodexWorkflowImport, runCodexWorkflowImportWithLanguageSelection, runCodexWorkflowSelection, runConfigWizard, runDoctor, runHealthCheck, runOnboarding, saveKnowledgeBase, searchGroups, searchSkills, sectionDivider, selectInstallMethod, setInstallMethod, setPrimaryApiKey, setSkillEnabled, shouldShowManagementMode, showQuickMenu, showStatus, switchCodexProvider, switchToOfficialLogin, switchToProvider, syncSkillsToContinue, trustDirectory, uninstallCodeTool, unloadPlugin, untrustDirectory, updateCustomModel, updateDefaultModel, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin, validateProviderData, verifyInstallation, writeAiderConfig, writeAuthFile, writeCodexConfig, writeConsolidatedConfig, writeContinueConfig, writeMcpConfig, writePermissions, writePluginConfig };
|
|
2645
|
-
export type { AgentDefinition, AgentExtension, AgentTemplate, AiOutputLanguage, AiderConfig, ApiConfig, AuditCycle, AuditCycleStatus, AuditReport, BatchSkillOptions, BatchSkillTemplate, BoxStyle, BuildTool, CICDSystem, CcjkPlugin, CcjkSkill, CheckResult, ClaudeConfiguration, CodeToolType, CodexConfigData, CodexFullInitOptions, CodexProvider, CodexUninstallItem, CodexUninstallResult, CodexVersionInfo, CommandExtension, ConfigDiff, ConfigLocation, ConfigManagementMode, ConfigSuggestions, ConsolidatedConfig, ContinueConfig, ContinueMcpServer, ContinueModel, EvaluatedIssue, ExecutionPlan, FileChange, FixDecision, FixPlan, FixResult, Framework, GeneratedFix, GroupCategory, GroupExport, GroupInstallResult, GroupRegistry, GroupSearchOptions, HealthReport, InstallationStatus, Issue, KnowledgeBase, KnowledgeEntry, Language, LanguageGroupId, LoadedPlugin, McpServerConfig, McpService, McpServiceExtension, MenuBuilderOptions, MenuItem, MenuResult, MenuSection, NewIssue, OnboardingResult, OutputStyleExtension, PackageManager, PermissionSet, PermissionTemplate, PermissionType, PluginConfig, PluginContext, PluginDiscoveryResult, PluginInfo, PluginLogger, PluginMetadata, PluginStorage, PluginVersionInfo, PredefinedGroupId, ProjectContext, ProjectInfo, ProjectType, ProviderOperationResult, ProviderUpdateData, Regression, ScanResult, ScanStrategy, ScanTarget, ShenChaConfig, SiteTypeGroupId, SkillCategory, SkillExport, SkillInstallResult, SkillRegistry, SkillSearchOptions, SpecialtyGroupId, SubagentGroup, SupportedLang, TestFramework, ToolInstallResult, ToolStatus, UpgradeResult, VerificationResult, VerifyResult, VersionInfo, WorkflowExtension };
|
|
2644
|
+
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, COLORS, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, CodexUninstaller, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, MenuBuilder, PERMISSION_TEMPLATES, SETTINGS_FILE, STATUS, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, addAutoApprovePattern, addCompletedOnboarding, addContinueCustomCommand, addContinueMcpServer, addContinueModel, addGroup, addProviderToExisting, addSkill, applyAiLanguageDirective, applyCodexPlatformCommand, applyTemplate, backupCodexAgents, backupCodexComplete, backupCodexConfig, backupCodexFiles, backupCodexPrompts, backupExistingConfig, backupMcpConfig, boxify, buildMcpServerConfig, checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkCodexUpdate, checkPluginVersions, cleanupPermissions, switchToOfficialLogin$1 as codexSwitchToOfficialLogin, commandExists, compareConfigs, configureAiderApi, configureApi, configureCodexApi, configureCodexMcp, configureContinueApi, configureIncrementalManagement, confirm, consolidateConfigs, copyConfigFiles, createBackupDirectory, createBatchSkills, createHomebrewSymlink, deleteProviders, detectAllConfigs, detectBuildTools, detectCICDSystems, detectConfigManagementMode, detectFrameworks, detectInstalledVersion, detectLanguages, detectPackageManager, detectProject, detectTestFrameworks, determineProjectType, disableGroup, disablePlugin, discoverPlugins, displayBanner, displayBannerWithInfo, displayConfigScan, displayCurrentStatus, displayHealthReport, displayPermissions, displayVerificationResult, editExistingProvider, enableContinueContextProvider, enableGroup, enablePlugin, ensureAiderDir, ensureApiKeyApproved, ensureClaudeDir, ensureContinueDir, ensureEnvKeyMigration, ensureGroupsDir, ensurePluginsDir, ensureSkillsDir, executeInstallMethod, exportGroups, exportPermissions, exportProjectKnowledge, exportSkills, fixWindowsMcpConfig, formatToolStatus, generateSuggestions, getAiOutputLanguageLabel, getAiderModelPresets, getAiderVersion, getAllGroups, getAllSkills, getAllToolsInfo, getAllToolsStatus, getAvailableManagementActions, getBackupMessage, getBatchCategories, getCodexVersion, getContinueProviderPresets, getCurrentCodexProvider, getCurrentTemplateId, getDisplayWidth, getEnabledAgents, getEnabledSkillIds, getExistingApiConfig, getExistingModelConfig, getGroup, getRegistry as getGroupRegistry, getInstallationStatus, getInstalledTools, getLoadedPlugins, getMcpConfigPath, getPlatform, getPluginAgents, getPluginInfo, getPluginMcpServices, getPluginOutputStyles, getPluginSkills, getPluginWorkflows, getProjectKnowledge, getProjectSummary, getRecommendedTools, getSkill, getRegistry$1 as getSkillRegistry, getToolConfigPath, getToolDir, getToolInfo, getToolStatus, getToolVersion, getToolsByCategory, handleInstallFailure, importGroups, importPermissions, importRecommendedEnv, importRecommendedPermissions, importSkills, init, initializePlugins, installAider, installClaudeCode, installCodex, installCodexCli, installTool, isAiderInstalled, isClaudeCodeInstalled, isCodeToolType, isCodexInstalled$1 as isCodexCliInstalled, isCodexInstalled, isContinueConfigured, isDirectoryTrusted, isGroupEnabled, isLocalClaudeCodeInstalled, isPermissionAllowed, isToolInstalled, listCodexProviders, listPlugins, loadKnowledgeBase, loadPlugin, manageApiKeyApproval, menuItem, mergeAndCleanPermissions, mergeConfigs, mergeMcpServers, mergeSettingsFile, migrateEnvKeyInContent, migrateEnvKeyToTempEnvKey, needsEnvKeyMigration, openSettingsJson, padToDisplayWidth, parseCodexConfig, promptApiConfigurationAction, quickSync, readAiderConfig, readCodexConfig, readContinueConfig, readMcpConfig, readPermissions, readPluginConfig, refreshRegistry as refreshGroupRegistry, refreshRegistry$1 as refreshSkillRegistry, removeApiKeyFromRejected, removeAutoApprovePattern, removeContinueModel, removeGroup, removeLocalClaudeCode, removeRedundantConfigs, removeSkill, renderCodexConfig, renderProgressBar, resetPermissions, resolveCodeToolType, runAider, runCodexFullInit, runCodexSystemPromptSelection, runCodexUninstall, runCodexUpdate, runCodexWorkflowImport, runCodexWorkflowImportWithLanguageSelection, runCodexWorkflowSelection, runConfigWizard, runDoctor, runHealthCheck, runOnboarding, saveKnowledgeBase, searchGroups, searchSkills, sectionDivider, selectInstallMethod, setInstallMethod, setPrimaryApiKey, setSkillEnabled, shouldShowManagementMode, showQuickMenu, showStatus, switchCodexProvider, switchToOfficialLogin, switchToProvider, syncSkillsToContinue, trustDirectory, uninstallCodeTool, unloadPlugin, untrustDirectory, updateCustomModel, updateDefaultModel, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin, validateProviderData, verifyInstallation, writeAiderConfig, writeAuthFile, writeCodexConfig, writeConsolidatedConfig, writeContinueConfig, writeMcpConfig, writePermissions, writePluginConfig };
|
|
2645
|
+
export type { AgentDefinition, AgentExtension, AgentTemplate, AiOutputLanguage, AiderConfig, ApiConfig, AuditCycle, AuditCycleStatus, AuditReport, BatchSkillOptions, BatchSkillTemplate, BoxStyle, BuildTool, CICDSystem, CcjkPlugin, CcjkSkill, CheckResult, ClaudeConfiguration, CodeToolInfo, CodeToolType, CodexConfigData, CodexFullInitOptions, CodexProvider, CodexUninstallItem, CodexUninstallResult, CodexVersionInfo, CommandExtension, ConfigDiff, ConfigLocation, ConfigManagementMode, ConfigSuggestions, ConsolidatedConfig, ContinueConfig, ContinueMcpServer, ContinueModel, EvaluatedIssue, ExecutionPlan, FileChange, FixDecision, FixPlan, FixResult, Framework, GeneratedFix, GroupCategory, GroupExport, GroupInstallResult, GroupRegistry, GroupSearchOptions, HealthReport, InstallationStatus, Issue, KnowledgeBase, KnowledgeEntry, Language, LanguageGroupId, LoadedPlugin, McpServerConfig, McpService, McpServiceExtension, MenuBuilderOptions, MenuItem, MenuResult, MenuSection, NewIssue, OnboardingResult, OutputStyleExtension, PackageManager, PermissionSet, PermissionTemplate, PermissionType, PluginConfig, PluginContext, PluginDiscoveryResult, PluginInfo, PluginLogger, PluginMetadata, PluginStorage, PluginVersionInfo, PredefinedGroupId, ProjectContext, ProjectInfo, ProjectType, ProviderOperationResult, ProviderUpdateData, Regression, ScanResult, ScanStrategy, ScanTarget, ShenChaConfig, SiteTypeGroupId, SkillCategory, SkillExport, SkillInstallResult, SkillRegistry, SkillSearchOptions, SpecialtyGroupId, SubagentGroup, SupportedLang, TestFramework, ToolInstallResult, ToolStatus, UpgradeResult, VerificationResult, VerifyResult, VersionInfo, WorkflowExtension };
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,14 @@ declare const CCJK_CONFIG_FILE: string;
|
|
|
24
24
|
declare const CCJK_PLUGINS_DIR: string;
|
|
25
25
|
declare const CCJK_SKILLS_DIR: string;
|
|
26
26
|
declare const CCJK_GROUPS_DIR: string;
|
|
27
|
+
declare const CCJK_CLOUD_PLUGINS_DIR: string;
|
|
28
|
+
declare const CCJK_CLOUD_PLUGINS_CACHE_DIR: string;
|
|
29
|
+
declare const CCJK_CLOUD_PLUGINS_CACHE_FILE: string;
|
|
30
|
+
declare const CCJK_CLOUD_PLUGINS_INSTALLED_DIR: string;
|
|
31
|
+
declare const CCJK_CLOUD_API_URL = "https://api.ccjk.dev/v1";
|
|
32
|
+
declare const CCJK_CLOUD_PLUGINS_API = "https://api.ccjk.dev/v1/plugins";
|
|
33
|
+
declare const CLOUD_PLUGINS_CACHE_TTL: number;
|
|
34
|
+
declare const CLOUD_PLUGINS_MAX_CACHE_SIZE = 1000;
|
|
27
35
|
declare const LEGACY_ZCF_CONFIG_DIR: string;
|
|
28
36
|
declare const LEGACY_ZCF_CONFIG_FILE: string;
|
|
29
37
|
declare const LEGACY_ZCF_CONFIG_FILES: string[];
|
|
@@ -1443,6 +1451,8 @@ declare const COLORS: {
|
|
|
1443
1451
|
muted: ansis.Ansis;
|
|
1444
1452
|
bold: ansis.Ansis;
|
|
1445
1453
|
};
|
|
1454
|
+
declare function getDisplayWidth(str: string): number;
|
|
1455
|
+
declare function padToDisplayWidth(str: string, targetWidth: number): string;
|
|
1446
1456
|
declare function displayBanner(subtitle?: string): void;
|
|
1447
1457
|
declare function displayBannerWithInfo(subtitle?: string): void;
|
|
1448
1458
|
declare function renderProgressBar(progress: number, width?: number): string;
|
|
@@ -1961,6 +1971,10 @@ declare function syncSkillsToContinue(skills: Array<{
|
|
|
1961
1971
|
template: string;
|
|
1962
1972
|
}>): void;
|
|
1963
1973
|
|
|
1974
|
+
/**
|
|
1975
|
+
* Code tool info type (extracted from CODE_TOOL_INFO)
|
|
1976
|
+
*/
|
|
1977
|
+
type CodeToolInfo = (typeof CODE_TOOL_INFO)[CodeToolType];
|
|
1964
1978
|
/**
|
|
1965
1979
|
* Tool installation status
|
|
1966
1980
|
*/
|
|
@@ -2016,25 +2030,11 @@ declare function installTool(tool: CodeToolType): Promise<ToolInstallResult>;
|
|
|
2016
2030
|
/**
|
|
2017
2031
|
* Get tool info
|
|
2018
2032
|
*/
|
|
2019
|
-
declare function getToolInfo(tool: CodeToolType):
|
|
2020
|
-
name: string;
|
|
2021
|
-
description: string;
|
|
2022
|
-
website: string;
|
|
2023
|
-
installCmd: string;
|
|
2024
|
-
configFormat: "json" | "toml" | "yaml";
|
|
2025
|
-
category: "cli" | "extension" | "editor";
|
|
2026
|
-
};
|
|
2033
|
+
declare function getToolInfo(tool: CodeToolType): CodeToolInfo;
|
|
2027
2034
|
/**
|
|
2028
2035
|
* Get all tools info
|
|
2029
2036
|
*/
|
|
2030
|
-
declare function getAllToolsInfo(): Record<
|
|
2031
|
-
name: string;
|
|
2032
|
-
description: string;
|
|
2033
|
-
website: string;
|
|
2034
|
-
installCmd: string;
|
|
2035
|
-
configFormat: "json" | "toml" | "yaml";
|
|
2036
|
-
category: "cli" | "extension" | "editor";
|
|
2037
|
-
}>;
|
|
2037
|
+
declare function getAllToolsInfo(): Record<CodeToolType, CodeToolInfo>;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* Get tools by category
|
|
2040
2040
|
*/
|
|
@@ -2641,5 +2641,5 @@ declare function checkAllVersions(): Promise<void>;
|
|
|
2641
2641
|
*/
|
|
2642
2642
|
declare function upgradeAll(): Promise<void>;
|
|
2643
2643
|
|
|
2644
|
-
export { AIDER_CONFIG_FILE, AIDER_DIR, AIDER_ENV_FILE, AI_OUTPUT_LANGUAGES, API_DEFAULT_URL, API_ENV_KEY, 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, 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, COLORS, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, CodexUninstaller, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, MenuBuilder, PERMISSION_TEMPLATES, SETTINGS_FILE, STATUS, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, addAutoApprovePattern, addCompletedOnboarding, addContinueCustomCommand, addContinueMcpServer, addContinueModel, addGroup, addProviderToExisting, addSkill, applyAiLanguageDirective, applyCodexPlatformCommand, applyTemplate, backupCodexAgents, backupCodexComplete, backupCodexConfig, backupCodexFiles, backupCodexPrompts, backupExistingConfig, backupMcpConfig, boxify, buildMcpServerConfig, checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkCodexUpdate, checkPluginVersions, cleanupPermissions, switchToOfficialLogin$1 as codexSwitchToOfficialLogin, commandExists, compareConfigs, configureAiderApi, configureApi, configureCodexApi, configureCodexMcp, configureContinueApi, configureIncrementalManagement, confirm, consolidateConfigs, copyConfigFiles, createBackupDirectory, createBatchSkills, createHomebrewSymlink, deleteProviders, detectAllConfigs, detectBuildTools, detectCICDSystems, detectConfigManagementMode, detectFrameworks, detectInstalledVersion, detectLanguages, detectPackageManager, detectProject, detectTestFrameworks, determineProjectType, disableGroup, disablePlugin, discoverPlugins, displayBanner, displayBannerWithInfo, displayConfigScan, displayCurrentStatus, displayHealthReport, displayPermissions, displayVerificationResult, editExistingProvider, enableContinueContextProvider, enableGroup, enablePlugin, ensureAiderDir, ensureApiKeyApproved, ensureClaudeDir, ensureContinueDir, ensureEnvKeyMigration, ensureGroupsDir, ensurePluginsDir, ensureSkillsDir, executeInstallMethod, exportGroups, exportPermissions, exportProjectKnowledge, exportSkills, fixWindowsMcpConfig, formatToolStatus, generateSuggestions, getAiOutputLanguageLabel, getAiderModelPresets, getAiderVersion, getAllGroups, getAllSkills, getAllToolsInfo, getAllToolsStatus, getAvailableManagementActions, getBackupMessage, getBatchCategories, getCodexVersion, getContinueProviderPresets, getCurrentCodexProvider, getCurrentTemplateId, getEnabledAgents, getEnabledSkillIds, getExistingApiConfig, getExistingModelConfig, getGroup, getRegistry as getGroupRegistry, getInstallationStatus, getInstalledTools, getLoadedPlugins, getMcpConfigPath, getPlatform, getPluginAgents, getPluginInfo, getPluginMcpServices, getPluginOutputStyles, getPluginSkills, getPluginWorkflows, getProjectKnowledge, getProjectSummary, getRecommendedTools, getSkill, getRegistry$1 as getSkillRegistry, getToolConfigPath, getToolDir, getToolInfo, getToolStatus, getToolVersion, getToolsByCategory, handleInstallFailure, importGroups, importPermissions, importRecommendedEnv, importRecommendedPermissions, importSkills, init, initializePlugins, installAider, installClaudeCode, installCodex, installCodexCli, installTool, isAiderInstalled, isClaudeCodeInstalled, isCodeToolType, isCodexInstalled$1 as isCodexCliInstalled, isCodexInstalled, isContinueConfigured, isDirectoryTrusted, isGroupEnabled, isLocalClaudeCodeInstalled, isPermissionAllowed, isToolInstalled, listCodexProviders, listPlugins, loadKnowledgeBase, loadPlugin, manageApiKeyApproval, menuItem, mergeAndCleanPermissions, mergeConfigs, mergeMcpServers, mergeSettingsFile, migrateEnvKeyInContent, migrateEnvKeyToTempEnvKey, needsEnvKeyMigration, openSettingsJson, parseCodexConfig, promptApiConfigurationAction, quickSync, readAiderConfig, readCodexConfig, readContinueConfig, readMcpConfig, readPermissions, readPluginConfig, refreshRegistry as refreshGroupRegistry, refreshRegistry$1 as refreshSkillRegistry, removeApiKeyFromRejected, removeAutoApprovePattern, removeContinueModel, removeGroup, removeLocalClaudeCode, removeRedundantConfigs, removeSkill, renderCodexConfig, renderProgressBar, resetPermissions, resolveCodeToolType, runAider, runCodexFullInit, runCodexSystemPromptSelection, runCodexUninstall, runCodexUpdate, runCodexWorkflowImport, runCodexWorkflowImportWithLanguageSelection, runCodexWorkflowSelection, runConfigWizard, runDoctor, runHealthCheck, runOnboarding, saveKnowledgeBase, searchGroups, searchSkills, sectionDivider, selectInstallMethod, setInstallMethod, setPrimaryApiKey, setSkillEnabled, shouldShowManagementMode, showQuickMenu, showStatus, switchCodexProvider, switchToOfficialLogin, switchToProvider, syncSkillsToContinue, trustDirectory, uninstallCodeTool, unloadPlugin, untrustDirectory, updateCustomModel, updateDefaultModel, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin, validateProviderData, verifyInstallation, writeAiderConfig, writeAuthFile, writeCodexConfig, writeConsolidatedConfig, writeContinueConfig, writeMcpConfig, writePermissions, writePluginConfig };
|
|
2645
|
-
export type { AgentDefinition, AgentExtension, AgentTemplate, AiOutputLanguage, AiderConfig, ApiConfig, AuditCycle, AuditCycleStatus, AuditReport, BatchSkillOptions, BatchSkillTemplate, BoxStyle, BuildTool, CICDSystem, CcjkPlugin, CcjkSkill, CheckResult, ClaudeConfiguration, CodeToolType, CodexConfigData, CodexFullInitOptions, CodexProvider, CodexUninstallItem, CodexUninstallResult, CodexVersionInfo, CommandExtension, ConfigDiff, ConfigLocation, ConfigManagementMode, ConfigSuggestions, ConsolidatedConfig, ContinueConfig, ContinueMcpServer, ContinueModel, EvaluatedIssue, ExecutionPlan, FileChange, FixDecision, FixPlan, FixResult, Framework, GeneratedFix, GroupCategory, GroupExport, GroupInstallResult, GroupRegistry, GroupSearchOptions, HealthReport, InstallationStatus, Issue, KnowledgeBase, KnowledgeEntry, Language, LanguageGroupId, LoadedPlugin, McpServerConfig, McpService, McpServiceExtension, MenuBuilderOptions, MenuItem, MenuResult, MenuSection, NewIssue, OnboardingResult, OutputStyleExtension, PackageManager, PermissionSet, PermissionTemplate, PermissionType, PluginConfig, PluginContext, PluginDiscoveryResult, PluginInfo, PluginLogger, PluginMetadata, PluginStorage, PluginVersionInfo, PredefinedGroupId, ProjectContext, ProjectInfo, ProjectType, ProviderOperationResult, ProviderUpdateData, Regression, ScanResult, ScanStrategy, ScanTarget, ShenChaConfig, SiteTypeGroupId, SkillCategory, SkillExport, SkillInstallResult, SkillRegistry, SkillSearchOptions, SpecialtyGroupId, SubagentGroup, SupportedLang, TestFramework, ToolInstallResult, ToolStatus, UpgradeResult, VerificationResult, VerifyResult, VersionInfo, WorkflowExtension };
|
|
2644
|
+
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, COLORS, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, CodexUninstaller, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, MenuBuilder, PERMISSION_TEMPLATES, SETTINGS_FILE, STATUS, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, addAutoApprovePattern, addCompletedOnboarding, addContinueCustomCommand, addContinueMcpServer, addContinueModel, addGroup, addProviderToExisting, addSkill, applyAiLanguageDirective, applyCodexPlatformCommand, applyTemplate, backupCodexAgents, backupCodexComplete, backupCodexConfig, backupCodexFiles, backupCodexPrompts, backupExistingConfig, backupMcpConfig, boxify, buildMcpServerConfig, checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkCodexUpdate, checkPluginVersions, cleanupPermissions, switchToOfficialLogin$1 as codexSwitchToOfficialLogin, commandExists, compareConfigs, configureAiderApi, configureApi, configureCodexApi, configureCodexMcp, configureContinueApi, configureIncrementalManagement, confirm, consolidateConfigs, copyConfigFiles, createBackupDirectory, createBatchSkills, createHomebrewSymlink, deleteProviders, detectAllConfigs, detectBuildTools, detectCICDSystems, detectConfigManagementMode, detectFrameworks, detectInstalledVersion, detectLanguages, detectPackageManager, detectProject, detectTestFrameworks, determineProjectType, disableGroup, disablePlugin, discoverPlugins, displayBanner, displayBannerWithInfo, displayConfigScan, displayCurrentStatus, displayHealthReport, displayPermissions, displayVerificationResult, editExistingProvider, enableContinueContextProvider, enableGroup, enablePlugin, ensureAiderDir, ensureApiKeyApproved, ensureClaudeDir, ensureContinueDir, ensureEnvKeyMigration, ensureGroupsDir, ensurePluginsDir, ensureSkillsDir, executeInstallMethod, exportGroups, exportPermissions, exportProjectKnowledge, exportSkills, fixWindowsMcpConfig, formatToolStatus, generateSuggestions, getAiOutputLanguageLabel, getAiderModelPresets, getAiderVersion, getAllGroups, getAllSkills, getAllToolsInfo, getAllToolsStatus, getAvailableManagementActions, getBackupMessage, getBatchCategories, getCodexVersion, getContinueProviderPresets, getCurrentCodexProvider, getCurrentTemplateId, getDisplayWidth, getEnabledAgents, getEnabledSkillIds, getExistingApiConfig, getExistingModelConfig, getGroup, getRegistry as getGroupRegistry, getInstallationStatus, getInstalledTools, getLoadedPlugins, getMcpConfigPath, getPlatform, getPluginAgents, getPluginInfo, getPluginMcpServices, getPluginOutputStyles, getPluginSkills, getPluginWorkflows, getProjectKnowledge, getProjectSummary, getRecommendedTools, getSkill, getRegistry$1 as getSkillRegistry, getToolConfigPath, getToolDir, getToolInfo, getToolStatus, getToolVersion, getToolsByCategory, handleInstallFailure, importGroups, importPermissions, importRecommendedEnv, importRecommendedPermissions, importSkills, init, initializePlugins, installAider, installClaudeCode, installCodex, installCodexCli, installTool, isAiderInstalled, isClaudeCodeInstalled, isCodeToolType, isCodexInstalled$1 as isCodexCliInstalled, isCodexInstalled, isContinueConfigured, isDirectoryTrusted, isGroupEnabled, isLocalClaudeCodeInstalled, isPermissionAllowed, isToolInstalled, listCodexProviders, listPlugins, loadKnowledgeBase, loadPlugin, manageApiKeyApproval, menuItem, mergeAndCleanPermissions, mergeConfigs, mergeMcpServers, mergeSettingsFile, migrateEnvKeyInContent, migrateEnvKeyToTempEnvKey, needsEnvKeyMigration, openSettingsJson, padToDisplayWidth, parseCodexConfig, promptApiConfigurationAction, quickSync, readAiderConfig, readCodexConfig, readContinueConfig, readMcpConfig, readPermissions, readPluginConfig, refreshRegistry as refreshGroupRegistry, refreshRegistry$1 as refreshSkillRegistry, removeApiKeyFromRejected, removeAutoApprovePattern, removeContinueModel, removeGroup, removeLocalClaudeCode, removeRedundantConfigs, removeSkill, renderCodexConfig, renderProgressBar, resetPermissions, resolveCodeToolType, runAider, runCodexFullInit, runCodexSystemPromptSelection, runCodexUninstall, runCodexUpdate, runCodexWorkflowImport, runCodexWorkflowImportWithLanguageSelection, runCodexWorkflowSelection, runConfigWizard, runDoctor, runHealthCheck, runOnboarding, saveKnowledgeBase, searchGroups, searchSkills, sectionDivider, selectInstallMethod, setInstallMethod, setPrimaryApiKey, setSkillEnabled, shouldShowManagementMode, showQuickMenu, showStatus, switchCodexProvider, switchToOfficialLogin, switchToProvider, syncSkillsToContinue, trustDirectory, uninstallCodeTool, unloadPlugin, untrustDirectory, updateCustomModel, updateDefaultModel, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin, validateProviderData, verifyInstallation, writeAiderConfig, writeAuthFile, writeCodexConfig, writeConsolidatedConfig, writeContinueConfig, writeMcpConfig, writePermissions, writePluginConfig };
|
|
2645
|
+
export type { AgentDefinition, AgentExtension, AgentTemplate, AiOutputLanguage, AiderConfig, ApiConfig, AuditCycle, AuditCycleStatus, AuditReport, BatchSkillOptions, BatchSkillTemplate, BoxStyle, BuildTool, CICDSystem, CcjkPlugin, CcjkSkill, CheckResult, ClaudeConfiguration, CodeToolInfo, CodeToolType, CodexConfigData, CodexFullInitOptions, CodexProvider, CodexUninstallItem, CodexUninstallResult, CodexVersionInfo, CommandExtension, ConfigDiff, ConfigLocation, ConfigManagementMode, ConfigSuggestions, ConsolidatedConfig, ContinueConfig, ContinueMcpServer, ContinueModel, EvaluatedIssue, ExecutionPlan, FileChange, FixDecision, FixPlan, FixResult, Framework, GeneratedFix, GroupCategory, GroupExport, GroupInstallResult, GroupRegistry, GroupSearchOptions, HealthReport, InstallationStatus, Issue, KnowledgeBase, KnowledgeEntry, Language, LanguageGroupId, LoadedPlugin, McpServerConfig, McpService, McpServiceExtension, MenuBuilderOptions, MenuItem, MenuResult, MenuSection, NewIssue, OnboardingResult, OutputStyleExtension, PackageManager, PermissionSet, PermissionTemplate, PermissionType, PluginConfig, PluginContext, PluginDiscoveryResult, PluginInfo, PluginLogger, PluginMetadata, PluginStorage, PluginVersionInfo, PredefinedGroupId, ProjectContext, ProjectInfo, ProjectType, ProviderOperationResult, ProviderUpdateData, Regression, ScanResult, ScanStrategy, ScanTarget, ShenChaConfig, SiteTypeGroupId, SkillCategory, SkillExport, SkillInstallResult, SkillRegistry, SkillSearchOptions, SpecialtyGroupId, SubagentGroup, SupportedLang, TestFramework, ToolInstallResult, ToolStatus, UpgradeResult, VerificationResult, VerifyResult, VersionInfo, WorkflowExtension };
|