@vibeapi/api-helper 0.0.20 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +25 -25
- package/README.md +35 -1
- package/dist/__tests__/claude-code-manager.test.js +1 -1
- package/dist/__tests__/claude-code-manager.test.js.map +1 -1
- package/dist/__tests__/tool-adapters.test.d.ts +1 -0
- package/dist/__tests__/tool-adapters.test.js +1 -0
- package/dist/__tests__/tool-adapters.test.js.map +1 -0
- package/dist/commands/auth.js +1 -1
- package/dist/commands/auth.js.map +1 -1
- package/dist/commands/config.js +1 -1
- package/dist/commands/config.js.map +1 -1
- package/dist/lib/brand.d.ts +13 -0
- package/dist/lib/brand.js +1 -0
- package/dist/lib/brand.js.map +1 -0
- package/dist/lib/claude-code-manager.js +1 -1
- package/dist/lib/claude-code-manager.js.map +1 -1
- package/dist/lib/config.d.ts +13 -1
- package/dist/lib/config.js +1 -1
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/model-registry.d.ts +6 -0
- package/dist/lib/model-registry.js +1 -1
- package/dist/lib/model-registry.js.map +1 -1
- package/dist/lib/tool-manager.d.ts +10 -3
- package/dist/lib/tool-manager.js +1 -1
- package/dist/lib/tool-manager.js.map +1 -1
- package/dist/lib/tools/atomcode.d.ts +2 -0
- package/dist/lib/tools/atomcode.js +1 -0
- package/dist/lib/tools/atomcode.js.map +1 -0
- package/dist/lib/tools/backup.d.ts +12 -0
- package/dist/lib/tools/backup.js +1 -0
- package/dist/lib/tools/backup.js.map +1 -0
- package/dist/lib/tools/claude-code.d.ts +3 -0
- package/dist/lib/tools/claude-code.js +1 -0
- package/dist/lib/tools/claude-code.js.map +1 -0
- package/dist/lib/tools/codex.d.ts +2 -0
- package/dist/lib/tools/codex.js +1 -0
- package/dist/lib/tools/codex.js.map +1 -0
- package/dist/lib/tools/hermes.d.ts +2 -0
- package/dist/lib/tools/hermes.js +1 -0
- package/dist/lib/tools/hermes.js.map +1 -0
- package/dist/lib/tools/openclaw.d.ts +2 -0
- package/dist/lib/tools/openclaw.js +1 -0
- package/dist/lib/tools/openclaw.js.map +1 -0
- package/dist/lib/tools/opencode.d.ts +3 -0
- package/dist/lib/tools/opencode.js +1 -0
- package/dist/lib/tools/opencode.js.map +1 -0
- package/dist/lib/tools/registry.d.ts +4 -0
- package/dist/lib/tools/registry.js +1 -0
- package/dist/lib/tools/registry.js.map +1 -0
- package/dist/lib/tools/types.d.ts +69 -0
- package/dist/lib/tools/types.js +1 -0
- package/dist/lib/tools/types.js.map +1 -0
- package/dist/lib/wizard.js +1 -1
- package/dist/lib/wizard.js.map +1 -1
- package/dist/locales/en_US.json +282 -278
- package/dist/locales/zh_CN.json +281 -277
- package/dist/models.json +1 -0
- package/dist/settings-template.json +2 -1
- package/models.json +1 -0
- package/package.json +2 -1
- package/settings-template.json +2 -1
package/dist/locales/en_US.json
CHANGED
|
@@ -1,278 +1,282 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cli": {
|
|
3
|
-
"title": "Coding Tool Helper (chelper)",
|
|
4
|
-
"usage": "Usage: chelper <command> [options]",
|
|
5
|
-
"commands": "Commands:",
|
|
6
|
-
"examples": "Examples:",
|
|
7
|
-
"error_unknown": "Unknown command: {{command}}",
|
|
8
|
-
"error_general": "Error:"
|
|
9
|
-
},
|
|
10
|
-
"commands": {
|
|
11
|
-
"help": "Show help information",
|
|
12
|
-
"version": "Show version information",
|
|
13
|
-
"init": "Run interactive initialization wizard",
|
|
14
|
-
"lang": "Language management",
|
|
15
|
-
"auth": "API key management",
|
|
16
|
-
"doctor": "Health check",
|
|
17
|
-
"enter": "Configuration management",
|
|
18
|
-
"tool": "Tool management",
|
|
19
|
-
"status": "Show current configuration status"
|
|
20
|
-
},
|
|
21
|
-
"lang": {
|
|
22
|
-
"current": "Current language",
|
|
23
|
-
"show_usage": "chelper lang show - Show current language",
|
|
24
|
-
"set_usage": "chelper lang set <zh_CN|en_US> - Set language",
|
|
25
|
-
"changed": "Language changed from {{from}} to {{to}}",
|
|
26
|
-
"invalid": "Unsupported language: {{lang}}",
|
|
27
|
-
"available": "Available languages"
|
|
28
|
-
},
|
|
29
|
-
"auth": {
|
|
30
|
-
"set_usage": "chelper auth <token> - Set API key",
|
|
31
|
-
"token_prompt": "Enter API key",
|
|
32
|
-
"token_required": "API key cannot be empty",
|
|
33
|
-
"saved": "API key saved",
|
|
34
|
-
"revoke_confirm": "Are you sure you want to revoke the API key?",
|
|
35
|
-
"revoked": "API key revoked",
|
|
36
|
-
"not_revoked": "Revoke operation cancelled",
|
|
37
|
-
"get_api_key_hint": "To obtain API Key, please visit: {{url}}"
|
|
38
|
-
},
|
|
39
|
-
"wizard": {
|
|
40
|
-
"banner_subtitle": "Manage Your Claude Code and Other Coding Tools",
|
|
41
|
-
"welcome": "Welcome to Coding Tool Helper!",
|
|
42
|
-
"privacy_note": "We value your privacy. All configurations are stored locally only.",
|
|
43
|
-
"select_language": "Select interface language",
|
|
44
|
-
"input_api_key": "Enter API key",
|
|
45
|
-
"api_key_input_hint": "Please enter your API Key (input will be hidden)",
|
|
46
|
-
"input_your_api_key": "Please input your API key here, Enter to confirm:",
|
|
47
|
-
"update_api_key": "Update API key",
|
|
48
|
-
"api_key_required": "API key cannot be empty",
|
|
49
|
-
"select_tool": "Select coding tool to configure",
|
|
50
|
-
"tool_not_installed": "{{tool}} is not installed",
|
|
51
|
-
"install_tool_confirm": "Install now?",
|
|
52
|
-
"installing_tool": "Installing tool...",
|
|
53
|
-
"tool_installed": "Tool installed successfully",
|
|
54
|
-
"install_failed": "Installation failed",
|
|
55
|
-
"install_skipped": "Installation skipped. You can install manually later.",
|
|
56
|
-
"menu_title": "Management Menu",
|
|
57
|
-
"select_action": "Select action",
|
|
58
|
-
"retry_input": "Retry input",
|
|
59
|
-
"action_load_config": "Apply Configuration - (Apply your API configuration to {{tool}})",
|
|
60
|
-
"action_unload_config": "Unload Configuration - (Remove API configuration from {{tool}})",
|
|
61
|
-
"action_view_config": "Current Configuration",
|
|
62
|
-
"action_back": "Back",
|
|
63
|
-
"action_exit": "Exit",
|
|
64
|
-
"goodbye": "Goodbye!",
|
|
65
|
-
"loading_config": "Loading configuration...",
|
|
66
|
-
"config_loaded": "Configuration loaded successfully, you can now use {{tool}} for coding.",
|
|
67
|
-
"config_failed": "Failed to load configuration",
|
|
68
|
-
"confirm_unload_config": "Are you sure you want to unload configuration from {{tool}}?",
|
|
69
|
-
"unloading_config": "Unloading configuration...",
|
|
70
|
-
"config_unloaded": "Configuration unloaded successfully",
|
|
71
|
-
"config_unload_failed": "Failed to unload configuration",
|
|
72
|
-
"tool_not_supported": "This operation is not supported for this tool",
|
|
73
|
-
"missing_config": "Missing required configuration (API key)",
|
|
74
|
-
"current_config": "Current Configuration",
|
|
75
|
-
"config_language": "Interface Language",
|
|
76
|
-
"config_api_key": "API Key",
|
|
77
|
-
"config_models": "Model Configuration",
|
|
78
|
-
"config_title": "Configuration",
|
|
79
|
-
"not_set": "Not set",
|
|
80
|
-
"press_enter": "Press Enter to continue",
|
|
81
|
-
"main_menu_title": "Main Menu",
|
|
82
|
-
"current_config_status": "Current Configuration Status:",
|
|
83
|
-
"api_key_set": "Set",
|
|
84
|
-
"api_key_get_hint": "To obtain API Key, please visit: {{url}}",
|
|
85
|
-
"menu_config_language": "Language",
|
|
86
|
-
"menu_change_api_key": "Change API Key",
|
|
87
|
-
"menu_load_to_tool": "Load config to tool",
|
|
88
|
-
"current_model": "Current model",
|
|
89
|
-
"settings": "Settings",
|
|
90
|
-
"menu_config_api_key": "API Key Configuration",
|
|
91
|
-
"menu_config_models": "Model Configuration (Configure Haiku/Sonnet/Opus/Reasoning models)",
|
|
92
|
-
"menu_config_tool": "Coding Tool Configuration (Apply API to Claude Code/OpenCode)",
|
|
93
|
-
"menu_exit": "Exit",
|
|
94
|
-
"select_operation": "Select operation:",
|
|
95
|
-
"retry_input": "Retry input",
|
|
96
|
-
"goodbye_message": "Goodbye! Type 'claude' in terminal or install Claude plugin in VSCode to start coding with Claude Code!",
|
|
97
|
-
"nav_return": "Return",
|
|
98
|
-
"nav_exit": "Exit",
|
|
99
|
-
"current_active": "Current",
|
|
100
|
-
"operation_hint": "Operation Hint",
|
|
101
|
-
"hint_navigate": "↑↓ Navigate",
|
|
102
|
-
"hint_confirm": "Enter Confirm",
|
|
103
|
-
"detected_config_title": "Claude Code Current Configuration",
|
|
104
|
-
"chelper_config_title": "Chelper Configuration",
|
|
105
|
-
"claude_code_config_title": "Claude Code Current Global Configuration",
|
|
106
|
-
"config_synced": "Configuration synced",
|
|
107
|
-
"config_out_of_sync": "Configuration out of sync, refresh recommended",
|
|
108
|
-
"config_not_loaded": "{{tool}} configuration not loaded",
|
|
109
|
-
"action_refresh_config": "Refresh Configuration - (Update {{tool}} configuration)",
|
|
110
|
-
"global_config_warning": "⚠️ Warning: You are modifying {{tool}} global configuration, changes will affect all workspaces",
|
|
111
|
-
"global_label": "Global",
|
|
112
|
-
"set_success": "Set successfully",
|
|
113
|
-
"start_tool": "Start {{tool}} - (Recommended to open a new terminal in your workspace and run {{shell}})",
|
|
114
|
-
"starting_tool": "Starting...",
|
|
115
|
-
"validating_api_key": "Validating API Key...",
|
|
116
|
-
"api_key_valid": "API Key is valid",
|
|
117
|
-
"api_key_success_hint": "Entering main menu...",
|
|
118
|
-
"api_key_invalid": "API Key is invalid or expired",
|
|
119
|
-
"api_key_network_error": "Network error, please check your connection",
|
|
120
|
-
"please_config_api_key_first": "Please configure a valid API Key first",
|
|
121
|
-
"please_reconfig_api_key": "Please reconfigure your API Key",
|
|
122
|
-
"select_model_config": "Select model",
|
|
123
|
-
"recommended": "Recommended",
|
|
124
|
-
"other_models": "Other Models",
|
|
125
|
-
"custom_model_input": "Custom model input",
|
|
126
|
-
"input_custom_model": "Enter custom model name",
|
|
127
|
-
"input_single_model": "Enter the model name to use (will be applied to all models)",
|
|
128
|
-
"model_haiku": "Haiku Model (Fast)",
|
|
129
|
-
"model_sonnet": "Sonnet Model (Balanced)",
|
|
130
|
-
"model_opus": "Opus Model (Powerful)",
|
|
131
|
-
"model_reasoning": "Reasoning Model (Reasoning)",
|
|
132
|
-
"input_model_name": "Enter model name",
|
|
133
|
-
"models_saved": "Model configuration saved",
|
|
134
|
-
"load_config_now": "Would you like to load the configuration to a coding tool now?",
|
|
135
|
-
"load_config_yes": "Yes, load now",
|
|
136
|
-
"load_config_later": "Load manually later",
|
|
137
|
-
"what_next": "What would you like to do next?",
|
|
138
|
-
"continue_config": "Continue configuring other options",
|
|
139
|
-
"exit_and_start": "Exit and start using",
|
|
140
|
-
"menu_experimental_features": "Experimental Features",
|
|
141
|
-
"experimental_features_title": "Experimental Features",
|
|
142
|
-
"select_experimental_feature": "Select experimental feature to configure",
|
|
143
|
-
"enabled": "Enabled",
|
|
144
|
-
"disabled": "Disabled",
|
|
145
|
-
"enable": "Enable",
|
|
146
|
-
"disable": "Disable",
|
|
147
|
-
"agent_teams_current_status": "Agent Teams Current Status",
|
|
148
|
-
"agent_teams_enabled": "Agent Teams enabled",
|
|
149
|
-
"agent_teams_disabled": "Agent Teams disabled",
|
|
150
|
-
"updating_settings": "Updating settings...",
|
|
151
|
-
"update_failed": "Update failed",
|
|
152
|
-
"custom_model_mode": "Select custom model mode",
|
|
153
|
-
"custom_model_single": "Single model for all roles",
|
|
154
|
-
"custom_model_per_role": "Configure each role separately"
|
|
155
|
-
},
|
|
156
|
-
"doctor": {
|
|
157
|
-
"checking": "Running health check...",
|
|
158
|
-
"check_path": "Check PATH environment variable",
|
|
159
|
-
"check_api_key_network": "Check API Key and network connection",
|
|
160
|
-
"check_api_key": "Check API key",
|
|
161
|
-
"check_tools": "Check installed tools",
|
|
162
|
-
"all_good": "All checks passed!",
|
|
163
|
-
"tool_installed": "Installed",
|
|
164
|
-
"tool_not_found": "Tool not found: {{tool}}",
|
|
165
|
-
"network_error": "Network connection failed",
|
|
166
|
-
"api_key_invalid": "API Key is invalid or expired",
|
|
167
|
-
"api_key_network_ok": "API Key and network validation passed",
|
|
168
|
-
"api_key_missing": "API key not configured",
|
|
169
|
-
"claude_code_installed": "Claude Code is installed",
|
|
170
|
-
"claude_code_not_installed": "Claude Code is not installed. Please download from https://claude.ai/download",
|
|
171
|
-
"suggestions": "Suggestions",
|
|
172
|
-
"check_git_env": "Check Git environment",
|
|
173
|
-
"git_not_installed": "Git is not installed. Please download from https://git-scm.com/downloads",
|
|
174
|
-
"results_title": "Health Check Results:",
|
|
175
|
-
"no_tools_installed": "No tools installed",
|
|
176
|
-
"suggestion_auth": "Run \"chelper auth\" to configure API Key",
|
|
177
|
-
"suggestion_interactive": "Run \"chelper\" to enter interactive setup"
|
|
178
|
-
},
|
|
179
|
-
"preset": {
|
|
180
|
-
"claude_mix": "Claude Mix",
|
|
181
|
-
"minimax_m25": "MiniMax-M2.5",
|
|
182
|
-
"minimax_m27": "MiniMax-M2.7",
|
|
183
|
-
"gpt54": "GPT-5.4",
|
|
184
|
-
"kimi_k25": "Kimi-K2.5",
|
|
185
|
-
"qwen36_plus": "Qwen3.6-Plus",
|
|
186
|
-
"glm5": "GLM-5"
|
|
187
|
-
},
|
|
188
|
-
"status": {
|
|
189
|
-
"title": "Current Status",
|
|
190
|
-
"api_key": "API Key",
|
|
191
|
-
"base_url": "Base URL",
|
|
192
|
-
"language": "Language",
|
|
193
|
-
"models": "Models",
|
|
194
|
-
"tools": "Tools",
|
|
195
|
-
"config_loaded": "Config loaded",
|
|
196
|
-
"config_not_loaded": "Config not loaded"
|
|
197
|
-
},
|
|
198
|
-
"messages": {
|
|
199
|
-
"initializing": "Initializing...",
|
|
200
|
-
"args": "Arguments:",
|
|
201
|
-
"first_run": "First run detected, starting initialization wizard...",
|
|
202
|
-
"config_saved": "Configuration saved"
|
|
203
|
-
},
|
|
204
|
-
"config": {
|
|
205
|
-
"profile_list_title": "Profiles",
|
|
206
|
-
"preset_list_title": "Custom presets",
|
|
207
|
-
"backup_list_title": "Config backups",
|
|
208
|
-
"profile_active_label": "active",
|
|
209
|
-
"profile_invalid_name": "Invalid profile name: {{name}}",
|
|
210
|
-
"preset_invalid_name": "Invalid preset name: {{name}}",
|
|
211
|
-
"profile_exists": "Profile already exists: {{name}}",
|
|
212
|
-
"profile_created": "Profile created: {{name}}",
|
|
213
|
-
"profile_activated": "Active profile: {{name}}",
|
|
214
|
-
"profile_deleted": "Profile deleted: {{name}}",
|
|
215
|
-
"profile_cannot_delete_last": "Cannot delete the last remaining profile",
|
|
216
|
-
"preset_saved": "Custom preset saved: {{name}}",
|
|
217
|
-
"preset_applied": "Custom preset applied: {{name}}",
|
|
218
|
-
"preset_deleted": "Custom preset deleted: {{name}}",
|
|
219
|
-
"preset_not_found": "Custom preset not found: {{name}}",
|
|
220
|
-
"backup_created": "Backup created: {{path}}",
|
|
221
|
-
"backup_restored": "Backup restored: {{name}}",
|
|
222
|
-
"backup_restore_missing_name": "Specify a backup name to restore",
|
|
223
|
-
"backup_companion_missing": "Backup is missing its encrypted secret companion ({{path}}). Restore aborted to avoid api_key drift.",
|
|
224
|
-
"profile_delete_confirm": "Delete profile {{name}}? This removes its api_key from the keystore.",
|
|
225
|
-
"profile_delete_dry_run": "Would delete profile {{name}}",
|
|
226
|
-
"profile_delete_aborted": "Profile deletion cancelled",
|
|
227
|
-
"backup_restore_confirm": "Restore backup {{name}}? Current config and api_key will be overwritten.",
|
|
228
|
-
"backup_restore_dry_run": "Would restore backup {{name}}",
|
|
229
|
-
"backup_restore_aborted": "Backup restore cancelled",
|
|
230
|
-
"unknown_command": "Unknown command: {{command}}",
|
|
231
|
-
"usage_hint": "Usage: chelper config [profile|preset|backup|<tool-name>] [...]",
|
|
232
|
-
"tool_config_loaded": "{{tool}} configuration loaded",
|
|
233
|
-
"unknown_action": "Unknown action: {{action}}",
|
|
234
|
-
"unknown_tool": "Unknown tool: {{tool}}",
|
|
235
|
-
"empty_list": "no entries",
|
|
236
|
-
"requires_argument": "This command requires an argument in non-interactive mode"
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
"
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
"
|
|
277
|
-
|
|
278
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"cli": {
|
|
3
|
+
"title": "Coding Tool Helper (chelper)",
|
|
4
|
+
"usage": "Usage: chelper <command> [options]",
|
|
5
|
+
"commands": "Commands:",
|
|
6
|
+
"examples": "Examples:",
|
|
7
|
+
"error_unknown": "Unknown command: {{command}}",
|
|
8
|
+
"error_general": "Error:"
|
|
9
|
+
},
|
|
10
|
+
"commands": {
|
|
11
|
+
"help": "Show help information",
|
|
12
|
+
"version": "Show version information",
|
|
13
|
+
"init": "Run interactive initialization wizard",
|
|
14
|
+
"lang": "Language management",
|
|
15
|
+
"auth": "API key management",
|
|
16
|
+
"doctor": "Health check",
|
|
17
|
+
"enter": "Configuration management",
|
|
18
|
+
"tool": "Tool management",
|
|
19
|
+
"status": "Show current configuration status"
|
|
20
|
+
},
|
|
21
|
+
"lang": {
|
|
22
|
+
"current": "Current language",
|
|
23
|
+
"show_usage": "chelper lang show - Show current language",
|
|
24
|
+
"set_usage": "chelper lang set <zh_CN|en_US> - Set language",
|
|
25
|
+
"changed": "Language changed from {{from}} to {{to}}",
|
|
26
|
+
"invalid": "Unsupported language: {{lang}}",
|
|
27
|
+
"available": "Available languages"
|
|
28
|
+
},
|
|
29
|
+
"auth": {
|
|
30
|
+
"set_usage": "chelper auth <token> - Set API key",
|
|
31
|
+
"token_prompt": "Enter API key",
|
|
32
|
+
"token_required": "API key cannot be empty",
|
|
33
|
+
"saved": "API key saved",
|
|
34
|
+
"revoke_confirm": "Are you sure you want to revoke the API key?",
|
|
35
|
+
"revoked": "API key revoked",
|
|
36
|
+
"not_revoked": "Revoke operation cancelled",
|
|
37
|
+
"get_api_key_hint": "To obtain API Key, please visit: {{url}}"
|
|
38
|
+
},
|
|
39
|
+
"wizard": {
|
|
40
|
+
"banner_subtitle": "Manage Your Claude Code and Other Coding Tools",
|
|
41
|
+
"welcome": "Welcome to Coding Tool Helper!",
|
|
42
|
+
"privacy_note": "We value your privacy. All configurations are stored locally only.",
|
|
43
|
+
"select_language": "Select interface language",
|
|
44
|
+
"input_api_key": "Enter API key",
|
|
45
|
+
"api_key_input_hint": "Please enter your API Key (input will be hidden)",
|
|
46
|
+
"input_your_api_key": "Please input your API key here, Enter to confirm:",
|
|
47
|
+
"update_api_key": "Update API key",
|
|
48
|
+
"api_key_required": "API key cannot be empty",
|
|
49
|
+
"select_tool": "Select coding tool to configure",
|
|
50
|
+
"tool_not_installed": "{{tool}} is not installed",
|
|
51
|
+
"install_tool_confirm": "Install now?",
|
|
52
|
+
"installing_tool": "Installing tool...",
|
|
53
|
+
"tool_installed": "Tool installed successfully",
|
|
54
|
+
"install_failed": "Installation failed",
|
|
55
|
+
"install_skipped": "Installation skipped. You can install manually later.",
|
|
56
|
+
"menu_title": "Management Menu",
|
|
57
|
+
"select_action": "Select action",
|
|
58
|
+
"retry_input": "Retry input",
|
|
59
|
+
"action_load_config": "Apply Configuration - (Apply your API configuration to {{tool}})",
|
|
60
|
+
"action_unload_config": "Unload Configuration - (Remove API configuration from {{tool}})",
|
|
61
|
+
"action_view_config": "Current Configuration",
|
|
62
|
+
"action_back": "Back",
|
|
63
|
+
"action_exit": "Exit",
|
|
64
|
+
"goodbye": "Goodbye!",
|
|
65
|
+
"loading_config": "Loading configuration...",
|
|
66
|
+
"config_loaded": "Configuration loaded successfully, you can now use {{tool}} for coding.",
|
|
67
|
+
"config_failed": "Failed to load configuration",
|
|
68
|
+
"confirm_unload_config": "Are you sure you want to unload configuration from {{tool}}?",
|
|
69
|
+
"unloading_config": "Unloading configuration...",
|
|
70
|
+
"config_unloaded": "Configuration unloaded successfully",
|
|
71
|
+
"config_unload_failed": "Failed to unload configuration",
|
|
72
|
+
"tool_not_supported": "This operation is not supported for this tool",
|
|
73
|
+
"missing_config": "Missing required configuration (API key)",
|
|
74
|
+
"current_config": "Current Configuration",
|
|
75
|
+
"config_language": "Interface Language",
|
|
76
|
+
"config_api_key": "API Key",
|
|
77
|
+
"config_models": "Model Configuration",
|
|
78
|
+
"config_title": "Configuration",
|
|
79
|
+
"not_set": "Not set",
|
|
80
|
+
"press_enter": "Press Enter to continue",
|
|
81
|
+
"main_menu_title": "Main Menu",
|
|
82
|
+
"current_config_status": "Current Configuration Status:",
|
|
83
|
+
"api_key_set": "Set",
|
|
84
|
+
"api_key_get_hint": "To obtain API Key, please visit: {{url}}",
|
|
85
|
+
"menu_config_language": "Language",
|
|
86
|
+
"menu_change_api_key": "Change API Key",
|
|
87
|
+
"menu_load_to_tool": "Load config to tool",
|
|
88
|
+
"current_model": "Current model",
|
|
89
|
+
"settings": "Settings",
|
|
90
|
+
"menu_config_api_key": "API Key Configuration",
|
|
91
|
+
"menu_config_models": "Model Configuration (Configure Haiku/Sonnet/Opus/Reasoning models)",
|
|
92
|
+
"menu_config_tool": "Coding Tool Configuration (Apply API to Claude Code/OpenCode)",
|
|
93
|
+
"menu_exit": "Exit",
|
|
94
|
+
"select_operation": "Select operation:",
|
|
95
|
+
"retry_input": "Retry input",
|
|
96
|
+
"goodbye_message": "Goodbye! Type 'claude' in terminal or install Claude plugin in VSCode to start coding with Claude Code!",
|
|
97
|
+
"nav_return": "Return",
|
|
98
|
+
"nav_exit": "Exit",
|
|
99
|
+
"current_active": "Current",
|
|
100
|
+
"operation_hint": "Operation Hint",
|
|
101
|
+
"hint_navigate": "↑↓ Navigate",
|
|
102
|
+
"hint_confirm": "Enter Confirm",
|
|
103
|
+
"detected_config_title": "Claude Code Current Configuration",
|
|
104
|
+
"chelper_config_title": "Chelper Configuration",
|
|
105
|
+
"claude_code_config_title": "Claude Code Current Global Configuration",
|
|
106
|
+
"config_synced": "Configuration synced",
|
|
107
|
+
"config_out_of_sync": "Configuration out of sync, refresh recommended",
|
|
108
|
+
"config_not_loaded": "{{tool}} configuration not loaded",
|
|
109
|
+
"action_refresh_config": "Refresh Configuration - (Update {{tool}} configuration)",
|
|
110
|
+
"global_config_warning": "⚠️ Warning: You are modifying {{tool}} global configuration, changes will affect all workspaces",
|
|
111
|
+
"global_label": "Global",
|
|
112
|
+
"set_success": "Set successfully",
|
|
113
|
+
"start_tool": "Start {{tool}} - (Recommended to open a new terminal in your workspace and run {{shell}})",
|
|
114
|
+
"starting_tool": "Starting...",
|
|
115
|
+
"validating_api_key": "Validating API Key...",
|
|
116
|
+
"api_key_valid": "API Key is valid",
|
|
117
|
+
"api_key_success_hint": "Entering main menu...",
|
|
118
|
+
"api_key_invalid": "API Key is invalid or expired",
|
|
119
|
+
"api_key_network_error": "Network error, please check your connection",
|
|
120
|
+
"please_config_api_key_first": "Please configure a valid API Key first",
|
|
121
|
+
"please_reconfig_api_key": "Please reconfigure your API Key",
|
|
122
|
+
"select_model_config": "Select model",
|
|
123
|
+
"recommended": "Recommended",
|
|
124
|
+
"other_models": "Other Models",
|
|
125
|
+
"custom_model_input": "Custom model input",
|
|
126
|
+
"input_custom_model": "Enter custom model name",
|
|
127
|
+
"input_single_model": "Enter the model name to use (will be applied to all models)",
|
|
128
|
+
"model_haiku": "Haiku Model (Fast)",
|
|
129
|
+
"model_sonnet": "Sonnet Model (Balanced)",
|
|
130
|
+
"model_opus": "Opus Model (Powerful)",
|
|
131
|
+
"model_reasoning": "Reasoning Model (Reasoning)",
|
|
132
|
+
"input_model_name": "Enter model name",
|
|
133
|
+
"models_saved": "Model configuration saved",
|
|
134
|
+
"load_config_now": "Would you like to load the configuration to a coding tool now?",
|
|
135
|
+
"load_config_yes": "Yes, load now",
|
|
136
|
+
"load_config_later": "Load manually later",
|
|
137
|
+
"what_next": "What would you like to do next?",
|
|
138
|
+
"continue_config": "Continue configuring other options",
|
|
139
|
+
"exit_and_start": "Exit and start using",
|
|
140
|
+
"menu_experimental_features": "Experimental Features",
|
|
141
|
+
"experimental_features_title": "Experimental Features",
|
|
142
|
+
"select_experimental_feature": "Select experimental feature to configure",
|
|
143
|
+
"enabled": "Enabled",
|
|
144
|
+
"disabled": "Disabled",
|
|
145
|
+
"enable": "Enable",
|
|
146
|
+
"disable": "Disable",
|
|
147
|
+
"agent_teams_current_status": "Agent Teams Current Status",
|
|
148
|
+
"agent_teams_enabled": "Agent Teams enabled",
|
|
149
|
+
"agent_teams_disabled": "Agent Teams disabled",
|
|
150
|
+
"updating_settings": "Updating settings...",
|
|
151
|
+
"update_failed": "Update failed",
|
|
152
|
+
"custom_model_mode": "Select custom model mode",
|
|
153
|
+
"custom_model_single": "Single model for all roles",
|
|
154
|
+
"custom_model_per_role": "Configure each role separately"
|
|
155
|
+
},
|
|
156
|
+
"doctor": {
|
|
157
|
+
"checking": "Running health check...",
|
|
158
|
+
"check_path": "Check PATH environment variable",
|
|
159
|
+
"check_api_key_network": "Check API Key and network connection",
|
|
160
|
+
"check_api_key": "Check API key",
|
|
161
|
+
"check_tools": "Check installed tools",
|
|
162
|
+
"all_good": "All checks passed!",
|
|
163
|
+
"tool_installed": "Installed",
|
|
164
|
+
"tool_not_found": "Tool not found: {{tool}}",
|
|
165
|
+
"network_error": "Network connection failed",
|
|
166
|
+
"api_key_invalid": "API Key is invalid or expired",
|
|
167
|
+
"api_key_network_ok": "API Key and network validation passed",
|
|
168
|
+
"api_key_missing": "API key not configured",
|
|
169
|
+
"claude_code_installed": "Claude Code is installed",
|
|
170
|
+
"claude_code_not_installed": "Claude Code is not installed. Please download from https://claude.ai/download",
|
|
171
|
+
"suggestions": "Suggestions",
|
|
172
|
+
"check_git_env": "Check Git environment",
|
|
173
|
+
"git_not_installed": "Git is not installed. Please download from https://git-scm.com/downloads",
|
|
174
|
+
"results_title": "Health Check Results:",
|
|
175
|
+
"no_tools_installed": "No tools installed",
|
|
176
|
+
"suggestion_auth": "Run \"chelper auth\" to configure API Key",
|
|
177
|
+
"suggestion_interactive": "Run \"chelper\" to enter interactive setup"
|
|
178
|
+
},
|
|
179
|
+
"preset": {
|
|
180
|
+
"claude_mix": "Claude Mix",
|
|
181
|
+
"minimax_m25": "MiniMax-M2.5",
|
|
182
|
+
"minimax_m27": "MiniMax-M2.7",
|
|
183
|
+
"gpt54": "GPT-5.4",
|
|
184
|
+
"kimi_k25": "Kimi-K2.5",
|
|
185
|
+
"qwen36_plus": "Qwen3.6-Plus",
|
|
186
|
+
"glm5": "GLM-5"
|
|
187
|
+
},
|
|
188
|
+
"status": {
|
|
189
|
+
"title": "Current Status",
|
|
190
|
+
"api_key": "API Key",
|
|
191
|
+
"base_url": "Base URL",
|
|
192
|
+
"language": "Language",
|
|
193
|
+
"models": "Models",
|
|
194
|
+
"tools": "Tools",
|
|
195
|
+
"config_loaded": "Config loaded",
|
|
196
|
+
"config_not_loaded": "Config not loaded"
|
|
197
|
+
},
|
|
198
|
+
"messages": {
|
|
199
|
+
"initializing": "Initializing...",
|
|
200
|
+
"args": "Arguments:",
|
|
201
|
+
"first_run": "First run detected, starting initialization wizard...",
|
|
202
|
+
"config_saved": "Configuration saved"
|
|
203
|
+
},
|
|
204
|
+
"config": {
|
|
205
|
+
"profile_list_title": "Profiles",
|
|
206
|
+
"preset_list_title": "Custom presets",
|
|
207
|
+
"backup_list_title": "Config backups",
|
|
208
|
+
"profile_active_label": "active",
|
|
209
|
+
"profile_invalid_name": "Invalid profile name: {{name}}",
|
|
210
|
+
"preset_invalid_name": "Invalid preset name: {{name}}",
|
|
211
|
+
"profile_exists": "Profile already exists: {{name}}",
|
|
212
|
+
"profile_created": "Profile created: {{name}}",
|
|
213
|
+
"profile_activated": "Active profile: {{name}}",
|
|
214
|
+
"profile_deleted": "Profile deleted: {{name}}",
|
|
215
|
+
"profile_cannot_delete_last": "Cannot delete the last remaining profile",
|
|
216
|
+
"preset_saved": "Custom preset saved: {{name}}",
|
|
217
|
+
"preset_applied": "Custom preset applied: {{name}}",
|
|
218
|
+
"preset_deleted": "Custom preset deleted: {{name}}",
|
|
219
|
+
"preset_not_found": "Custom preset not found: {{name}}",
|
|
220
|
+
"backup_created": "Backup created: {{path}}",
|
|
221
|
+
"backup_restored": "Backup restored: {{name}}",
|
|
222
|
+
"backup_restore_missing_name": "Specify a backup name to restore",
|
|
223
|
+
"backup_companion_missing": "Backup is missing its encrypted secret companion ({{path}}). Restore aborted to avoid api_key drift.",
|
|
224
|
+
"profile_delete_confirm": "Delete profile {{name}}? This removes its api_key from the keystore.",
|
|
225
|
+
"profile_delete_dry_run": "Would delete profile {{name}}",
|
|
226
|
+
"profile_delete_aborted": "Profile deletion cancelled",
|
|
227
|
+
"backup_restore_confirm": "Restore backup {{name}}? Current config and api_key will be overwritten.",
|
|
228
|
+
"backup_restore_dry_run": "Would restore backup {{name}}",
|
|
229
|
+
"backup_restore_aborted": "Backup restore cancelled",
|
|
230
|
+
"unknown_command": "Unknown command: {{command}}",
|
|
231
|
+
"usage_hint": "Usage: chelper config [profile|preset|backup|tool-model|<tool-name>] [...]",
|
|
232
|
+
"tool_config_loaded": "{{tool}} configuration loaded",
|
|
233
|
+
"unknown_action": "Unknown action: {{action}}",
|
|
234
|
+
"unknown_tool": "Unknown tool: {{tool}}",
|
|
235
|
+
"empty_list": "no entries",
|
|
236
|
+
"requires_argument": "This command requires an argument in non-interactive mode",
|
|
237
|
+
"tool_model_list_title": "Per-tool model overrides",
|
|
238
|
+
"tool_model_set": "Set {{slot}} model for {{tool}} to {{model}}",
|
|
239
|
+
"tool_model_cleared": "Cleared model override for {{tool}}",
|
|
240
|
+
"tool_model_usage": "Usage: chelper config tool-model set <tool> [slot] <model>"
|
|
241
|
+
},
|
|
242
|
+
"logs": {
|
|
243
|
+
"directory": "Logs directory: {{dir}}",
|
|
244
|
+
"files_title": "Log files",
|
|
245
|
+
"no_files": "No log files yet"
|
|
246
|
+
},
|
|
247
|
+
"completion": {
|
|
248
|
+
"header": "# chelper shell completion",
|
|
249
|
+
"instructions_bash": "Save this output to ~/.chelper-completion.bash and add 'source ~/.chelper-completion.bash' to your shell rc.",
|
|
250
|
+
"instructions_zsh": "Save this output to ~/.chelper-completion.zsh and add 'source ~/.chelper-completion.zsh' to your shell rc.",
|
|
251
|
+
"instructions_fish": "Save this output to ~/.config/fish/completions/chelper.fish",
|
|
252
|
+
"unsupported_shell": "Unsupported shell: {{shell}} (supported: bash, zsh, fish)"
|
|
253
|
+
},
|
|
254
|
+
"bench": {
|
|
255
|
+
"running": "Running benchmark requests...",
|
|
256
|
+
"result_title": "Benchmark result",
|
|
257
|
+
"samples": "samples",
|
|
258
|
+
"median": "median",
|
|
259
|
+
"average": "average",
|
|
260
|
+
"min": "min",
|
|
261
|
+
"max": "max",
|
|
262
|
+
"errors": "errors",
|
|
263
|
+
"missing_api_key": "Configure an API key first via 'chelper auth'"
|
|
264
|
+
},
|
|
265
|
+
"update": {
|
|
266
|
+
"checking": "Checking for updates...",
|
|
267
|
+
"current": "Current version: {{version}}",
|
|
268
|
+
"latest": "Latest version: {{version}}",
|
|
269
|
+
"up_to_date": "You are on the latest version",
|
|
270
|
+
"available": "A new version is available",
|
|
271
|
+
"fetch_failed": "Failed to fetch latest version: {{error}}",
|
|
272
|
+
"command_hint": "Run: pnpm add -g @vibeapi/api-helper@latest"
|
|
273
|
+
},
|
|
274
|
+
"runtime": {
|
|
275
|
+
"dry_run_label": "[dry-run]",
|
|
276
|
+
"non_interactive_required_token": "An API token is required in non-interactive mode",
|
|
277
|
+
"non_interactive_aborted": "Aborted - missing required input"
|
|
278
|
+
},
|
|
279
|
+
"secret_store": {
|
|
280
|
+
"host_changed": "Stored API key cannot be decrypted on this host. The keystore was likely created under a different user/machine. Re-authenticate via 'chelper auth' to refresh."
|
|
281
|
+
}
|
|
282
|
+
}
|