[codex] 修复 Coding Agents 的 Codex 启动和代理隔离 (#1123)
* feat: add coding agent install status * chore: add latest claude opus model preset * feat: add coding agent config editing * Add scoped coding agent launch proxy * Add Codex proxy plan * fix coding agents codex launch proxy * fix codex catalog context test --------- Co-authored-by: Codex <codex@openai.com>
This commit is contained in:
@@ -138,6 +138,7 @@ export default {
|
||||
groupMonitoringShort: 'Mon',
|
||||
groupTools: 'Tools',
|
||||
groupToolsShort: "Tools",
|
||||
codingAgents: "Coding Agents",
|
||||
versionPreview: "Version Preview",
|
||||
settings: 'Settings',
|
||||
connected: 'Connected',
|
||||
@@ -1065,6 +1066,82 @@ export default {
|
||||
stopSuccess: "Preview stopped",
|
||||
},
|
||||
|
||||
codingAgents: {
|
||||
title: "Coding Agents",
|
||||
notice: "Unified setup checklist for coding CLIs that Hermes can delegate to through terminal or provider flows.",
|
||||
claudeDescription: "Anthropic CLI for one-shot print mode and interactive coding sessions.",
|
||||
codexDescription: "OpenAI CLI and Hermes openai-codex provider flow for repository tasks.",
|
||||
copyCommand: "Copy",
|
||||
commandCopied: "Command copied",
|
||||
commandCopyFailed: "Copy failed",
|
||||
refresh: "Refresh",
|
||||
checking: "Checking",
|
||||
installStatus: "Install status",
|
||||
installed: "Installed",
|
||||
notInstalled: "Not installed",
|
||||
installNow: "Install",
|
||||
installing: "Installing",
|
||||
installSuccess: "Installed",
|
||||
installFailed: "Install failed",
|
||||
deleteNow: "Delete",
|
||||
deleting: "Deleting",
|
||||
deleteSuccess: "Deleted",
|
||||
deleteFailed: "Delete failed",
|
||||
configFiles: "Config files",
|
||||
profileScope: "Profile",
|
||||
providerScope: "Provider",
|
||||
providerPlaceholder: "e.g. custom:glm",
|
||||
modelScope: "Model",
|
||||
modelPlaceholder: "Select model",
|
||||
launchModeScope: "Launch mode",
|
||||
launchModeGlobal: "Global config",
|
||||
launchModeScoped: "Provider and model",
|
||||
protocolScope: "Protocol",
|
||||
protocolOpenAiChat: "OpenAI Chat Completions (/v1/chat/completions)",
|
||||
protocolOpenAiResponses: "OpenAI Responses (/v1/responses)",
|
||||
protocolAnthropicMessages: "Anthropic Messages (/v1/messages)",
|
||||
reloadConfig: "Reload config",
|
||||
configFileNotCreated: "Not created",
|
||||
configLoadFailed: "Failed to read config file",
|
||||
loadFailed: "Failed to inspect coding agents",
|
||||
launch: "Launch",
|
||||
launchTitle: "Launch Coding Agent",
|
||||
nativeTerminal: "Native Terminal",
|
||||
builtInTerminal: "Built-in Terminal",
|
||||
launchPrepared: "Launch config prepared",
|
||||
launchPrepareFailed: "Failed to prepare launch config",
|
||||
nativeLaunchStarted: "Native terminal opened",
|
||||
nativeLaunchFailed: "Failed to open native terminal",
|
||||
terminalTitle: "Coding Agent Terminal",
|
||||
loadProvidersFailed: "Failed to load providers for the current profile",
|
||||
selectProviderModel: "Select a provider and model",
|
||||
launchConfigDir: "Launch config directory",
|
||||
launchCommand: "Launch command",
|
||||
table: {
|
||||
tool: "Tool",
|
||||
kind: "Step",
|
||||
command: "Command",
|
||||
note: "Note",
|
||||
action: "Action",
|
||||
},
|
||||
kinds: {
|
||||
install: "Install",
|
||||
auth: "Auth",
|
||||
health: "Health",
|
||||
run: "Run",
|
||||
},
|
||||
notes: {
|
||||
claudeInstall: "Installs the Claude Code CLI globally.",
|
||||
codexInstall: "Installs the Codex CLI globally.",
|
||||
claudeAuth: "Checks Claude Code login state; run claude once if login is missing.",
|
||||
codexAuth: "Adds Hermes-managed OpenAI Codex OAuth credentials.",
|
||||
claudeHealth: "Checks updater and local CLI health.",
|
||||
codexHealth: "Confirms the Codex CLI is available on PATH.",
|
||||
claudeRun: "Print mode is the cleanest path for API-driven one-shot tasks.",
|
||||
codexRun: "Codex one-shot tasks must run inside a git repository.",
|
||||
},
|
||||
},
|
||||
|
||||
// Platform channel settings
|
||||
platform: {
|
||||
requireMention: "Require {'@'}Mention",
|
||||
|
||||
Reference in New Issue
Block a user