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.
Files changed (36) hide show
  1. package/README.md +48 -2
  2. package/dist/chunks/claude-code-config-manager.mjs +8 -8
  3. package/dist/chunks/claude-code-incremental-manager.mjs +2 -2
  4. package/dist/chunks/codex-config-switch.mjs +4 -4
  5. package/dist/chunks/codex-provider-manager.mjs +2 -2
  6. package/dist/chunks/codex-uninstaller.mjs +3 -3
  7. package/dist/chunks/commands.mjs +2 -2
  8. package/dist/chunks/features.mjs +11 -11
  9. package/dist/chunks/plugin-recommendation.mjs +555 -0
  10. package/dist/chunks/simple-config.mjs +227 -87
  11. package/dist/chunks/skills-sync.mjs +854 -0
  12. package/dist/cli.mjs +12580 -6948
  13. package/dist/i18n/locales/en/agents.json +135 -0
  14. package/dist/i18n/locales/en/claude-md.json +73 -0
  15. package/dist/i18n/locales/en/cloudPlugins.json +118 -0
  16. package/dist/i18n/locales/en/common.json +2 -1
  17. package/dist/i18n/locales/en/hooksSync.json +111 -0
  18. package/dist/i18n/locales/en/mcp.json +31 -6
  19. package/dist/i18n/locales/en/menu.json +60 -1
  20. package/dist/i18n/locales/en/notification.json +170 -1
  21. package/dist/i18n/locales/en/plugins.json +133 -0
  22. package/dist/i18n/locales/en/skillsSync.json +74 -0
  23. package/dist/i18n/locales/zh-CN/agents.json +135 -0
  24. package/dist/i18n/locales/zh-CN/claude-md.json +73 -0
  25. package/dist/i18n/locales/zh-CN/cloudPlugins.json +118 -0
  26. package/dist/i18n/locales/zh-CN/common.json +2 -1
  27. package/dist/i18n/locales/zh-CN/hooksSync.json +111 -0
  28. package/dist/i18n/locales/zh-CN/mcp.json +31 -6
  29. package/dist/i18n/locales/zh-CN/menu.json +60 -1
  30. package/dist/i18n/locales/zh-CN/notification.json +170 -1
  31. package/dist/i18n/locales/zh-CN/plugins.json +133 -0
  32. package/dist/i18n/locales/zh-CN/skillsSync.json +74 -0
  33. package/dist/index.d.mts +18 -18
  34. package/dist/index.d.ts +18 -18
  35. package/dist/index.mjs +190 -188
  36. package/package.json +52 -49
@@ -133,5 +133,174 @@
133
133
  "menu.manageChannels": "Manage Channels",
134
134
  "menu.setThreshold": "Set Threshold",
135
135
  "menu.quietHours": "Quiet Hours",
