fix(acp): harden session-page connection and localize backend errors
- Session-page connect never triggers download/install; returns SdkNotInstalled immediately and prompts the user to install from Agent Settings instead - Binary agents now accept any cached version via find_best_cached_binary_for_agent so stale caches still connect - Bound Initialize handshake with a 60s timeout and convert it to AcpError::InitializeTimeout via a sentinel in run_connection - Spawn background task owns ConnectionManager map insertion and removes the entry on exit through an RAII guard that survives panics, preventing leaked stale entries - AcpError gains SdkNotInstalled and InitializeTimeout variants plus a stable code() identifier; AcpEvent::Error carries code so the frontend can render localized messages by key - Frontend preflight now runs for all connect sources; error event handler switches on code to show translated text for initialize_timeout, sdk_not_installed, platform_not_supported, process_exited, spawn_failed and download_failed - Remove ConnectionStatus::Downloading enum variant, all frontend branches, and i18n strings; drop obsolete autoLinkFailedTitle, autoLinkPreflightFailed, preflightCheckFailedDefault and preflightFailedTitle keys across 10 locales - Add backendErrors.* translations in 10 languages - Diagnostic logging: always log agent stderr plus binary path/size/args/env keys and Initialize timing; gate stdin/stdout JSON-RPC tracing behind CODEG_ACP_DEBUG to avoid persisting user content into OS log files Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -851,7 +851,6 @@
|
||||
"connection": {
|
||||
"connected": "已连接",
|
||||
"connecting": "连接中...",
|
||||
"downloading": "下载中...",
|
||||
"prompting": "响应中...",
|
||||
"error": "连接异常",
|
||||
"disconnected": "未连接",
|
||||
@@ -1422,11 +1421,13 @@
|
||||
"unavailable": "{agent} 当前平台不可用。",
|
||||
"sdkMissing": "{agent} SDK 尚未安装"
|
||||
},
|
||||
"backendErrors": {
|
||||
"initializeTimeout": "{agent} 连接握手超时(60 秒未响应),请前往设置页面检查智能体和网络配置。",
|
||||
"processExited": "{agent} 进程意外退出。",
|
||||
"spawnFailed": "启动 {agent} 失败:{message}",
|
||||
"downloadFailed": "{agent} 下载失败:{message}"
|
||||
},
|
||||
"unableReadAgentConfig": "无法读取 Agent 配置:{message}",
|
||||
"autoLinkFailedTitle": "{agent} 自动链接失败",
|
||||
"preflightCheckFailedDefault": "预检查未通过,请检查 Agent 配置。",
|
||||
"preflightFailedTitle": "{agent} 预检查失败",
|
||||
"autoLinkPreflightFailed": "自动链接预检查失败:{message}",
|
||||
"connectFailedTitle": "{agent} 连接失败",
|
||||
"toolFallbackTitle": "工具",
|
||||
"eventErrorTitle": "Agent 错误",
|
||||
|
||||
Reference in New Issue
Block a user