ccjk 1.3.1

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 (109) hide show
  1. package/LICENSE +21 -0
  2. package/README.ja.md +455 -0
  3. package/README.ko.md +455 -0
  4. package/README.md +550 -0
  5. package/README.zh-CN.md +488 -0
  6. package/bin/ccjk.mjs +2 -0
  7. package/dist/chunks/api-providers.mjs +89 -0
  8. package/dist/chunks/claude-code-config-manager.mjs +733 -0
  9. package/dist/chunks/claude-code-incremental-manager.mjs +603 -0
  10. package/dist/chunks/codex-config-switch.mjs +427 -0
  11. package/dist/chunks/codex-provider-manager.mjs +232 -0
  12. package/dist/chunks/codex-uninstaller.mjs +404 -0
  13. package/dist/chunks/commands.mjs +120 -0
  14. package/dist/chunks/features.mjs +642 -0
  15. package/dist/chunks/simple-config.mjs +10445 -0
  16. package/dist/cli.d.mts +1 -0
  17. package/dist/cli.d.ts +1 -0
  18. package/dist/cli.mjs +5972 -0
  19. package/dist/i18n/locales/en/api.json +63 -0
  20. package/dist/i18n/locales/en/ccjk.json +276 -0
  21. package/dist/i18n/locales/en/ccr.json +65 -0
  22. package/dist/i18n/locales/en/cli.json +57 -0
  23. package/dist/i18n/locales/en/codex.json +124 -0
  24. package/dist/i18n/locales/en/cometix.json +29 -0
  25. package/dist/i18n/locales/en/common.json +20 -0
  26. package/dist/i18n/locales/en/configuration.json +77 -0
  27. package/dist/i18n/locales/en/errors.json +26 -0
  28. package/dist/i18n/locales/en/installation.json +80 -0
  29. package/dist/i18n/locales/en/interview.json +104 -0
  30. package/dist/i18n/locales/en/language.json +19 -0
  31. package/dist/i18n/locales/en/mcp.json +38 -0
  32. package/dist/i18n/locales/en/menu.json +51 -0
  33. package/dist/i18n/locales/en/multi-config.json +79 -0
  34. package/dist/i18n/locales/en/shencha.json +14 -0
  35. package/dist/i18n/locales/en/team.json +7 -0
  36. package/dist/i18n/locales/en/tools.json +42 -0
  37. package/dist/i18n/locales/en/uninstall.json +56 -0
  38. package/dist/i18n/locales/en/updater.json +25 -0
  39. package/dist/i18n/locales/en/workflow.json +25 -0
  40. package/dist/i18n/locales/zh-CN/api.json +63 -0
  41. package/dist/i18n/locales/zh-CN/ccjk.json +276 -0
  42. package/dist/i18n/locales/zh-CN/ccr.json +65 -0
  43. package/dist/i18n/locales/zh-CN/cli.json +57 -0
  44. package/dist/i18n/locales/zh-CN/codex.json +124 -0
  45. package/dist/i18n/locales/zh-CN/cometix.json +29 -0
  46. package/dist/i18n/locales/zh-CN/common.json +20 -0
  47. package/dist/i18n/locales/zh-CN/configuration.json +77 -0
  48. package/dist/i18n/locales/zh-CN/errors.json +26 -0
  49. package/dist/i18n/locales/zh-CN/installation.json +80 -0
  50. package/dist/i18n/locales/zh-CN/interview.json +104 -0
  51. package/dist/i18n/locales/zh-CN/language.json +19 -0
  52. package/dist/i18n/locales/zh-CN/mcp.json +38 -0
  53. package/dist/i18n/locales/zh-CN/menu.json +51 -0
  54. package/dist/i18n/locales/zh-CN/multi-config.json +79 -0
  55. package/dist/i18n/locales/zh-CN/shencha.json +14 -0
  56. package/dist/i18n/locales/zh-CN/team.json +7 -0
  57. package/dist/i18n/locales/zh-CN/tools.json +42 -0
  58. package/dist/i18n/locales/zh-CN/uninstall.json +56 -0
  59. package/dist/i18n/locales/zh-CN/updater.json +25 -0
  60. package/dist/i18n/locales/zh-CN/workflow.json +25 -0
  61. package/dist/index.d.mts +2644 -0
  62. package/dist/index.d.ts +2644 -0
  63. package/dist/index.mjs +1706 -0
  64. package/package.json +157 -0
  65. package/templates/CLAUDE.md +219 -0
  66. package/templates/claude-code/CLAUDE.md +250 -0
  67. package/templates/claude-code/common/settings.json +38 -0
  68. package/templates/claude-code/en/workflow/bmad/commands/bmad-init.md +165 -0
  69. package/templates/claude-code/en/workflow/common/agents/get-current-datetime.md +29 -0
  70. package/templates/claude-code/en/workflow/common/agents/init-architect.md +114 -0
  71. package/templates/claude-code/en/workflow/common/commands/init-project.md +53 -0
  72. package/templates/claude-code/en/workflow/plan/agents/planner.md +116 -0
  73. package/templates/claude-code/en/workflow/plan/agents/ui-ux-designer.md +91 -0
  74. package/templates/claude-code/en/workflow/plan/commands/feat.md +105 -0
  75. package/templates/claude-code/zh-CN/workflow/bmad/commands/bmad-init.md +172 -0
  76. package/templates/claude-code/zh-CN/workflow/common/agents/get-current-datetime.md +29 -0
  77. package/templates/claude-code/zh-CN/workflow/common/agents/init-architect.md +114 -0
  78. package/templates/claude-code/zh-CN/workflow/common/commands/init-project.md +53 -0
  79. package/templates/claude-code/zh-CN/workflow/plan/agents/planner.md +116 -0
  80. package/templates/claude-code/zh-CN/workflow/plan/agents/ui-ux-designer.md +91 -0
  81. package/templates/claude-code/zh-CN/workflow/plan/commands/feat.md +105 -0
  82. package/templates/codex/common/config.toml +0 -0
  83. package/templates/common/output-styles/en/casual-friendly.md +97 -0
  84. package/templates/common/output-styles/en/engineer-professional.md +88 -0
  85. package/templates/common/output-styles/en/expert-concise.md +93 -0
  86. package/templates/common/output-styles/en/laowang-engineer.md +127 -0
  87. package/templates/common/output-styles/en/nekomata-engineer.md +120 -0
  88. package/templates/common/output-styles/en/ojousama-engineer.md +121 -0
  89. package/templates/common/output-styles/en/teaching-mode.md +102 -0
  90. package/templates/common/output-styles/en/technical-precise.md +101 -0
  91. package/templates/common/output-styles/zh-CN/engineer-professional.md +89 -0
  92. package/templates/common/output-styles/zh-CN/laowang-engineer.md +127 -0
  93. package/templates/common/output-styles/zh-CN/nekomata-engineer.md +120 -0
  94. package/templates/common/output-styles/zh-CN/ojousama-engineer.md +121 -0
  95. package/templates/common/workflow/git/en/git-cleanBranches.md +102 -0
  96. package/templates/common/workflow/git/en/git-commit.md +205 -0
  97. package/templates/common/workflow/git/en/git-rollback.md +90 -0
  98. package/templates/common/workflow/git/en/git-worktree.md +276 -0
  99. package/templates/common/workflow/git/zh-CN/git-cleanBranches.md +102 -0
  100. package/templates/common/workflow/git/zh-CN/git-commit.md +205 -0
  101. package/templates/common/workflow/git/zh-CN/git-rollback.md +90 -0
  102. package/templates/common/workflow/git/zh-CN/git-worktree.md +276 -0
  103. package/templates/common/workflow/interview/en/interview.md +212 -0
  104. package/templates/common/workflow/interview/zh-CN/interview.md +212 -0
  105. package/templates/common/workflow/sixStep/en/workflow.md +251 -0
  106. package/templates/common/workflow/sixStep/zh-CN/workflow.md +215 -0
  107. package/templates/industry/devops/en/ci-cd-pipeline.md +410 -0
  108. package/templates/industry/web-dev/en/api-design.md +299 -0
  109. package/templates/industry/web-dev/en/react-nextjs-setup.md +236 -0