136
- "menu.back": "Back"
136
+ "menu.back": "Back",
137
+
138
+ "local.title": "🖥️ Local Notification",
139
+ "local.description": "Local notifications via macOS Shortcuts and Bark push",
140
+ "local.configTitle": "Local Notification Configuration",
141
+ "local.configDescription": "Configure local notification methods for macOS",
142
+
143
+ "local.shortcut.title": "macOS Shortcut",
144
+ "local.shortcut.name": "Shortcut Name",
145
+ "local.shortcut.namePlaceholder": "ClaudeNotify",
146
+ "local.shortcut.nameHelp": "Name of the macOS Shortcut to run for notifications",
147
+ "local.shortcut.notAvailable": "macOS Shortcuts is not available on this system",
148
+ "local.shortcut.listAvailable": "Available Shortcuts:",
149
+ "local.shortcut.noShortcuts": "No shortcuts found. Please create a shortcut named 'ClaudeNotify' first.",
150
+ "local.shortcut.createHelp": "Create a shortcut that reads JSON input and displays a notification",
151
+
152
+ "local.bark.title": "Bark Push",
153
+ "local.bark.url": "Bark URL",
154
+ "local.bark.urlPlaceholder": "https://api.day.app/YOUR_KEY",
155
+ "local.bark.urlHelp": "Get this from the Bark app on your iPhone",
156
+ "local.bark.invalidUrl": "Invalid Bark URL format",
157
+ "local.bark.testSuccess": "Bark connection test successful",
158
+ "local.bark.testFailed": "Bark connection test failed",
159
+
160
+ "local.options.preferLocal": "Prefer Local Notification",
161
+ "local.options.preferLocalHelp": "Use macOS Shortcut when screen is unlocked",
162
+ "local.options.smartNotify": "Smart Notification",
163
+ "local.options.smartNotifyHelp": "Auto-detect screen lock status and choose notification method",
164
+ "local.options.fallbackToBark": "Fallback to Bark",
165
+ "local.options.fallbackToBarkHelp": "Use Bark if macOS Shortcut fails",
166
+
167
+ "local.status.title": "Local Notification Status",
168
+ "local.status.shortcutConfigured": "Shortcut: {{name}}",
169
+ "local.status.shortcutNotConfigured": "Shortcut: Not configured",
170
+ "local.status.barkConfigured": "Bark: Configured",
171
+ "local.status.barkNotConfigured": "Bark: Not configured",
172
+ "local.status.screenLocked": "Screen Status: Locked",
173
+ "local.status.screenUnlocked": "Screen Status: Unlocked",
174
+ "local.status.preferLocal": "Prefer Local: {{status}}",
175
+ "local.status.smartNotify": "Smart Notify: {{status}}",
176
+
177
+ "local.test.title": "Test Local Notification",
178
+ "local.test.selectMethod": "Select notification method to test:",
179
+ "local.test.shortcut": "Test macOS Shortcut",
180
+ "local.test.bark": "Test Bark Push",
181
+ "local.test.smart": "Test Smart Notification",
182
+ "local.test.sending": "Sending test notification...",
183
+ "local.test.success": "Test notification sent successfully via {{method}}",
184
+ "local.test.failed": "Test notification failed: {{error}}",
185
+ "local.test.checkDevice": "Please check your device for the notification",
186
+
187
+ "local.screenLock.checking": "Checking screen lock status...",
188
+ "local.screenLock.locked": "Screen is locked - will use Bark",
189
+ "local.screenLock.unlocked": "Screen is unlocked - will use Shortcut",
190
+ "local.screenLock.detectFailed": "Could not detect screen lock status",
191
+
192
+ "local.commands.localConfig": "Configure local notification settings",
193
+ "local.commands.localTest": "Test local notification",
194
+
195
+ "local.errors.notMacOS": "Local notifications are only available on macOS",
196
+ "local.errors.shortcutFailed": "Failed to run macOS Shortcut: {{error}}",
197
+ "local.errors.barkFailed": "Failed to send Bark notification: {{error}}",
198
+ "local.errors.noMethodConfigured": "No notification method configured",
199
+ "local.errors.configSaveFailed": "Failed to save configuration: {{error}}",
200
+
201
+ "cloud.bindTitle": "🔗 Bind Device to Cloud",
202
+ "cloud.bindInstructions": "Enter the binding code from your mobile app to link this device.",
203
+ "cloud.enterCode": "Enter binding code:",
204
+ "cloud.bindSuccess": "✅ Device bound successfully!",
205
+ "cloud.bindFailed": "❌ Binding failed: {{error}}",
206
+ "cloud.unbindTitle": "🔓 Unbind Device",
207
+ "cloud.unbindConfirm": "Are you sure you want to unbind this device?",
208
+ "cloud.unbindSuccess": "✅ Device unbound successfully!",
209
+ "cloud.unbindFailed": "❌ Unbind failed: {{error}}",
210
+ "cloud.statusTitle": "☁️ Cloud Notification Status",
211
+ "cloud.statusBound": "Bound",
212
+ "cloud.statusNotBound": "Not Bound",
213
+ "cloud.deviceId": "Device ID: {{id}}",
214
+ "cloud.boundAt": "Bound at: {{time}}",
215
+ "cloud.invalidCode": "Invalid binding code format",
216
+ "cloud.codeExpired": "Binding code has expired",
217
+ "cloud.alreadyBound": "Device is already bound. Unbind first to rebind.",
218
+
219
+ "menu.bind": "Bind to Cloud",
220
+ "menu.unbind": "Unbind from Cloud",
221
+ "menu.cloudStatus": "Cloud Status",
222
+ "menu.localConfig": "Local Notification Config",
223
+ "menu.statusLabel": "Status:",
224
+ "menu.channelsLabel": "Channels:",
225
+ "menu.thresholdLabel": "Threshold:",
226
+ "menu.enable": "Enable Notifications",
227
+ "menu.disable": "Disable Notifications",
228
+ "menu.configWizard": "Configuration Wizard",
229
+ "menu.sendTest": "Send Test Notification",
230
+ "menu.selectAction": "Select an action:",
231
+
232
+ "cloud.statusLabel": "Cloud:",
233
+ "cloud.bound": "Bound",
234
+ "cloud.notBound": "Not Bound",
235
+ "cloud.bindDevice": "Bind Device to Cloud",
236
+ "cloud.viewStatus": "View Cloud Status",
237
+ "cloud.unbindDevice": "Unbind Device",
238
+ "cloud.confirmRebind": "Do you want to unbind and rebind?",
239
+ "cloud.binding": "Binding device...",
240
+ "cloud.codeRequired": "Binding code is required",
241
+ "cloud.codeInvalid": "Binding code must be at least 4 characters",
242
+ "cloud.sendTestAfterBind": "Send a test notification?",
243
+ "cloud.unknownError": "Unknown error occurred",
244
+ "cloud.bindTroubleshooting": "Troubleshooting tips:",
245
+ "cloud.checkCode": "Check if the binding code is correct",
246
+ "cloud.checkExpiry": "Check if the binding code has expired",
247
+ "cloud.checkNetwork": "Check your network connection",
248
+ "cloud.bindError": "Error during binding",
249
+ "cloud.notBoundYet": "Device is not bound yet",
250
+ "cloud.confirmUnbind": "Are you sure you want to unbind this device?",
251
+ "cloud.unbindCancelled": "Unbind cancelled",
252
+ "cloud.bindHint": "Use 'ccjk notification bind' to bind this device",
253
+ "cloud.deviceIdLabel": "Device ID:",
254
+ "cloud.deviceNameLabel": "Device Name:",
255
+ "cloud.platformLabel": "Platform:",
256
+ "cloud.lastUsedLabel": "Last Used:",
257
+ "cloud.sendingTest": "Sending test notification...",
258
+ "cloud.testTitle": "CCJK Test Notification",
259
+ "cloud.testBody": "This is a test notification from CCJK CLI",
260
+ "cloud.testSuccess": "Test notification sent successfully!",
261
+ "cloud.testFailed": "Failed to send test notification",
262
+ "cloud.testError": "Error sending test notification",
263
+ "cloud.checkPhone": "Please check your phone for the notification",
264
+
265
+ "local.menuTitle": "Local Notification",
266
+ "local.currentStatus": "Current Status:",
267
+ "local.shortcuts.name": "macOS Shortcuts",
268
+ "local.shortcuts.currentShortcut": "Current: {{name}}",
269
+ "local.shortcuts.notAvailable": "Not available on this system",
270
+ "local.bark.name": "Bark Push",
271
+ "local.bark.currentServer": "Server: {{url}}",
272
+ "local.shortcuts.configure": "Configure Shortcuts",
273
+ "local.shortcuts.enable": "Enable Shortcuts",
274
+ "local.bark.configure": "Configure Bark",
275
+ "local.bark.enable": "Enable Bark",
276
+ "local.testLocal": "Test Local Notification",
277
+ "local.shortcuts.title": "macOS Shortcuts Configuration",
278
+ "local.shortcuts.description": "Use macOS Shortcuts app to display notifications",
279
+ "local.shortcuts.scanning": "Scanning for available shortcuts...",
280
+ "local.shortcuts.noShortcuts": "No shortcuts found",
281
+ "local.shortcuts.createHint": "Create a shortcut that accepts JSON input and displays a notification",
282
+ "local.shortcuts.found": "Found {{count}} shortcut(s)",
283
+ "local.shortcuts.selectShortcut": "Select a shortcut:",
284
+ "local.shortcuts.enterManually": "Enter name manually",
285
+ "local.shortcuts.disable": "Disable Shortcuts",
286
+ "local.shortcuts.disabled": "Shortcuts notification disabled",
287
+ "local.shortcuts.enterName": "Enter shortcut name:",
288
+ "local.shortcuts.configured": "Shortcuts configured: {{name}}",
289
+ "local.shortcuts.testNow": "Test the shortcut now?",
290
+ "local.shortcuts.testing": "Testing shortcut {{name}}",
291
+ "local.bark.description": "Use Bark app on iPhone to receive push notifications",
292
+ "local.bark.configureServer": "Configure Bark Server",
293
+ "local.bark.disable": "Disable Bark",
294
+ "local.bark.disabled": "Bark notification disabled",
295
+ "local.bark.enterUrl": "Enter Bark URL:",
296
+ "local.bark.configured": "Bark configured successfully",
297
+ "local.bark.testNow": "Test Bark notification now?",
298
+ "local.bark.testing": "Testing Bark notification",
299
+ "local.testing": "Testing local notifications...",
300
+ "local.noLocalEnabled": "No local notification method is enabled",
301
+ "local.configureFirst": "Configure shortcuts or Bark first",
302
+ "local.testTitle": "CCJK Test",
303
+ "local.testBody": "This is a test notification from CCJK CLI",
304
+
305
+ "errors.required": "This field is required"
137
306
  }
