@tencent-ai/agent-sdk 0.3.3 → 0.3.5
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/cli/CHANGELOG.md +15 -0
- package/cli/dist/codebuddy.js +2 -2
- package/cli/package.json +1 -1
- package/cli/product.cloudhosted.json +2 -2
- package/cli/product.internal.json +2 -2
- package/cli/product.ioa.json +2 -2
- package/cli/product.json +2 -2
- package/cli/product.selfhosted.json +2 -2
- package/lib/acp/agent.d.ts +154 -0
- package/lib/acp/agent.d.ts.map +1 -0
- package/lib/acp/agent.js +292 -0
- package/lib/acp/agent.js.map +1 -0
- package/lib/acp/index.d.ts +3 -0
- package/lib/acp/index.d.ts.map +1 -1
- package/lib/acp/index.js +6 -1
- package/lib/acp/index.js.map +1 -1
- package/lib/acp/tool-converter.d.ts +14 -4
- package/lib/acp/tool-converter.d.ts.map +1 -1
- package/lib/acp/tool-converter.js +285 -89
- package/lib/acp/tool-converter.js.map +1 -1
- package/lib/index.d.ts +4 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +8 -1
- package/lib/index.js.map +1 -1
- package/lib/session.d.ts +9 -1
- package/lib/session.d.ts.map +1 -1
- package/lib/session.js +20 -7
- package/lib/session.js.map +1 -1
- package/lib/types.d.ts +18 -8
- package/lib/types.d.ts.map +1 -1
- package/lib/types.js.map +1 -1
- package/package.json +1 -1
package/cli/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
5
5
|
我们遵循 [语义化版本](https://semver.org/spec/v2.0.0.html) 规范。
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [2.37.9] - 2026-01-21
|
|
9
|
+
|
|
10
|
+
### 🔧 功能改进
|
|
11
|
+
|
|
12
|
+
- **侧边栏交互优化**:支持拖拽调整宽度,新增会话管理操作按钮
|
|
13
|
+
- **User-Agent 标识**:ACP 进程启动时自动设置包含版本信息的 User-Agent 请求头
|
|
14
|
+
- **配置同步优化**:为产品配置同步添加节流+防抖机制,减少高频调用造成的性能开销
|
|
15
|
+
- **日志增强**:增加流式消息处理和配置缓存过期的调试日志,便于问题排查
|
|
16
|
+
|
|
17
|
+
## [2.37.8] - 2026-01-21
|
|
18
|
+
|
|
19
|
+
### 🔧 功能改进
|
|
20
|
+
|
|
21
|
+
- **Session lastMessageId 处理**:优化会话状态管理,确保 lastMessageId 在异步压缩时正确更新,简化父消息 ID 的关联逻辑
|
|
22
|
+
|
|
8
23
|
## [2.37.7] - 2026-01-21
|
|
9
24
|
|
|
10
25
|
### 🎉 新增功能
|