@@ -0,0 +1,63 @@
1
+ {
2
+ "apiConfigAuthType": "Auth Type",
3
+ "apiConfigKey": "Key",
4
+ "apiConfigSuccess": "API configured",
5
+ "apiConfigUrl": "URL",
6
+ "modelConfigSuccess": "API models configured",
7
+ "primaryModel": "Primary model",
8
+ "fastModel": "Fast model",
9
+ "apiKeyDesc": "For API keys from Anthropic Console",
10
+ "apiKeyValidation.example": "Example format: sk-abcdef123456_789xyz",
11
+ "authTokenDesc": "For tokens obtained via OAuth or browser login",
12
+ "configureApi": "Select API authentication method",
13
+ "enterApiKey": "Enter API Key",
14
+ "enterApiUrl": "Enter API URL",
15
+ "enterAuthToken": "Enter Auth Token",
16
+ "enterNewApiKey": "Enter new API Key (current: {key})",
17
+ "enterNewApiUrl": "Enter new API URL (current: {url})",
18
+ "existingApiConfig": "Existing API configuration detected:",
19
+ "invalidKeyFormat": "Invalid key format",
20
+ "invalidUrl": "Invalid URL",
21
+ "keepExistingConfig": "Keep existing configuration",
22
+ "keyRequired": "Key is required",
23
+ "modificationSaved": "Configuration saved",
24
+ "modifyAllConfig": "Modify all configuration",
25
+ "modifyApiKey": "Modify API Key",
26
+ "modifyApiUrl": "Modify API URL",
27
+ "modifyAuthType": "Modify auth type",
28
+ "modifyPartialConfig": "Modify partial configuration",
29
+
30
+ "selectApiMode": "Select API configuration mode",
31
+ "selectCustomConfigAction": "Select custom configuration action",
32
+ "selectModifyItems": "Select items to modify",
33
+ "selectNewAuthType": "Select new auth type (current: {type})",
34
+ "skipApi": "Skip (configure manually later)",
35
+ "customApiConfig": "Custom API configuration",
36
+ "urlRequired": "URL is required",
37
+ "useApiKey": "Use API Key (Key authentication)",
38
+ "useAuthToken": "Use Auth Token (OAuth authentication)",
39
+ "useCcrProxy": "Use CCR Proxy",
40
+ "useOfficialLogin": "Use Official Login",
41
+ "officialLoginConfigured": "Switched to official login mode",
42
+ "officialLoginFailed": "Failed to switch to official login mode",
43
+ "apiModeOfficial": "Use Official Login (No API Configuration)",
44
+ "apiModeCustom": "Custom API Configuration",
45
+ "apiModeCcr": "Use CCR Proxy",
46
+ "apiModeSwitch": "Switch API Configuration",
47
+ "apiModeSkip": "Skip",
48
+ "apiModePrompt": "Select API configuration mode",
49
+ "selectApiProvider": "Select API Provider",
50
+ "customProvider": "Custom Configuration",
51
+ "providerSelected": "Provider selected: {{name}}",
52
+ "enterProviderApiKey": "Enter API Key for {{provider}}",
53
+ "providersTitle": "Available API Providers",
54
+ "categoryOfficial": "Official",
55
+ "categoryOpenaiCompatible": "OpenAI Compatible",
56
+ "categoryChinese": "Chinese Providers",
57
+ "categoryFree": "Free Tier",
58
+ "categoryLocal": "Local",
59
+ "configSuccess": "API configured successfully! Provider: {provider}",
60
+ "configFailed": "API configuration failed: {error}",
61
+ "setupUsage": "Usage: ccjk api setup <provider> <api-key>",
62
+ "setupExample": "Example: ccjk api setup deepseek sk-xxx"
63
+ }
@@ -0,0 +1,276 @@
1
+ {
2
+ "menu": {
3
+ "title": "CCJK - Claude Code JinKu",
4
+ "subtitle": "AI-Powered Development Assistant",
5
+ "sections": {
6
+ "quickActions": "Quick Actions",
7
+ "configuration": "Configuration",
8
+ "tools": "Tools",
9
+ "system": "System"
10
+ },
11
+ "items": {
12
+ "fullSetup": "Full Setup",
13
+ "fullSetupDesc": "Complete CCJK configuration",
14
+ "updateWorkflows": "Update Workflows",
15
+ "updateWorkflowsDesc": "Install/update workflow templates",
16
+ "smartConfig": "Smart Config",
17
+ "smartConfigDesc": "Auto-configure for project",
18
+ "apiSettings": "API Settings",
19
+ "apiSettingsDesc": "Configure API keys and auth",
20
+ "mcpServices": "MCP Services",
21
+ "mcpServicesDesc": "Manage MCP server integrations",
22
+ "personality": "AI Personality",
23
+ "personalityDesc": "Set output style and language",
24
+ "permissions": "Permissions",
25
+ "permissionsDesc": "Manage Claude Code permissions",
26
+ "ccrRouter": "CCR Router",
27
+ "ccrRouterDesc": "Claude Code Router proxy",
28
+ "agentGroups": "Agent Groups",
29
+ "agentGroupsDesc": "Manage subagent groups",
30
+ "skills": "Skills",
31
+ "skillsDesc": "Manage skills library",
32
+ "configScan": "Config Scan",
33
+ "configScanDesc": "Find and consolidate configs",
34
+ "doctor": "Doctor",
35
+ "doctorDesc": "Run health check",
36
+ "versions": "Versions",
37
+ "versionsDesc": "Check for updates",
38
+ "upgradeAll": "Upgrade All",
39
+ "upgradeAllDesc": "Upgrade CCJK and Claude Code"
40
+ },
41
+ "footer": {
42
+ "language": "Language",
43
+ "help": "Help",
44
+ "quit": "Quit"
45
+ }
46
+ },
47
+ "skills": {
48
+ "title": "Skills Management",
49
+ "list": "List all skills",
50
+ "add": "Add skill",
51
+ "remove": "Remove skill",
52
+ "enable": "Enable skill",
53
+ "disable": "Disable skill",
54
+ "batch": "Batch create skills",
55
+ "export": "Export skills",
56
+ "import": "Import skills",
57
+ "categories": {
58
+ "git": "Git Operations",
59
+ "dev": "Development",
60
+ "seo": "SEO Optimization",
61
+ "devops": "DevOps",
62
+ "custom": "Custom"
63
+ }
64
+ },
65
+ "groups": {
66
+ "title": "Subagent Groups",
67
+ "list": "List all groups",
68
+ "enable": "Enable group",
69
+ "disable": "Disable group",
70
+ "create": "Create custom group",
71
+ "show": "Show group details",
72
+ "categories": {
73
+ "language": "Language-specific",
74
+ "siteType": "Site Type",
75
+ "seo": "SEO",
76
+ "devops": "DevOps",
77
+ "custom": "Custom"
78
+ }
79
+ },
80
+ "plugins": {
81
+ "title": "Plugin Management",
82
+ "list": "List plugins",
83
+ "install": "Install plugin",
84
+ "uninstall": "Uninstall plugin",
85
+ "enable": "Enable plugin",
86
+ "disable": "Disable plugin",
87
+ "update": "Update plugins"
88
+ },
89
+ "shencha": {
90
+ "title": "ShenCha Audit",
91
+ "init": "Initialize ShenCha",
92
+ "start": "Start audit cycle",
93
+ "run": "Run single audit",
94
+ "status": "Check status",
95
+ "report": "View reports",
96
+ "stop": "Stop current audit"
97
+ },
98
+ "health": {
99
+ "title": "Environment Health",
100
+ "checking": "Running health check...",
101
+ "claudeCode": "Claude Code",
102
+ "ccjk": "CCJK",
103
+ "nodejs": "Node.js",
104
+ "npm": "npm",
105
+ "git": "Git",
106
+ "api": "API Connectivity",
107
+ "config": "Config Files",
108
+ "permissions": "Permissions",
109
+ "disk": "Disk Space",
110
+ "score": "Score",
111
+ "recommendations": "Recommendations"
112
+ },
113
+ "permissions": {
114
+ "title": "Claude Code Permissions",
115
+ "trustedDirs": "Trusted Directories",
116
+ "operations": "Pre-authorized Operations",
117
+ "template": "Template",
118
+ "templates": {
119
+ "development": "Development",
120
+ "readonly": "Read Only",
121
+ "fullTrust": "Full Trust",
122
+ "restricted": "Restricted"
123
+ },
124
+ "types": {
125
+ "fileRead": "File Read",
126
+ "fileWrite": "File Write",
127
+ "fileDelete": "File Delete",
128
+ "gitOps": "Git Operations",
129
+ "npmCmds": "npm Commands",
130
+ "nodeExec": "Node Execution",
131
+ "sysCmds": "System Commands",
132
+ "network": "Network Access",
133
+ "mcpServer": "MCP Server"
134
+ }
135
+ },
136
+ "upgrade": {
137
+ "title": "Version Check",
138
+ "checking": "Checking versions...",
139
+ "upToDate": "up to date",
140
+ "updateAvailable": "update available",
141
+ "upgrading": "Upgrading...",
142
+ "upgraded": "Upgraded successfully",
143
+ "failed": "Upgrade failed"
144
+ },
145
+ "config": {
146
+ "title": "Config Files Detected",
147
+ "primary": "primary",
148
+ "legacy": "legacy",
149
+ "project": "project",
150
+ "conflicts": "Conflicts found",
151
+ "consolidate": "Consolidate",
152
+ "viewDetails": "View Details"
153
+ },
154
+ "common": {
155
+ "loading": "Loading...",
156
+ "success": "Success",
157
+ "error": "Error",
158
+ "warning": "Warning",
159
+ "info": "Info",
160
+ "yes": "Yes",
161
+ "no": "No",
162
+ "cancel": "Cancel",
163
+ "confirm": "Confirm",
164
+ "back": "Back",
165
+ "next": "Next",
166
+ "save": "Save",
167
+ "delete": "Delete",
168
+ "edit": "Edit",
169
+ "create": "Create",
170
+ "update": "Update",
171
+ "select": "Select",
172
+ "returnToMenu": "Return to menu?"
173
+ },
174
+ "tools": {
175
+ "title": "AI Coding Tools",
176
+ "subtitle": "Manage multiple AI coding assistants",
177
+ "scan": "Scan installed tools",
178
+ "install": "Install tool",
179
+ "configure": "Configure tool",
180
+ "switch": "Switch active tool",
181
+ "sync": "Sync configurations",
182
+ "status": {
183
+ "installed": "Installed",
184
+ "notInstalled": "Not installed",
185
+ "configured": "Configured",
186
+ "notConfigured": "Not configured"
187
+ },
188
+ "categories": {
189
+ "cli": "CLI Tools",
190
+ "extension": "IDE Extensions",
191
+ "editor": "AI Editors"
192
+ },
193
+ "list": {
194
+ "claudeCode": {
195
+ "name": "Claude Code",
196
+ "description": "Anthropic official CLI for Claude AI"
197
+ },
198
+ "codex": {
199
+ "name": "Codex",
200
+ "description": "OpenAI Codex CLI tool"
201
+ },
202
+ "aider": {
203
+ "name": "Aider",
204
+ "description": "AI pair programming in terminal"
205
+ },
206
+ "continue": {
207
+ "name": "Continue",
208
+ "description": "Open-source AI code assistant"
209
+ },
210
+ "cline": {
211
+ "name": "Cline",
212
+ "description": "Autonomous coding agent for VS Code"
213
+ },
214
+ "cursor": {
215
+ "name": "Cursor CLI",
216
+ "description": "AI-first code editor CLI"
217
+ }
218
+ },
219
+ "actions": {
220
+ "installAll": "Install all recommended",
221
+ "configureAll": "Configure all installed",
222
+ "syncApiKeys": "Sync API keys across tools",
223
+ "syncSkills": "Sync skills to all tools"
224
+ }
225
+ },
226
+ "apiRouter": {
227
+ "title": "API Configuration",
228
+ "subtitle": "Configure API providers for Claude Code",
229
+ "currentConfig": "Current API Configuration",
230
+ "noApiConfigured": "No API configured",
231
+ "modes": {
232
+ "official": "Official Anthropic",
233
+ "simple": "Simple Mode (API Proxy)",
234
+ "ccr": "CCR Advanced Router"
235
+ },
236
+ "wizard": {
237
+ "title": "API Configuration Wizard",
238
+ "selectMode": "Select configuration mode",
239
+ "quickSetup": "Quick Setup (Recommended) - Choose preset provider",
240
+ "officialApi": "Official Anthropic API - Direct connection",
241
+ "customConfig": "Custom Configuration - Manual API URL and key",
242
+ "ccrAdvanced": "CCR Advanced Router - Full Claude Code Router setup"
243
+ },
244
+ "providers": {
245
+ "title": "Available API Providers",
246
+ "recommended": "Recommended",
247
+ "chinese": "Chinese Providers",
248
+ "free": "Free Tier",
249
+ "local": "Local",
250
+ "viewAll": "View all providers..."
251
+ },
252
+ "setup": {
253
+ "success": "API configured successfully!",
254
+ "failed": "API configuration failed",
255
+ "provider": "Provider",
256
+ "defaultModel": "Default model",
257
+ "enterApiKey": "Enter API key",
258
+ "enterBaseUrl": "Enter API Base URL",
259
+ "apiKeyRequired": "API key is required",
260
+ "urlRequired": "URL is required",
261
+ "urlMustStartHttp": "URL must start with http:// or https://"
262
+ },
263
+ "test": {
264
+ "testing": "Testing API connection...",
265
+ "success": "API connection successful",
266
+ "failed": "API connection failed"
267
+ },
268
+ "categories": {
269
+ "official": "Official",
270
+ "openai-compatible": "OpenAI Compatible",
271
+ "chinese": "Chinese Providers",
272
+ "free": "Free Tier",
273
+ "local": "Local"
274
+ }
275
+ }
276
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "advancedConfigTip": "You can use ccr ui command for advanced configuration",
3
+ "backupCcrConfig": "Backing up existing CCR configuration...",
4
+ "ccrAlreadyInstalled": "Claude Code Router is already installed",
5
+ "ccrBackupFailed": "Failed to backup CCR configuration",
6
+ "ccrBackupSuccess": "CCR configuration backed up to: {path}",
7
+ "ccrCommandFailed": "Failed to execute CCR command",
8
+ "ccrConfigFailed": "Failed to configure CCR",
9
+ "ccrConfigSuccess": "CCR configuration saved",
10
+ "ccrInstallFailed": "Failed to install Claude Code Router",
11
+ "ccrInstallSuccess": "Claude Code Router installation successful",
12
+ "ccrMenuDescriptions.checkStatus": "Check CCR service running status",
13
+ "ccrMenuDescriptions.initCcr": "Install and configure CCR",
14
+ "ccrMenuDescriptions.restart": "Restart CCR service",
15
+ "ccrMenuDescriptions.start": "Start CCR service",
16
+ "ccrMenuDescriptions.startUi": "Open Web interface to manage CCR",
17
+ "ccrMenuDescriptions.stop": "Stop CCR service",
18
+ "ccrMenuOptions.back": "Back to Main Menu",
19
+ "ccrMenuOptions.checkStatus": "Check CCR Status",
20
+ "ccrMenuOptions.initCcr": "Initialize CCR",
21
+ "ccrMenuOptions.restart": "Restart CCR",
22
+ "ccrMenuOptions.start": "Start CCR",
23
+ "ccrMenuOptions.startUi": "Start CCR UI",
24
+ "ccrMenuOptions.stop": "Stop CCR",
25
+ "ccrMenuTitle": "CCR - Claude Code Router Management",
26
+ "ccrNotConfigured": "CCR is not configured. Please initialize CCR first.",
27
+ "ccrRestartFailed": "Failed to restart CCR service",
28
+ "ccrRestartSuccess": "CCR service restarted",
29
+ "ccrRestarted": "CCR restarted",
30
+ "ccrSetupComplete": "CCR setup completed",
31
+ "ccrStarted": "CCR started",
32
+ "ccrStatusTitle": "CCR Status Information:",
33
+ "ccrStopped": "CCR stopped",
34
+ "ccrUiApiKey": "CCR UI Login Key",
35
+ "ccrUiApiKeyHint": "Use this key to login to CCR UI interface",
36
+ "ccrUiStarted": "CCR UI started",
37
+ "checkingCcrStatus": "Checking CCR status...",
38
+ "configTips": "Configuration Tips",
39
+ "detectedIncorrectPackage": "Detected incorrect package claude-code-router, uninstalling...",
40
+ "enterApiKeyForProvider": "Enter API key for {provider}:",
41
+ "errorStartingCcrService": "Error starting CCR service",
42
+ "existingCcrConfig": "Found existing CCR configuration",
43
+ "failedToStartCcrService": "Failed to start CCR service",
44
+ "failedToUninstallIncorrectPackage": "Failed to uninstall incorrect package, continuing installation",
45
+ "fetchingPresets": "Fetching provider presets...",
46
+ "installingCcr": "Installing Claude Code Router...",
47
+ "keepingExistingConfig": "Keeping existing configuration",
48
+ "manualConfigTip": "After manually modifying the config file, please execute ccr restart to apply changes",
49
+ "noPresetsAvailable": "No presets available",
50
+ "overwriteCcrConfig": "Do you want to backup existing CCR configuration and reconfigure?",
51
+ "pleaseInitFirst": "Please select option 1 to initialize CCR.",
52
+ "proxyConfigSuccess": "Proxy settings configured",
53
+ "restartingCcr": "Restarting CCR...",
54
+ "selectCcrPreset": "Select a provider preset:",
55
+ "selectDefaultModelForProvider": "Select default model for {provider}:",
56
+ "skipConfiguring": "Skipping preset configuration, creating empty configuration framework",
57
+ "skipOption": "Skip, configure manually in CCR",
58
+ "startingCcr": "Starting CCR...",
59
+ "startingCcrUi": "Starting CCR UI...",
60
+ "stoppingCcr": "Stopping CCR...",
61
+ "uninstalledIncorrectPackage": "Successfully uninstalled incorrect package",
62
+ "useClaudeCommand": "Please use the claude command to start Claude Code (not ccr code)",
63
+ "apiKeyApprovalSuccess": "CCR API key approval status managed successfully",
64
+ "apiKeyApprovalFailed": "Failed to manage CCR API key approval status"
65
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "help.commands": "Commands",
3
+ "help.shortcuts": "Shortcuts",
4
+ "help.options": "Options",
5
+ "help.examples": "Examples",
6
+ "help.nonInteractiveMode": "Non-interactive mode (for CI/CD)",
7
+ "help.commandDescriptions.showInteractiveMenuDefault": "Show interactive menu (default)",
8
+ "help.commandDescriptions.initClaudeCodeConfig": "Initialize Claude Code configuration",
9
+ "help.commandDescriptions.updateWorkflowFiles": "Update workflow-related md files",
10
+ "help.commandDescriptions.configureCcrProxy": "Configure Claude Code Router for model proxy",
11
+ "help.commandDescriptions.claudeCodeUsageAnalysis": "Claude Code usage statistics analysis",
12
+ "help.commandDescriptions.interviewDrivenDev": "Interview-Driven Development (40+ deep questions)",
13
+ "help.commandDescriptions.uninstallConfigurations": "Remove Claude Code configurations and tools",
14
+ "help.commandDescriptions.checkUpdateVersions": "Check and update to latest versions",
15
+ "help.shortcutDescriptions.quickInit": "Quick init",
16
+ "help.shortcutDescriptions.quickUpdate": "Quick update",
17
+ "help.shortcutDescriptions.quickInterview": "Quick interview",
18
+ "help.shortcutDescriptions.quickCheckUpdates": "Quick check updates",
19
+ "help.optionDescriptions.displayLanguage": "Display language",
20
+ "help.optionDescriptions.configurationLanguage": "Configuration language",
21
+ "help.optionDescriptions.forceOverwrite": "Force overwrite",
22
+ "help.optionDescriptions.displayHelp": "Display help",
23
+ "help.optionDescriptions.displayVersion": "Display version",
24
+ "help.optionDescriptions.skipAllPrompts": "Skip all prompts",
25
+ "help.optionDescriptions.apiType": "API type",
26
+ "help.optionDescriptions.apiKey": "API key (for both types)",
27
+ "help.optionDescriptions.customApiUrl": "Custom API URL",
28
+ "help.optionDescriptions.apiModel": "Primary API model",
29
+ "help.optionDescriptions.apiHaikuModel": "Default Haiku model",
30
+ "help.optionDescriptions.apiSonnetModel": "Default Sonnet model",
31
+ "help.optionDescriptions.apiOpusModel": "Default Opus model",
32
+ "help.optionDescriptions.aiOutputLanguage": "AI output language",
33
+ "help.optionDescriptions.setAllLanguageParams": "Set all language params",
34
+ "help.optionDescriptions.configHandling": "Config handling",
35
+ "help.optionDescriptions.mcpServices": "MCP services",
36
+ "help.optionDescriptions.workflows": "Workflows",
37
+ "help.optionDescriptions.outputStyles": "Output styles",
38
+ "help.optionDescriptions.defaultOutputStyle": "Default output style",
39
+ "help.optionDescriptions.installStatuslineTool": "Install statusline tool",
40
+ "help.optionDescriptions.codeToolType": "Code tool type",
41
+ "help.exampleDescriptions.showInteractiveMenu": "Show interactive menu",
42
+ "help.exampleDescriptions.runFullInitialization": "Run full initialization",
43
+ "help.exampleDescriptions.updateWorkflowFilesOnly": "Update workflow-related md files only",
44
+ "help.exampleDescriptions.configureClaudeCodeRouter": "Configure Claude Code Router",
45
+ "help.exampleDescriptions.runClaudeCodeUsageAnalysis": "Run Claude Code usage analysis",
46
+ "help.exampleDescriptions.uninstallConfigurations": "Uninstall configurations and tools",
47
+ "help.exampleDescriptions.checkAndUpdateTools": "Check and update tools",
48
+ "help.exampleDescriptions.checkClaudeCode": "Check and update Claude Code tools",
49
+ "help.exampleDescriptions.checkCodex": "Check and update Codex tools",
50
+ "help.exampleDescriptions.nonInteractiveModeCicd": "Non-interactive mode (CI/CD)",
51
+ "banner.subtitle": "One-click configuration tool for Claude Code",
52
+ "banner.updateSubtitle": "Update configuration for Claude Code",
53
+ "help.defaults.dailyUsage": "Daily usage (default)",
54
+ "help.defaults.interactiveUninstall": "Interactive uninstall menu",
55
+ "help.defaults.updateTools": "Update Claude Code, CCR and CCometixLine",
56
+ "help.defaults.prefix": "default:"
57
+ }
@@ -0,0 +1,124 @@
1
+ {
2
+ "usingSudo": "⚠️ Detected non-root Linux user. Using sudo for Codex CLI installation (password prompt may appear).",
3
+ "alreadyInstalled": "⚠️ Codex CLI already installed, skipping installation",
4
+ "updatingCli": "🔄 Updating Codex CLI...",
5
+ "updateSuccess": "✔ Codex CLI updated",
6
+ "detectedHomebrew": "Detected Codex installed via Homebrew, will update using Homebrew",
7
+ "detectedNpm": "Detected Codex installed via npm, will update using npm",
8
+ "unknownInstallMethod": "⚠️ Unable to detect Codex installation method",
9
+ "fallingBackToNpm": "Falling back to npm update method",
10
+ "workflowInstall": "✔ Codex workflow templates installed",
11
+ "backupSuccess": "✔ Backup created at {{path}}",
12
+ "apiModePrompt": "Select API configuration mode",
13
+ "apiModeOfficial": "Use official login (no API configuration)",
14
+ "apiModeCustom": "Custom API configuration",
15
+ "officialConfigured": "✔ Codex API reset to official login mode",
16
+ "providerNamePrompt": "Provider name (letters, numbers, . _ -)",
17
+ "providerNameRequired": "Provider name is required",
18
+ "providerNameInvalid": "Provider name may only contain letters, numbers, dot, underscore or hyphen",
19
+ "providerBaseUrlPrompt": "Base URL",
20
+ "providerBaseUrlRequired": "Base URL is required",
21
+ "providerProtocolPrompt": "Select protocol to use",
22
+ "protocolResponses": "Responses (Recommended, new-generation response API with state management)",
23
+ "protocolChat": "Chat (Traditional chat completion API, requires message history)",
24
+ "providerApiKeyPrompt": "API key value",
25
+ "providerApiKeyRequired": "API key is required",
26
+ "addProviderPrompt": "Add another provider?",
27
+ "selectDefaultProviderPrompt": "Select default provider",
28
+ "noProvidersConfigured": "⚠️ No providers configured, skipping Codex API configuration",
29
+ "apiConfigured": "✔ Codex API configured",
30
+ "noMcpConfigured": "⚠️ No MCP services configured",
31
+ "mcpConfigured": "✔ Codex MCP services configured",
32
+ "uninstallModePrompt": "Select Codex uninstall mode",
33
+ "uninstallModeComplete": "Complete uninstall (remove all Codex related files)",
34
+ "uninstallModeCustom": "Custom uninstall (choose items to remove)",
35
+ "uninstallItemConfig": "Configuration file (config.toml)",
36
+ "uninstallItemAuth": "Authentication file (auth.json)",
37
+ "uninstallItemSystemPrompt": "System prompt file (AGENTS.md)",
38
+ "uninstallItemWorkflow": "Workflow directory (prompts/)",
39
+ "uninstallItemCliPackage": "CLI package (@openai/codex)",
40
+ "uninstallItemApiConfig": "API configuration (only remove API settings from config.toml)",
41
+ "uninstallItemMcpConfig": "MCP configuration (only remove MCP settings from config.toml)",
42
+ "uninstallItemBackups": "Backup directory (backup/)",
43
+ "customUninstallPrompt": "Select items to remove (use spacebar to select/deselect, enter to confirm)",
44
+ "uninstallPrompt": "This will remove Codex configuration created by CCJK. Continue?",
45
+ "uninstallCancelled": "⚠️ Codex uninstall cancelled",
46
+ "uninstallSuccess": "✔ Codex configuration removed",
47
+ "configNotFound": "Configuration file not found",
48
+ "authNotFound": "Authentication file not found",
49
+ "systemPromptNotFound": "System prompt file not found",
50
+ "workflowNotFound": "Workflow directory not found",
51
+ "packageNotFound": "Codex CLI package not installed",
52
+ "backupNotFound": "Backup directory not found",
53
+ "removedItem": "Moved to trash: {{item}}",
54
+ "removedConfig": "Removed configuration: {{config}}",
55
+ "apiConfigRemoved": "API configuration (model_provider and model_providers blocks)",
56
+ "mcpConfigRemoved": "MCP configuration (mcp_servers blocks)",
57
+ "setupComplete": "✔ Codex setup complete",
58
+ "systemPromptPrompt": "Please select system prompt style",
59
+ "workflowSelectionPrompt": "Select workflow types to install (multi-select)",
60
+ "providerDuplicatePrompt": "Provider name '{{name}}' already exists in {{source}}, overwrite it?",
61
+ "existingConfig": "existing configuration",
62
+ "currentSession": "current session",
63
+ "providerDuplicateSkipped": "Skipped duplicate provider configuration",
64
+ "providerSwitchSuccess": "✔ Switched to provider: {{provider}}",
65
+ "providerNotFound": "❌ Provider '{{provider}}' not found",
66
+ "listProvidersTitle": "Available providers:",
67
+ "currentProvider": "Current provider: {{provider}}",
68
+ "noProvidersAvailable": "⚠️ No providers available",
69
+ "configSwitchMode": "Switch API Config",
70
+ "incrementalManagementTitle": "📋 Incremental Configuration Management",
71
+ "currentProviderCount": "Current provider count: {{count}}",
72
+ "currentDefaultProvider": "Current default provider: {{provider}}",
73
+ "selectAction": "Select action",
74
+ "addProvider": "Add provider",
75
+ "editProvider": "Edit provider",
76
+ "copyProvider": "Copy provider",
77
+ "deleteProvider": "Delete provider",
78
+ "selectProviderToEdit": "Select provider to edit",
79
+ "selectProviderToCopy": "Select provider to copy",
80
+ "copyingProvider": "Copying provider: {{name}}",
81
+ "providerCopied": "✔ Successfully copied provider: {{name}}",
82
+ "providerCopyFailed": "❌ Failed to copy provider: {{error}}",
83
+ "providerModelPrompt": "Model name (e.g. gpt-5-codex)",
84
+ "providerModelRequired": "Model name is required",
85
+ "selectProvidersToDelete": "Select providers to delete (multiple)",
86
+ "selectAtLeastOne": "Please select at least one provider",
87
+ "cannotDeleteAll": "Cannot delete all providers, at least one must remain",
88
+ "confirmDeleteProviders": "Confirm deletion of the following providers: {{providers}}?",
89
+ "providerAdded": "✔ Successfully added provider: {{name}}",
90
+ "providerAddFailed": "❌ Failed to add provider: {{error}}",
91
+ "providerUpdated": "✔ Successfully updated provider: {{name}}",
92
+ "providerUpdateFailed": "❌ Failed to update provider: {{error}}",
93
+ "providersDeleted": "✔ Successfully deleted {{count}} providers",
94
+ "providersDeleteFailed": "❌ Failed to delete providers: {{error}}",
95
+ "newDefaultProvider": "ℹ️ New default provider: {{provider}}",
96
+ "noExistingProviders": "⚠️ No existing provider configurations",
97
+ "useOfficialLogin": "Use Official Login",
98
+ "apiConfigSwitchPrompt": "Select API configuration to switch to",
99
+ "agentsFileNotFound": "AGENTS.md file not found, please configure system prompt first",
100
+ "currentVersion": "Current version: v{version}",
101
+ "latestVersion": "Latest version: v{version}",
102
+ "confirmUpdate": "Update Codex to the latest version?",
103
+ "updateSkipped": "Update skipped",
104
+ "updating": "Updating Codex...",
105
+ "updateFailed": "Codex update failed",
106
+ "autoUpdating": "Auto-updating Codex...",
107
+ "upToDate": "Codex is up to date (v{version})",
108
+ "notInstalled": "Codex is not installed",
109
+ "cannotCheckVersion": "Cannot check latest version",
110
+ "checkFailed": "Version check failed",
111
+ "providerManager.noConfig": "No existing configuration found",
112
+ "providerManager.backupFailed": "Failed to create backup",
113
+ "providerManager.providerExists": "Provider with ID \"{{id}}\" already exists",
114
+ "providerManager.providerNotFound": "Provider with ID \"{{id}}\" not found",
115
+ "providerManager.noProvidersSpecified": "No providers specified for deletion",
116
+ "providerManager.providersNotFound": "Some providers not found: {{providers}}",
117
+ "providerManager.cannotDeleteAll": "Cannot delete all providers. At least one provider must remain.",
118
+ "providerManager.providerIdRequired": "Provider ID is required",
119
+ "providerManager.providerNameRequired": "Provider name is required",
120
+ "providerManager.baseUrlRequired": "Base URL is required",
121
+ "providerManager.wireApiInvalid": "Wire API must be either \"responses\" or \"chat\"",
122
+ "providerManager.unknownError": "Unknown error",
123
+ "envKeyMigrationComplete": "✔ env_key to temp_env_key migration completed"
124
+ }
@@ -0,0 +1,29 @@
1
+ {
2
+ "cometixAlreadyInstalled": "CCometixLine is already installed",
3
+ "cometixInstallFailed": "Failed to install CCometixLine",
4
+ "cometixInstallSuccess": "CCometixLine installed successfully",
5
+ "cometixMenuDescriptions.customConfig": "Enter TUI configuration mode for CCometixLine",
6
+ "cometixMenuDescriptions.installOrUpdate": "Install or update CCometixLine using npm",
7
+ "cometixMenuDescriptions.printConfig": "Display current CCometixLine configuration",
8
+ "cometixMenuOptions.back": "Back to main menu",
9
+ "cometixMenuOptions.customConfig": "Custom config",
10
+ "cometixMenuOptions.installOrUpdate": "Install/update",
11
+ "cometixMenuOptions.printConfig": "Print config",
12
+ "cometixMenuTitle": "CCometixLine - High-performance Claude Code statusline tool with Git integration and real-time usage tracking",
13
+ "cometixSkipped": "CCometixLine installation skipped",
14
+ "commandNotFound": "ccline command not found. Please install CCometixLine first.",
15
+ "enteringTuiConfig": "Entering CCometixLine TUI configuration mode...",
16
+ "installCometixPrompt": "Install CCometixLine - High-performance Claude Code status bar tool built with Rust, integrating Git info and real-time usage tracking?",
17
+ "installUpdateFailed": "Failed to install/update CCometixLine",
18
+ "installUpdateSuccess": "CCometixLine install/update completed",
19
+ "installingCometix": "Installing CCometixLine...",
20
+ "installingOrUpdating": "Installing/updating CCometixLine...",
21
+ "printConfigFailed": "Failed to print configuration",
22
+ "printingConfig": "Printing CCometixLine configuration...",
23
+ "statusLineAlreadyConfigured": "Claude Code statusLine already configured",
24
+ "statusLineConfigFailed": "Failed to configure statusLine",
25
+ "statusLineConfigured": "Claude Code statusLine configured",
26
+ "statusLineManualConfig": "Please manually add statusLine configuration to Claude Code settings",
27
+ "tuiConfigFailed": "Failed to run TUI configuration",
28
+ "tuiConfigSuccess": "TUI configuration completed successfully"
29
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "multiSelectHint": " (Space to select, a to select all, i to invert, Enter to confirm)",
3
+ "skip": "Skip",
4
+ "emptyToSkip": " (press Enter with empty content to skip)",
5
+ "cancelled": "Operation cancelled",
6
+ "error": "Error",
7
+ "complete": "🎉 Setup complete! Use 'claude' command to start.",
8
+ "none": "None",
9
+ "enterChoice": "Enter your choice and press enter (case-insensitive)",
10
+ "invalidChoice": "Invalid choice. Please enter a valid option.",
11
+ "goodbye": "👋 Thanks for using CCJK! Goodbye!",
12
+ "returnToMenu": "Return to main menu?",
13
+ "back": "Back",
14
+ "operationFailed": "Operation failed",
15
+ "backupCreated": "📁 Configuration backup created: {{path}}",
16
+ "current": "current",
17
+ "claudeCode": "Claude Code",
18
+ "codex": "Codex",
19
+ "yes": "Yes"
20
+ }