feat(vscode-ide-companion): 0.2.4 版本ACP 协议检测和实现

- 新增 session/list 方法支持
- 改进 session/load 方法兼容性
- 优化代理环境变量设置
- 调整 CLI 安装流程
- 移除未使用的随机加载消息功能
This commit is contained in:
yiliang114
2025-11-26 19:23:25 +08:00
parent f78b1eff93
commit dc340daf8b
13 changed files with 205 additions and 34 deletions

View File

@@ -4,8 +4,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
import type { QwenAgentManager } from '../agents/qwenAgentManager.js';
import type { ConversationStore } from '../storage/conversationStore.js';
import type { QwenAgentManager } from '../../agents/qwenAgentManager.js';
import type { ConversationStore } from '../../storage/conversationStore.js';
/**
* Base message handler interface

View File

@@ -42,8 +42,6 @@ export class SettingsMessageHandler extends BaseMessageHandler {
try {
// Open settings in a side panel
await vscode.commands.executeCommand('workbench.action.openSettings', {
// TODO:
// openToSide: true,
query: 'qwenCode',
});
} catch (error) {