@tencent-ai/agent-sdk 0.3.60 → 0.3.62
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 +28 -0
- package/cli/dist/codebuddy.js +65 -69
- 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 +20 -2
- package/cli/product.json +21 -3
- package/cli/product.selfhosted.json +2 -2
- package/package.json +1 -1
package/cli/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,34 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
5
5
|
我们遵循 [语义化版本](https://semver.org/spec/v2.0.0.html) 规范。
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [2.51.2] - 2026-02-26
|
|
9
|
+
|
|
10
|
+
### 🔧 功能改进
|
|
11
|
+
|
|
12
|
+
- **新增模型支持**:添加 Gemini 3.0 Pro 和 Gemini 3.0 Flash 模型配置,扩展可用模型选择范围
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [2.51.1] - 2026-02-25
|
|
16
|
+
|
|
17
|
+
### 🔧 功能改进
|
|
18
|
+
|
|
19
|
+
- **stdin 读取调试日志**:在标准输入读取流程中添加日志记录,便于排查管道输入相关问题
|
|
20
|
+
- **Ctrl+N/P 快捷键映射**:支持使用 Ctrl+N/Ctrl+P 替代方向键 ↓/↑,在输入框、选择菜单、确认面板等所有场景中均可使用
|
|
21
|
+
- **Agent Teams 设置显示**:修复设置面板中 Agent Teams 默认状态显示为关闭的问题,现在正确显示为默认开启
|
|
22
|
+
- **Loading 状态 Token 展示优化**:修复主 agent 等待 subagent 时 token 显示为 0 的问题,现在能正确展示实时流式 token 变化;subagent 进度行新增实时流式 token 展示,同时保留累计 tool uses 和 tokens 信息
|
|
23
|
+
- **MCP 连接超时保护**:为 MCP 服务器连接等待添加超时机制,防止在 headless 模式下因服务器无响应而无限挂起
|
|
24
|
+
- **会话级授权同步**:在子代理执行过程中选择"本次会话不再询问"时,授权现在会同步到主会话和所有子代理,确保整个会话范围内生效
|
|
25
|
+
- **Team 成员流式 Token 显示**:Team 成员进度条支持实时流式 Token 数量展示,与子代理进度条保持一致的显示风格
|
|
26
|
+
- **Team 通知机制重构**:重构后台任务完成通知,改用 Team 邮箱延迟去重机制,避免重复通知干扰对话流;修复队列消息处理丢失发送者身份的问题;已完成的 teammate 收到关闭请求时自动回复;子代理发现的延迟加载工具同步到父 session;优化 Team 提示词
|
|
27
|
+
- **新增模型支持**:添加 GPT-5.3-Codex 模型配置
|
|
28
|
+
|
|
29
|
+
### 🐛 问题修复
|
|
30
|
+
|
|
31
|
+
- **自定义命令/Skill 覆盖内置命令**:修复自定义斜杠命令和 Skill 无法覆盖同名内置命令的问题,现在按项目级 > 用户级 > 内置的优先级正确覆盖,菜单中也不再显示被覆盖的内置命令
|
|
32
|
+
- **启动界面渲染优化**:修复欢迎 Banner 重复渲染以及信任对话框与 Banner 内容重叠的显示问题
|
|
33
|
+
- **后台任务查询**:修复后台 Agent 启动后通过 TaskOutput 查询时报 "not found" 的问题,现在同时支持两种 ID 格式查找
|
|
34
|
+
|
|
35
|
+
|
|
8
36
|
## [2.51.0] - 2026-02-24
|
|
9
37
|
|
|
10
38
|
### 🎉 新功能
|