@@ -0,0 +1,133 @@
1
+ {
2
+ "title": "Cloud Plugins",
3
+ "description": "Manage cloud-based plugins",
4
+ "command.description": "Manage cloud-based plugins (list, search, install, recommend)",
5
+ "command.list": "List available plugins",
6
+ "command.search": "Search plugins by keyword",
7
+ "command.install": "Install a plugin",
8
+ "command.uninstall": "Uninstall a plugin",
9
+ "command.update": "Update installed plugins",
10
+ "command.recommend": "Get personalized plugin recommendations",
11
+ "command.info": "Show plugin details",
12
+ "command.cache": "Manage plugin cache",
13
+ "options.category": "Filter by category",
14
+ "options.limit": "Maximum number of results",
15
+ "options.json": "Output in JSON format",
16
+ "options.force": "Force operation without confirmation",
17
+ "options.dryRun": "Show what would be done without making changes",
18
+ "options.path": "Project path to analyze",
19
+ "menu.title": "☁️ Cloud Plugins",
20
+ "menu.selectAction": "Select an action:",
21
+ "menu.search": "Search Plugins",
22
+ "menu.recommend": "Get Recommendations",
23
+ "menu.installed": "Installed Plugins",
24
+ "menu.update": "Update Plugins",
25
+ "menu.info": "Plugin Info",
26
+ "menu.cache": "Manage Cache",
27
+ "menu.upload": "Upload Plugin",
28
+ "menu.searchPrompt": "Enter search query:",
29
+ "menu.infoPrompt": "Enter plugin ID:",
30
+ "info.category": "Category",
31
+ "info.downloads": "Downloads",
32
+ "info.rating": "Rating",
33
+ "info.description": "Description",
34
+ "info.version": "Version",
35
+ "info.author": "Author",
36
+ "info.license": "License",
37
+ "info.keywords": "Keywords",
38
+ "info.verified": "Verified Plugin",
39
+ "info.status": "Status",
40
+ "info.installed": "Installed",
41
+ "info.notInstalled": "Not Installed",
42
+ "info.ratings": "ratings",
43
+ "info.loading": "Loading plugin info...",
44
+ "info.loaded": "Plugin info loaded",
45
+ "info.notFound": "Plugin '{{id}}' not found",
46
+ "info.loadFailed": "Failed to load plugin info",
47
+ "noResults": "No plugins found",
48
+ "list.loading": "Loading installed plugins...",
49
+ "list.success": "Found {{count}} installed plugins",
50
+ "list.title": "📦 Installed Plugins",
51
+ "list.titleFiltered": "📦 Installed Plugins ({{category}})",
52
+ "list.failed": "Failed to load plugins",
53
+ "search.searching": "Searching for '{{query}}'...",
54
+ "search.found": "Found {{count}} plugins for '{{query}}'",
55
+ "search.results": "🔍 Search Results",
56
+ "search.failed": "Search failed",
57
+ "install.notFound": "Plugin '{{id}}' not found in registry",
58
+ "install.alreadyInstalled": "Plugin '{{name}}' is already installed",
59
+ "install.dryRun": "[Dry Run] Would install plugin:",
60
+ "install.installing": "Installing '{{name}}'...",
61
+ "install.success": "Successfully installed '{{name}}'",
62
+ "install.location": "Location",
63
+ "install.version": "Version",
64
+ "install.failed": "Failed to install '{{name}}'",
65
+ "uninstall.notFound": "Plugin '{{id}}' not found",
66
+ "uninstall.notInstalled": "Plugin '{{name}}' is not installed",
67
+ "uninstall.confirm": "Are you sure you want to uninstall '{{name}}'?",
68
+ "uninstall.cancelled": "Uninstall cancelled",
69
+ "uninstall.uninstalling": "Uninstalling '{{name}}'...",
70
+ "uninstall.success": "Successfully uninstalled '{{name}}'",
71
+ "uninstall.failed": "Failed to uninstall '{{name}}'",
72
+ "update.notFound": "Plugin '{{id}}' not found",
73
+ "update.notInstalled": "Plugin '{{name}}' is not installed",
74
+ "update.updating": "Updating '{{name}}'...",
75
+ "update.success": "Successfully updated '{{name}}' to v{{version}}",
76
+ "update.failed": "Failed to update '{{name}}'",
77
+ "update.checking": "Checking for updates...",
78
+ "update.checkComplete": "Update check complete",
79
+ "update.noUpdates": "All plugins are up to date!",
80
+ "update.available": "{{count}} update(s) available:",
81
+ "update.hint": "Run 'ccjk plugins update <id>' to update a specific plugin",
82
+ "update.checkFailed": "Failed to check for updates",
83
+ "recommend.analyzing": "Analyzing project for recommendations...",
84
+ "recommend.reasonExample": "Based on your project's tech stack and dependencies",
85
+ "recommend.complete": "Analysis complete",
86
+ "recommend.failed": "Failed to get recommendations",
87
+ "recommendations.title": "⭐ Recommended Plugins",
88
+ "recommendations.forYou": "Recommended for You",
89
+ "recommendations.trending": "Trending Plugins",
90
+ "recommendations.popular": "Most Popular",
91
+ "recommendations.new": "New Arrivals",
92
+ "recommendations.byCategory": "Browse by Category",
93
+ "recommendations.reason": "Reason",
94
+ "recommendations.confidence": "Confidence",
95
+ "recommendations.projectType": "Project Type",
96
+ "recommendations.frameworks": "Frameworks",
97
+ "recommendations.languages": "Languages",
98
+ "recommendations.score": "Recommendation Score",
99
+ "recommendations.scoreHigh": "Highly Recommended",
100
+ "recommendations.scoreMedium": "Recommended",
101
+ "recommendations.scoreLow": "May be useful",
102
+ "recommendations.noRecommendations": "No recommendations available at this time",
103
+ "recommendations.allInstalled": "You have all recommended plugins installed!",
104
+ "recommendations.cacheExpired": "Cache expired, fetching fresh recommendations...",
105
+ "recommendations.cloudUnavailable": "Cloud service unavailable, using local data",
106
+ "recommendations.fromCache": "From cache",
107
+ "recommendations.fromCloud": "From cloud",
108
+ "recommendations.popularity": "Popularity",
109
+ "recommendations.compatibility": "Compatibility",
110
+ "recommendations.tags": "Tags",
111
+ "recommendations.verified": "Verified",
112
+ "recommendations.installCommand": "Install Command",
113
+ "recommendations.viewDetails": "View Details",
114
+ "recommendations.refresh": "Refresh Recommendations",
115
+ "recommendations.filterByCategory": "Filter by Category",
116
+ "recommendations.environment": "Your Environment",
117
+ "recommendations.os": "Operating System",
118
+ "recommendations.codeTool": "Code Tool",
119
+ "recommendations.installedCount": "Installed Plugins",
120
+ "recommendations.language": "Preferred Language",
121
+ "cache.selectAction": "Select cache action:",
122
+ "cache.clear": "Clear Cache",
123
+ "cache.info": "Cache Info",
124
+ "cache.clearing": "Clearing cache...",
125
+ "cache.cleared": "Cache cleared successfully",
126
+ "cache.infoTitle": "📊 Cache Information",
127
+ "cache.location": "Location",
128
+ "cache.size": "Size",
129
+ "cache.entries": "Entries",
130
+ "cache.lastUpdated": "Last Updated",
131
+ "errors.searchQueryRequired": "Search query is required. Usage: ccjk plugins search <query>",
132
+ "errors.pluginIdRequired": "Plugin ID is required"
133
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "title": {
3
+ "sync": "🔄 Skills Sync",
4
+ "push": "↑ Push Skills",
5
+ "pull": "↓ Pull Skills",
6
+ "list": "📋 Cloud Skills List"
7
+ },
8
+ "menu": {
9
+ "title": "Skills Cloud Sync",
10
+ "prompt": "Select an action:",
11
+ "sync": "Sync all skills",
12
+ "push": "Push local skills to cloud",
13
+ "pull": "Pull skills from cloud",
14
+ "list": "View cloud skills list",
15
+ "status": "View sync status",
16
+ "back": "Back"
17
+ },
18
+ "prompt": {
19
+ "confirmSync": "Confirm sync all skills?",
20
+ "confirmPush": "Confirm push local skills to cloud?",
21
+ "confirmPull": "Confirm pull skills from cloud?"
22
+ },
23
+ "message": {
24
+ "syncing": "Syncing skills",
25
+ "pushing": "Pushing skills",
26
+ "pulling": "Pulling skills",
27
+ "cancelled": "Operation cancelled",
28
+ "foundLocalSkills": "Found {{count}} local skill(s)",
29
+ "foundCloudSkills": "Found {{count}} cloud skill(s)",
30
+ "noLocalSkills": "No local skills found",
31
+ "noCloudSkills": "No cloud skills found"
32
+ },
33
+ "label": {
34
+ "status": "Sync Status",
35
+ "localSkills": "Local Skills",
36
+ "cloudSkills": "Cloud Skills",
37
+ "lastSync": "Last Sync",
38
+ "syncStates": "Sync States",
39
+ "author": "Author",
40
+ "updated": "Updated"
41
+ },
42
+ "status": {
43
+ "synced": "Synced",
44
+ "localAhead": "Local Ahead",
45
+ "remoteAhead": "Remote Ahead",
46
+ "conflict": "Conflict",
47
+ "localOnly": "Local Only",
48
+ "remoteOnly": "Remote Only"
49
+ },
50
+ "result": {
51
+ "title": "Sync Result",
52
+ "success": "Sync succeeded",
53
+ "failed": "Sync failed",
54
+ "statistics": "Statistics",
55
+ "total": "Total",
56
+ "succeeded": "Succeeded",
57
+ "conflicts": "Conflicts",
58
+ "uploaded": "Uploaded",
59
+ "downloaded": "Downloaded",
60
+ "skipped": "Skipped",
61
+ "duration": "Duration",
62
+ "details": "Details",
63
+ "conflictHint": "Please resolve conflicts manually or use --force option to force sync"
64
+ },
65
+ "error": {
66
+ "syncFailed": "Sync failed",
67
+ "pushFailed": "Push failed",
68
+ "pullFailed": "Pull failed",
69
+ "listFailed": "List failed"
70
+ },
71
+ "warning": {
72
+ "statusFailed": "Failed to get status"
73
+ }
74
+ }
@@ -0,0 +1,135 @@
1
+ {
2
+ "command": {
3
+ "description": "管理 AI 代理定义和云同步"
4
+ },
5
+ "options": {
6
+ "category": "按类别筛选",
7
+ "limit": "结果数量限制",
8
+ "json": "以 JSON 格式输出",
9
+ "force": "强制操作(跳过确认)",
10
+ "dryRun": "模拟运行(不实际执行)",
11
+ "direction": "同步方向(push/pull/both)",
12
+ "format": "导出格式(json/yaml/markdown)",
13
+ "output": "输出文件路径"
14
+ },
15
+ "noResults": "未找到代理",
16
+ "info": {
17
+ "category": "类别",
18
+ "author": "作者",
19
+ "rating": "评分",
20
+ "description": "描述",
21
+ "version": "版本",
22
+ "downloads": "下载量",
23
+ "ratings": "评分数"
24
+ },
25
+ "list": {
26
+ "loading": "正在加载已安装的代理...",
27
+ "success": "找到 {{count}} 个已安装的代理",
28
+ "failed": "加载代理列表失败",
29
+ "title": "已安装的代理",
30
+ "titleFiltered": "已安装的代理(类别:{{category}})"
31
+ },
32
+ "search": {
33
+ "searching": "正在搜索 \"{{query}}\"...",
34
+ "found": "找到 {{count}} 个代理匹配 \"{{query}}\"",
35
+ "failed": "搜索失败",
36
+ "results": "搜索结果"
37
+ },
38
+ "install": {
39
+ "installing": "正在安装代理 {{id}}...",
40
+ "notFound": "未找到代理:{{id}}",
41
+ "dryRun": "模拟运行 - 将安装以下代理:",
42
+ "alreadyInstalled": "代理 {{name}} 已安装",
43
+ "success": "成功安装代理 {{name}}",
44
+ "failed": "安装代理 {{name}} 失败",
45
+ "warnings": "警告",
46
+ "location": "安装位置"
47
+ },
48
+ "uninstall": {
49
+ "notFound": "未找到代理:{{id}}",
50
+ "confirm": "确定要卸载代理 {{name}} 吗?",
51
+ "cancelled": "已取消卸载",
52
+ "uninstalling": "正在卸载代理 {{name}}...",
53
+ "success": "成功卸载代理 {{name}}",
54
+ "failed": "卸载代理 {{name}} 失败"
55
+ },
56
+ "sync": {
57
+ "notAuthenticated": "未认证。请先绑定设备。",
58
+ "bindHint": "运行 'ccjk notification bind <code>' 绑定设备",
59
+ "syncing": "正在同步代理...",
60
+ "success": "代理同步完成",
61
+ "failed": "代理同步失败",
62
+ "pushed": "已推送到云端",
63
+ "pulled": "已从云端拉取",
64
+ "conflicts": "冲突",
65
+ "skipped": "已跳过"
66
+ },
67
+ "templates": {
68
+ "loading": "正在加载代理模板...",
69
+ "success": "找到 {{count}} 个代理模板",
70
+ "failed": "加载模板失败",
71
+ "title": "可用的代理模板",
72
+ "titleFiltered": "代理模板(类别:{{category}})",
73
+ "noTemplates": "未找到模板",
74
+ "variables": "变量"
75
+ },
76
+ "create": {
77
+ "loading": "正在加载模板...",
78
+ "templateNotFound": "未找到模板:{{id}}",
79
+ "templateLoaded": "模板加载成功",
80
+ "namePrompt": "代理名称",
81
+ "nameRequired": "代理名称不能为空",
82
+ "variableRequired": "此变量为必填项",
83
+ "variableInvalid": "变量值无效",
84
+ "creating": "正在创建代理...",
85
+ "success": "成功创建代理 {{name}}",
86
+ "failed": "创建代理失败",
87
+ "location": "代理位置"
88
+ },
89
+ "export": {
90
+ "exporting": "正在导出代理 {{id}}...",
91
+ "success": "代理已导出到:{{path}}",
92
+ "failed": "导出代理失败"
93
+ },
94
+ "import": {
95
+ "importing": "正在导入代理:{{path}}...",
96
+ "success": "成功导入代理 {{name}}",
97
+ "failed": "导入代理失败",
98
+ "location": "代理位置"
99
+ },
100
+ "update": {
101
+ "checking": "正在检查代理更新...",
102
+ "checkComplete": "更新检查完成",
103
+ "checkFailed": "检查更新失败",
104
+ "noUpdates": "所有代理都是最新版本",
105
+ "available": "有 {{count}} 个代理可更新",
106
+ "hint": "运行 'ccjk agents install <agent-id>' 更新代理"
107
+ },
108
+ "menu": {
109
+ "title": "代理管理",
110
+ "selectAction": "选择操作",
111
+ "list": "列出已安装的代理",
112
+ "search": "搜索云端代理",
113
+ "install": "安装代理",
114
+ "uninstall": "卸载代理",
115
+ "sync": "同步代理",
116
+ "templates": "浏览模板",
117
+ "create": "从模板创建",
118
+ "export": "导出代理",
119
+ "import": "导入代理",
120
+ "update": "检查更新",
121
+ "searchPrompt": "输入搜索关键词",
122
+ "installPrompt": "输入代理 ID",
123
+ "uninstallPrompt": "选择要卸载的代理",
124
+ "createPrompt": "选择模板",
125
+ "exportPrompt": "选择要导出的代理",
126
+ "importPrompt": "输入文件路径",
127
+ "noAgentsInstalled": "未安装任何代理"
128
+ },
129
+ "errors": {
130
+ "searchQueryRequired": "错误:需要搜索关键词",
131
+ "agentIdRequired": "错误:需要代理 ID",
132
+ "templateIdRequired": "错误:需要模板 ID",
133
+ "filePathRequired": "错误:需要文件路径"
134
+ }
135
+ }
@@ -0,0 +1,73 @@
1
+ {
2
+ "menu": {
3
+ "title": "CLAUDE.md 管理",
4
+ "selectAction": "您想做什么?",
5
+ "browseTemplates": "浏览模板市场",
6
+ "applyTemplate": "应用模板到项目",
7
+ "uploadCloud": "上传到云端",
8
+ "downloadCloud": "从云端下载",
9
+ "listConfigs": "列出云端配置",
10
+ "versionHistory": "查看版本历史",
11
+ "rollback": "回滚到之前版本",
12
+ "exit": "退出",
13
+ "goodbye": "再见!"
14
+ },
15
+ "templates": {
16
+ "title": "CLAUDE.md 模板市场",
17
+ "selectCategory": "选择一个分类:",
18
+ "allCategories": "所有分类",
19
+ "selectTemplate": "选择一个模板:",
20
+ "noTemplates": "未找到模板",
21
+ "category": "分类",
22
+ "variables": "变量",
23
+ "applyNow": "现在应用此模板?",
24
+ "notFound": "未找到模板:{{id}}",
25
+ "projectPath": "输入项目路径:",
26
+ "pathNotExist": "路径不存在",
27
+ "enterVariable": "输入 {{variable}} 的值:",
28
+ "applying": "正在应用模板...",
29
+ "applied": "模板已成功应用到 {{path}}",
30
+ "applyFailed": "应用模板失败:{{error}}"
31
+ },
32
+ "cloud": {
33
+ "uploadTitle": "上传 CLAUDE.md 到云端",
34
+ "downloadTitle": "从云端下载 CLAUDE.md",
35
+ "listTitle": "云端配置",
36
+ "filePath": "输入 CLAUDE.md 文件路径:",
37
+ "fileNotExist": "文件不存在",
38
+ "configName": "配置名称:",
39
+ "projectType": "项目类型:",
40
+ "privacy": "隐私级别:",
41
+ "private": "私有(仅自己可见)",
42
+ "team": "团队(与团队共享)",
43
+ "public": "公开(所有人可见)",
44
+ "description": "描述(可选):",
45
+ "tags": "标签(逗号分隔,可选):",
46
+ "uploading": "正在上传到云端...",
47
+ "uploaded": "上传成功!配置 ID:{{id}}",
48
+ "uploadFailed": "上传失败:{{error}}",
49
+ "noConfigs": "未找到云端配置",
50
+ "selectConfig": "选择一个配置:",
51
+ "projectPath": "输入项目路径:",
52
+ "downloading": "正在从云端下载...",
53
+ "downloaded": "下载成功到 {{path}}",
54
+ "downloadFailed": "下载失败:{{error}}",
55
+ "type": "类型",
56
+ "updated": "更新时间",
57
+ "usage": "使用次数",
58
+ "other": "其他"
59
+ },
60
+ "version": {
61
+ "title": "版本历史",
62
+ "rollbackTitle": "回滚到之前版本",
63
+ "noVersions": "未找到版本历史",
64
+ "timestamp": "时间戳",
65
+ "message": "消息",
66
+ "selectVersion": "选择要回滚到的版本:",
67
+ "confirmRollback": "确定要回滚吗?这将覆盖当前版本。",
68
+ "cancelled": "回滚已取消",
69
+ "rolling": "正在回滚...",
70
+ "rolledBack": "回滚成功!",
71
+ "rollbackFailed": "回滚失败:{{error}}"
72
+ }
73
+ }