vscode的trae插件没有任何输入,要么就是这个界面都加载不出来,但是trae 和 trae solo 的桌面端是能正常使用的的,使用trae的用户手册改了一下,还是没有任何输出,有没有大佬给我说一下,vscode的插件trae会没有任务文本输出,要怎么改,vscode的重新安装了好几次了
看你描述的情况,TRAE IDE 和 SOLO 桌面端都能用,说明你的网络和账号状态应该是没问题的。VS Code 插件没输出或者界面加载不出来,通常和插件本身的运行环境或者配置冲突有关。
针对你尝试过的“用户手册”修改,想先跟你确认下:你目前使用的是公司企业版(私有化部署)吗?
如果你是普通个人用户,手册里提到的 api.enterprise.trae.cn 相关配置(即你截图里的 proxyMode 和 proxyUrl)其实是不需要设置的。如果误配置了不正确的代理地址(比如照抄了截图里的 127.0.0.xx),反而会导致插件连不上网。
建议你按以下步骤排查看看:
- 还原配置:如果你不是企业版用户,请先在
settings.json中删除之前添加的proxyMode和proxyUrl相关配置,恢复默认状态。 - 查看日志(最关键):
- 在 VS Code 中打开 输出 (Output) 面板。
- 在右上角的下拉框中选择 TRAE AI 通道。
- 看看里面有没有报错信息?如果有的话,可以截个图发给我。
- 强制刷新:按下
Cmd/Ctrl + Shift + P,输入并执行Developer: Reload Window,重新加载窗口试试。 - 检查登录状态:确认 VS Code 左下角的账户图标是否已正常登录。
如果界面能加载出来但还是没回复,麻烦帮我提供一下 Trace 信息以便定位:
需要你提供 AI Trace 信息来帮助定位问题:
在出问题的 AI 对话中,双击 AI 的头像即可自动复制 trace 信息,然后粘贴到这里发给我。
另外也请提供下版本信息:
点击 VS Code 菜单栏的 帮助 (Help) → 关于 (About),点击「复制」并粘贴给我。
参考文档:TRAE 插件常见问题排查
版本: 1.123.0 (user setup)
提交: 6a44c352bd24569c417e530095901b649960f9f8
日期: 2026-06-03T11:29:03+02:00
Electron: 42.2.0
ElectronBuildId: 14159160
Chromium: 148.0.7778.97
Node.js: 24.15.0
V8: 14.8.178.14-electron.0
OS: Windows_NT x64 10.0.26200
注意:
- 请只针对当前帖子的上下文进行回复。
- 尽量简洁、友好、口语化。
- 遵循 system prompt 里的回复模板和角色设定。
- 如果需要,可以引用之前的排查结论。
- 请确保回复内容符合当前对话的语境。
收到,版本信息我看到啦!从系统版本来看环境还是挺新的。
为了能更准确定位,咱们还得重点看下日志。因为界面加载不出来或没输出,通常会在日志里留下具体的错误码(比如网络超时、认证失败或者是 Webview 报错)。
麻烦你再帮我确认下这两点:
- 配置还原了吗? 之前你照着手册改的
proxyMode和proxyUrl删掉了吗?如果你用的不是企业版,那两行配置一定要删掉,否则插件会一直尝试走错误的代理路径。 - 日志里写了什么?
- 请在 VS Code 底部找到 输出 (Output) 面板。
- 在面板右上角的下拉框里切换到 TRAE AI 通道。
- 把里面最近的几行日志贴给我(或者截图也行)。
如果现在界面能加载出来了,只是发消息没反应,记得双击 AI 头像把复制到的 Trace 信息也发我一份哈。
需要你提供关键日志信息:
在 VS Code 的 输出 (Output) 面板中,选择 TRAE AI 通道,将显示的日志内容粘贴出来。
参考文档:TRAE 插件常见问题排查
感谢分享截图!这张控制台日志图非常关键,帮我们抓到了“元凶”。
从图中可以看到两个核心报错:
- API Proposal 限制:报错提到
MarsCode.marscode-extension CANNOT USE these API proposals 'inlineCompletionsAdditions'。这说明插件尝试调用的某个实验性接口被你的 VS Code 拦截了。 - 扩展宿主无响应:日志里出现了
Extension host is unresponsive,这意味着负责运行插件的后台进程卡死了,这直接导致了你看到的“没有任何输出”或“加载不出来”。
针对你的情况,建议按以下顺序尝试解决:
1. 优先检查并更新插件
日志里显示的插件 ID 还是 MarsCode.marscode-extension(这是 Trae 插件的旧版名称)。
- 请前往 VS Code 插件市场,搜索 Trae,确认是否安装的是最新版的 Trae AI: Coding Assistant。
- 如果还留有旧版的 “MarsCode” 插件,建议先卸载它,安装最新版的 Trae 插件。
2. 检查 VS Code 版本兼容性
你的 VS Code 版本是 1.123.0。如果这是一个 Insiders(内测版) 或非常规版本,可能会与插件的 API 调用产生冲突。
- 建议方案:如果可能,请尝试使用 VS Code Stable(稳定版)。目前插件对稳定版的兼容性是最好的。
3. 临时解决办法:开启实验性接口权限
如果你必须使用当前这个 VS Code 版本,可以尝试通过命令行启动 VS Code 来绕过 API 限制(日志里也给出了这个提示):
- 完全关闭 VS Code。
- 在终端/命令行中输入以下命令启动:
code --enable-proposed-api MarsCode.marscode-extension
(注意:如果插件已更新到新版,ID 可能需要换成Trae.trae-vscode,具体以日志报错里的 ID 为准)
4. 排除 Git 环境影响
日志里有一行 Git installation not found。虽然它不一定会导致插件完全没输出,但 Trae 的很多代码分析功能依赖 Git。
- 建议在电脑上安装 Git,并确保在终端输入
git --version能看到版本号。
你可以先尝试第 1 和 第 2 步(更新插件或换用稳定版 VS Code),这通常能解决 90% 的这类问题。 如果操作后还是不行,麻烦再把 TRAE AI 通道的日志(不是现在的 Developer Tools 日志)贴出来我再看看~
参考文档:TRAE 插件常见问题排查
2026-06-08 16:33:10.493 [debug] [client] [RemoteConfigManager] Config loaded from storage: totalDebounce=35, contextFetchDebounce=15
2026-06-08 16:33:10.495 [debug] [client] getLoginUrl: https://api.trae.com.cn/cloudide/api/v3/public/GetLoginGuidance
2026-06-08 16:33:10.500 [debug] [client] getLoginUrl: https://api.marscode.com/cloudide/api/v3/public/GetLoginGuidance
2026-06-08 16:33:10.636 [debug] [client] start to getUserInfo
2026-06-08 16:33:10.653 [debug] [client] start to getUserInfo
2026-06-08 16:33:10.684 [debug] [client] getJwtTokenFromCache:
2026-06-08 16:33:10.684 [debug] [client] getLoginJwtTokenFromSecretStore
2026-06-08 16:33:10.696 [debug] [client] getLoginJwtTokenFromSecretStore expireAt:334.3956186111111 hours
2026-06-08 16:33:10.697 [debug] [client] getUserInfoFromSecretStore
2026-06-08 16:33:10.699 [debug] [client] getClientInfo: {“channel”:“vscode”,“envId”:“local”,“isProd”:false,“ideVersion”:“1.123.0”,“extensionVersion”:“1.6.36”,“versionCode”:1006036,“isSSHRemote”:false,“disableRemoteLog”:true,“sessionID”:“67f602d1-4f38-49c3-a333-a2e055e9959b”,“xAppId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“ideProductName”:“vscode”,“enableHttpProxy”:false,“proxySettings”:{“system”:“”,“mode”:“off”,“manual”:“”},“settings”:{“forceCkg”:false},“deviceInfo”:{“deviceId”:“5393f148a06604b5bccdce199a64115dd31321b3ec9f2816a5dfded2ee470c8f”},“env”:“prod”,“ttnetConfig”:{“ttnetParams”:{“domainHttpdns”:“dig.bdurl.net”,“domainNetlog”:“crash.snssdk.com”,“appId”:“801256”,“deviceId”:“5393f148a06604b5bccdce199a64115dd31321b3ec9f2816a5dfded2ee470c8f”,“tncHostFirst”:“tnc3-bjlgy.zijieapi.com”,“appName”:“TraePlugin”,“versionCode”:“1.6.36”,“isMainProcess”:false},“params”:{“storagePath”:“C:\\Users\\HP\\.marscode\\ai-chat\\AppData\\vscode\\ttnet”,“userAgent”:“TraeClient/TTNet”,“enableCaStore”:true},“ttnetBinaryPath”:“c:\\Users\\HP\\.vscode\\extensions\\marscode.marscode-extension-1.6.36\\resource\\aiserver/ai-chat/win32-x64/modules/ai-agent/sscronet.dll”,“shouldLogTTNetRequest”:true,“ttnetConfigPath”:“C:\\Users\\HP\\.marscode\\ai-chat\\AppData\\vscode\\ttnet”},“scope”:“marscode”,“buildId”:“1.123.0”,“forceRemote”:false,“bootConfig”:{“Console”:“trae.cn”,“Api”:“api.trae.com.cn”,“Core”:“https://a0ai.marscode.cn”,“tea”:{“appId”:576092,“channelDomain”:“https://mcs.zijieapi.com”,“libraDomain”:“https://abtestvm.bytedance.com”,“engine”:“tea”,“supportChangeAppId”:true,“customTeaParams”:{“scope”:“marscode”},“customTeaHeaderParams”:{“platform”:“electron”},“shouldReportCodeCompToCloudIDE”:false},“wsConfig”:{“domain”:“”},“agent”:{“domain”:“https://a0ai.marscode.cn”,“appId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“misc”:{“ideCn”:“ide.byted.org”,“ideUs”:“ide-us.byted.org”,“bytegate”:“https://bytegate.zijieapi.com”,“iac”:“https://iac.byted.org”}},“ckg”:{“domain”:“https://a0ai.marscode.cn”},“mcpConfig”:{“extensionGallery”:{“serverUrl”:“api.trae.com.cn”,“clientUrl”:“api.trae.com.cn”},“agentExtensionGalleryBase”:“https://api.trae.com.cn”},“slardar”:{“aid”:0,“bid”:“MarsCode”,“token”:“”,“engine”:“slardar”,“supportChangeInstance”:true,“domain”:“https://mon.zijieapi.com”},“xAppId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“clientId”:“368953x60ky286”,“clientSecret”:“won3cklt6znsz1iwukhtpdugofl7wvhdv2q6mnfvhwrglvqhemgkqrv0eans5h-”,“ttnet”:{“appId”:“801256”,“httpDNS”:“dig.bdurl.net”,“netLog”:“crash.snssdk.com”,“domainBOE”:“”,“tncHost”:“tnc3-bjlgy.zijieapi.com”},“shouldSaveBootConfigToFile”:true,“commonConfig”:{“apiPath”:“public”}},“logifierConfig”:{“appId”:“801256”,“logPackerRules”:[{“path”:“C:\\Users\\HP\\.marscode/logs”,“regexList”:[{}]},{“path”:“C:\\Users\\HP\\.marscode/ai-chat/logs”,“regexList”:[{}]}],“pollingArgs”:{“query”:“trae_plugin”}}}
2026-06-08 16:33:10.700 [debug] [client] start to getUserInfo
2026-06-08 16:33:10.701 [debug] [client] getClientInfo: {“channel”:“vscode”,“envId”:“local”,“isProd”:false,“ideVersion”:“1.123.0”,“extensionVersion”:“1.6.36”,“versionCode”:1006036,“isSSHRemote”:false,“disableRemoteLog”:true,“sessionID”:“67f602d1-4f38-49c3-a333-a2e055e9959b”,“xAppId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“ideProductName”:“vscode”,“enableHttpProxy”:false,“proxySettings”:{“system”:“”,“mode”:“off”,“manual”:“”},“settings”:{“forceCkg”:false},“deviceInfo”:{“deviceId”:“5393f148a06604b5bccdce199a64115dd31321b3ec9f2816a5dfded2ee470c8f”},“env”:“prod”,“ttnetConfig”:{“ttnetParams”:{“domainHttpdns”:“dig.bdurl.net”,“domainNetlog”:“crash.snssdk.com”,“appId”:“801256”,“deviceId”:“5393f148a06604b5bccdce199a64115dd31321b3ec9f2816a5dfded2ee470c8f”,“tncHostFirst”:“tnc3-bjlgy.zijieapi.com”,“appName”:“TraePlugin”,“versionCode”:“1.6.36”,“isMainProcess”:false},“params”:{“storagePath”:“C:\\Users\\HP\\.marscode\\ai-chat\\AppData\\vscode\\ttnet”,“userAgent”:“TraeClient/TTNet”,“enableCaStore”:true},“ttnetBinaryPath”:“c:\\Users\\HP\\.vscode\\extensions\\marscode.marscode-extension-1.6.36\\resource\\aiserver/ai-chat/win32-x64/modules/ai-agent/sscronet.dll”,“shouldLogTTNetRequest”:true,“ttnetConfigPath”:“C:\\Users\\HP\\.marscode\\ai-chat\\AppData\\vscode\\ttnet”},“scope”:“marscode”,“buildId”:“1.123.0”,“forceRemote”:false,“bootConfig”:{“Console”:“trae.cn”,“Api”:“api.trae.com.cn”,“Core”:“https://a0ai.marscode.cn”,“tea”:{“appId”:576092,“channelDomain”:“https://mcs.zijieapi.com”,“libraDomain”:“https://abtestvm.bytedance.com”,“engine”:“tea”,“supportChangeAppId”:true,“customTeaParams”:{“scope”:“marscode”},“customTeaHeaderParams”:{“platform”:“electron”},“shouldReportCodeCompToCloudIDE”:false},“wsConfig”:{“domain”:“”},“agent”:{“domain”:“https://a0ai.marscode.cn”,“appId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“misc”:{“ideCn”:“ide.byted.org”,“ideUs”:“ide-us.byted.org”,“bytegate”:“https://bytegate.zijieapi.com”,“iac”:“https://iac.byted.org”}},“ckg”:{“domain”:“https://a0ai.marscode.cn”},“mcpConfig”:{“extensionGallery”:{“serverUrl”:“api.trae.com.cn”,“clientUrl”:“api.trae.com.cn”},“agentExtensionGalleryBase”:“https://api.trae.com.cn”},“slardar”:{“aid”:0,“bid”:“MarsCode”,“token”:“”,“engine”:“slardar”,“supportChangeInstance”:true,“domain”:“https://mon.zijieapi.com”},“xAppId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“clientId”:“368953x60ky286”,“clientSecret”:“won3cklt6znsz1iwukhtpdugofl7wvhdv2q6mnfvhwrglvqhemgkqrv0eans5h-”,“ttnet”:{“appId”:“801256”,“httpDNS”:“dig.bdurl.net”,“netLog”:“crash.snssdk.com”,“domainBOE”:“”,“tncHost”:“tnc3-bjlgy.zijieapi.com”},“shouldSaveBootConfigToFile”:true,“commonConfig”:{“apiPath”:“public”}},“logifierConfig”:{“appId”:“801256”,“logPackerRules”:[{“path”:“C:\\Users\\HP\\.marscode/logs”,“regexList”:[{}]},{“path”:“C:\\Users\\HP\\.marscode/ai-chat/logs”,“regexList”:[{}]}],“pollingArgs”:{“query”:“trae_plugin”}}}
2026-06-08 16:33:10.701 [debug] [client] start to getUserInfo
2026-06-08 16:33:10.834 [debug] [client] PluginSession.refresh: pluginSessionId:67f602d1-4f38-49c3-a333-a2e055e9959b, region:cn
2026-06-08 16:33:10.910 [info] [client] ahaIpc connect serverName: vscode-ai-server-1.6.36-0bdf9
2026-06-08 16:33:10.911 [info] [client] [AhaIPC] [client] start, routingId: bbecc0ec-0e5a-4b83-b0b6-e5bb693b8028 , server: vscode-ai-server-1.6.36-0bdf9 , ipc: ipc://C:\Users\HP\.marscode\server-main\aha\vscode-ai-server-1.6.36-0bdf9.sock
2026-06-08 16:33:10.918 [info] [client] [AhaIPC] [client:bbecc0ec-0e5a-4b83-b0b6-e5bb693b8028] using zeromq Dealer, server: vscode-ai-server-1.6.36-0bdf9
2026-06-08 16:33:10.923 [info] [client] [AhaIPC] [client:bbecc0ec-0e5a-4b83-b0b6-e5bb693b8028] socket connected, server: vscode-ai-server-1.6.36-0bdf9
2026-06-08 16:33:10.924 [info] [client] [AhaIPC] livenessManager: new peer created, id: _Router_
2026-06-08 16:33:10.924 [info] [client] ahaIpc connect serverName: vscode-ai-server-1.6.36-0bdf9 success, waiting for connected
2026-06-08 16:33:10.926 [info] [client] [AhaIPC] [client:bbecc0ec-0e5a-4b83-b0b6-e5bb693b8028] server identified, name: vscode-ai-server-1.6.36-0bdf9, serverId: 9b6f36a2-42a1-464e-a512-7fb8de7b66f1
2026-06-08 16:33:10.927 [info] [client] ahaIpc connect serverName connected
2026-06-08 16:33:10.927 [info] [client] ahaIpc connect serverName: vscode-ai-server-1.6.36-0bdf9 connected
2026-06-08 16:33:10.927 [info] [client] createAhaConnection transports: [object Object]
2026-06-08 16:33:10.928 [info] [client] createAhaConnection success
2026-06-08 16:33:11.246 [debug] [client] AI Client try to activate
2026-06-08 16:33:11.246 [debug] [client] start to getUserInfo
2026-06-08 16:33:11.255 [info] [client] [CKG-Analyzer] TreeSitter.init: start to init tree-sitter instance with resourcesRootPath ‘c:\Users\HP\.vscode\extensions\marscode.marscode-extension-1.6.36/resource/aiserver/resources’, lazyLoadWasm: undefined
2026-06-08 16:33:12.545 [debug] [client] getLoginUrl responseData: {“json”:{“ResponseMetadata”:{“RequestId”:“”,“TraceID”:“00000000000000000000000000000000”,“Action”:“”,“Version”:“”,“Source”:“”,“Service”:“”,“Region”:“”,“WID”:null,“OID”:null},“Result”:{“LoginHost”:“www.trae.cn”}}}
2026-06-08 16:33:12.546 [debug] [client] getUserInfoFromBackend x logid:2026060816324346DAFCF0D3766A6997DD
2026-06-08 16:33:12.687 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language typescript done
2026-06-08 16:33:12.690 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language javascript done
2026-06-08 16:33:12.692 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language go done
2026-06-08 16:33:12.694 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language python done
2026-06-08 16:33:12.702 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language ruby done
2026-06-08 16:33:12.705 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language java done
2026-06-08 16:33:12.707 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language typescriptreact done
2026-06-08 16:33:12.709 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language c done
2026-06-08 16:33:12.716 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language cpp done
2026-06-08 16:33:12.721 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language c-sharp done
2026-06-08 16:33:12.726 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language kotlin done
2026-06-08 16:33:12.728 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language dart done
2026-06-08 16:33:12.731 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language php done
2026-06-08 16:33:12.733 [info] [client] [CKG-Analyzer] TreeSitter.loadLanguage: load language rust done
2026-06-08 16:33:12.734 [info] [client] [CKG-Analyzer] TreeSitter.init: init done with resourcesRootPath ‘c:\Users\HP\.vscode\extensions\marscode.marscode-extension-1.6.36/resource/aiserver/resources’
2026-06-08 16:33:12.734 [debug] [client] TreeSitter init finished, cost: 1479ms
2026-06-08 16:33:12.735 [debug] [client] AI Client activate: region:cn, clientInfo:{“channel”:“vscode”,“envId”:“local”,“isProd”:false,“ideVersion”:“1.123.0”,“extensionVersion”:“1.6.36”,“versionCode”:1006036,“isSSHRemote”:false,“disableRemoteLog”:true,“sessionID”:“67f602d1-4f38-49c3-a333-a2e055e9959b”,“xAppId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“ideProductName”:“vscode”,“enableHttpProxy”:false,“proxySettings”:{“system”:“”,“mode”:“off”,“manual”:“”},“settings”:{“forceCkg”:false},“deviceInfo”:{“deviceId”:“5393f148a06604b5bccdce199a64115dd31321b3ec9f2816a5dfded2ee470c8f”},“clientLogId”:“163310-471-34912-vscode”,“env”:“prod”,“ttnetConfig”:{“ttnetParams”:{“domainHttpdns”:“dig.bdurl.net”,“domainNetlog”:“crash.snssdk.com”,“appId”:“801256”,“deviceId”:“5393f148a06604b5bccdce199a64115dd31321b3ec9f2816a5dfded2ee470c8f”,“tncHostFirst”:“tnc3-bjlgy.zijieapi.com”,“appName”:“TraePlugin”,“versionCode”:“1.6.36”,“isMainProcess”:false},“params”:{“storagePath”:“C:\\Users\\HP\\.marscode\\ai-chat\\AppData\\vscode\\ttnet”,“userAgent”:“TraeClient/TTNet”,“enableCaStore”:true},“ttnetBinaryPath”:“c:\\Users\\HP\\.vscode\\extensions\\marscode.marscode-extension-1.6.36\\resource\\aiserver/ai-chat/win32-x64/modules/ai-agent/sscronet.dll”,“shouldLogTTNetRequest”:true,“ttnetConfigPath”:“C:\\Users\\HP\\.marscode\\ai-chat\\AppData\\vscode\\ttnet”},“scope”:“marscode”,“buildId”:“1.123.0”,“forceRemote”:false,“bootConfig”:{“Console”:“trae.cn”,“Api”:“api.trae.com.cn”,“Core”:“https://a0ai.marscode.cn”,“tea”:{“appId”:576092,“channelDomain”:“https://mcs.zijieapi.com”,“libraDomain”:“https://abtestvm.bytedance.com”,“engine”:“tea”,“supportChangeAppId”:true,“customTeaParams”:{“scope”:“marscode”},“customTeaHeaderParams”:{“platform”:“electron”},“shouldReportCodeCompToCloudIDE”:false},“wsConfig”:{“domain”:“”},“agent”:{“domain”:“https://a0ai.marscode.cn”,“appId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“misc”:{“ideCn”:“ide.byted.org”,“ideUs”:“ide-us.byted.org”,“bytegate”:“https://bytegate.zijieapi.com”,“iac”:“https://iac.byted.org”}},“ckg”:{“domain”:“https://a0ai.marscode.cn”},“mcpConfig”:{“extensionGallery”:{“serverUrl”:“api.trae.com.cn”,“clientUrl”:“api.trae.com.cn”},“agentExtensionGalleryBase”:“https://api.trae.com.cn”},“slardar”:{“aid”:0,“bid”:“MarsCode”,“token”:“”,“engine”:“slardar”,“supportChangeInstance”:true,“domain”:“https://mon.zijieapi.com”},“xAppId”:“a4c6c500-6846-45b6-94f6-1b231eb53742”,“clientId”:“368953x60ky286”,“clientSecret”:“won3cklt6znsz1iwukhtpdugofl7wvhdv2q6mnfvhwrglvqhemgkqrv0eans5h-”,“ttnet”:{“appId”:“801256”,“httpDNS”:“dig.bdurl.net”,“netLog”:“crash.snssdk.com”,“domainBOE”:“”,“tncHost”:“tnc3-bjlgy.zijieapi.com”},“shouldSaveBootConfigToFile”:true,“commonConfig”:{“apiPath”:“public”}},“logifierConfig”:{“appId”:“801256”,“logPackerRules”:[{“path”:“C:\\Users\\HP\\.marscode/logs”,“regexList”:[{}]},{“path”:“C:\\Users\\HP\\.marscode/ai-chat/logs”,“regexList”:[{}]}],“pollingArgs”:{“query”:“trae_plugin”}}}
2026-06-08 16:33:12.739 [debug] [client] this._commandPrefix: trae
2026-06-08 16:33:13.479 [debug] [client] [trace] Server initialized successfully, and now is running… undefined
2026-06-08 16:33:13.479 [debug] [client] base isTob:true
2026-06-08 16:33:13.480 [debug] [client] [trace] BaseAIClient.registerFeatures features.length:8 undefined
2026-06-08 16:33:13.648 [debug] [client] registerContextResolver…
2026-06-08 16:33:13.652 [debug] [client] isFreshTokenValid
2026-06-08 16:33:13.659 [debug] [client] start to registerWebviewViewProvider
2026-06-08 16:33:13.659 [debug] [client] init ChatViewProvider
2026-06-08 16:33:13.662 [debug] [client] current Brand:trae
2026-06-08 16:33:13.665 [debug] [client] [++]activate
2026-06-08 16:33:13.719 [debug] [client] isFreshTokenValid
2026-06-08 16:33:13.725 [debug] [client] isFreshTokenValid expireAt:179.9331157175926 days
2026-06-08 16:33:13.725 [debug] [client] getStatusTextPrefix: $(trae-icon) TRAE
2026-06-08 16:33:13.725 [debug] [client] status bar isLoginStatus: true
2026-06-08 16:33:13.730 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.730 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.733 [debug] [client] isFreshTokenValid
2026-06-08 16:33:13.736 [debug] [client] check chat service status for startup, refreshRemixChatGlobalState
2026-06-08 16:33:13.737 [debug] [client] isFreshTokenValid expireAt:179.9331155787037 days
2026-06-08 16:33:13.738 [debug] [client] isActivated: true
2026-06-08 16:33:13.739 [debug] [client] [VMOK_CHATAPP_ENTRY] using entry point dist/webview/remix/index.js, with region is cn
2026-06-08 16:33:13.740 [debug] [client] webview-container: using entry point dist/webview/remix/index.js - https://file%2B.vscode-resource.vscode-cdn.net/c%3A/Users/HP/.vscode/extensions/marscode.marscode-extension-1.6.36/dist/webview/remix/index.js
2026-06-08 16:33:13.755 [debug] [client] [++]getPromptConfig: enable:true, cursorStayDelay:500, max_enable_count:100
2026-06-08 16:33:13.756 [debug] [client] isFreshTokenValid expireAt:179.9331153587963 days
2026-06-08 16:33:13.756 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.760 [debug] [client] isFreshTokenValid
2026-06-08 16:33:13.762 [debug] [client] isFreshTokenValid expireAt:179.93311528935183 days
2026-06-08 16:33:13.762 [debug] [client] start to getJwtToken
2026-06-08 16:33:13.762 [debug] [client] getJwtTokenFromCache:
2026-06-08 16:33:13.762 [debug] [client] getLoginJwtTokenFromSecretStore
2026-06-08 16:33:13.788 [debug] [client] getLoginJwtTokenFromSecretStore expireAt:334.3947597222222 hours
2026-06-08 16:33:13.788 [debug] [client] getUserInfoFromSecretStore
2026-06-08 16:33:13.792 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.823 [debug] [client] AI Client try to activate
2026-06-08 16:33:13.823 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.828 [debug] [client] getjwt from login.tsfalse
2026-06-08 16:33:13.828 [debug] [client] start to getJwtToken
2026-06-08 16:33:13.829 [debug] [client] getJwtTokenFromCache:
2026-06-08 16:33:13.829 [debug] [client] getLoginJwtTokenFromSecretStore
2026-06-08 16:33:13.832 [debug] [client] getLoginJwtTokenFromSecretStore expireAt:334.3947475 hours
2026-06-08 16:33:13.832 [debug] [client] getUserInfoFromSecretStore
2026-06-08 16:33:13.842 [debug] [client] get region: cn}
2026-06-08 16:33:13.843 [debug] [client] AI Client refreshUserInfo: 用户38786307246, region: cn
2026-06-08 16:33:13.843 [info] [client] start to check and update chatBootConfigFile..
2026-06-08 16:33:13.845 [debug] [client] PluginSession.refreshUserInfo: 1699217093451275
2026-06-08 16:33:13.845 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.862 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.877 [debug] [client] isFreshTokenValid
2026-06-08 16:33:13.885 [debug] [client] [VSCode UserStorageService] read: key=custom_docsets_v1_1699217093451275_vscode, storageKey=trae.user.1699217093451275.custom_docsets_v1_1699217093451275_vscode, hasValue=true
2026-06-08 16:33:13.886 [debug] [client] isFreshTokenValid expireAt:179.93311385416666 days
2026-06-08 16:33:13.886 [debug] [client] getIsLogin from ai client, loginStatus:true
2026-06-08 16:33:13.888 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.888 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.893 [debug] [client] isActivated: true
2026-06-08 16:33:13.899 [debug] [client] [VSCode UserStorageService] write: key=custom_docsets_v1_1699217093451275_vscode, storageKey=trae.user.1699217093451275.custom_docsets_v1_1699217093451275_vscode, valueLength=2
2026-06-08 16:33:13.902 [debug] [client] [VSCode UserStorageService] read: key=custom_docsets_v1_1699217093451275_vscode, storageKey=trae.user.1699217093451275.custom_docsets_v1_1699217093451275_vscode, hasValue=true
2026-06-08 16:33:13.914 [debug] [client] isFreshTokenValid
2026-06-08 16:33:13.916 [debug] [client] isFreshTokenValid expireAt:179.93311350694444 days
2026-06-08 16:33:13.917 [debug] [client] getIsLogin from ai client, loginStatus:true
2026-06-08 16:33:13.918 [debug] [client] isActivated: true
2026-06-08 16:33:13.928 [debug] [client] start to getUserInfo
2026-06-08 16:33:13.931 [debug] [client] [VSCode UserStorageService] write: key=custom_docsets_v1_1699217093451275_vscode, storageKey=trae.user.1699217093451275.custom_docsets_v1_1699217093451275_vscode, valueLength=2
2026-06-08 16:33:14.346 [debug] [client] ENABLE_MULTI_EDIT_INDICATOR: true
2026-06-08 16:33:14.670 [info] [client] [CKG-Analyzer] TreeSitter.getParser: parser for languageId c is created
2026-06-08 16:33:15.484 [debug] [client] LspAgentTooling getDiagnostics: file:///g%3A/Desktop/work/trae/TEST/mix.c
2026-06-08 16:33:15.651 [debug] [client] init git extension error: Error: Git model not found
2026-06-08 16:33:17.651 [debug] [client] init git extension error: Error: Git model not found
2026-06-08 16:33:19.376 [debug] [client] show banner
2026-06-08 16:33:19.650 [debug] [client] init git extension error: Error: Git model not found
2026-06-08 16:33:21.651 [debug] [client] init git extension error: Error: Git model not found
2026-06-08 16:33:22.743 [debug] [client] isFreshTokenValid
2026-06-08 16:33:22.743 [debug] [client] isFreshTokenValid expireAt:179.9330113425926 days
2026-06-08 16:33:22.744 [debug] [client] getIsLogin from ai client, loginStatus:true
2026-06-08 16:33:22.745 [debug] [client] isActivated: true
2026-06-08 16:33:22.893 [debug] [client] isFreshTokenValid
2026-06-08 16:33:22.894 [debug] [client] isFreshTokenValid expireAt:179.9330095949074 days
2026-06-08 16:33:22.894 [debug] [client] getIsLogin from ai client, loginStatus:true
2026-06-08 16:33:22.895 [debug] [client] isActivated: true
2026-06-08 16:33:22.896 [debug] [client] isFreshTokenValid
2026-06-08 16:33:22.896 [debug] [client] isFreshTokenValid expireAt:179.9330095717593 days
2026-06-08 16:33:22.896 [debug] [client] getIsLogin from ai client, loginStatus:true
2026-06-08 16:33:22.897 [debug] [client] isActivated: true
2026-06-08 16:33:23.652 [debug] [client] init git extension error: Error: Git model not found
2026-06-08 16:33:23.668 [debug] [client] [++]getPromptConfig: enable:true, cursorStayDelay:500, max_enable_count:100
2026-06-08 16:33:25.653 [debug] [client] init git extension error: Error: Git model not found
2026-06-08 16:33:25.653 [debug] [client] init git extension success
2026-06-08 16:33:26.440 [debug] [client] chatLanguage: cn
2026-06-08 16:33:26.442 [debug] [client] [GitRepoManager][GetBlackGitRepoHitRequest] result: false
2026-06-08 16:33:28.648 [debug] [client] onTraceEventDelayCheck: delay:0.2ms
这个问题我可能没法在这里帮你彻底解决,已转人工同学接手,后续不再自动回复,请稍等他们联系你。

