@tencent-ai/agent-sdk 0.3.33 → 0.3.36
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 +29 -0
- package/cli/dist/codebuddy.js +8 -8
- package/cli/package.json +1 -1
- package/cli/product.cloudhosted.json +38 -21
- package/cli/product.internal.json +40 -23
- package/cli/product.ioa.json +45 -27
- package/cli/product.json +83 -27
- package/cli/product.selfhosted.json +36 -21
- package/lib/acp/agent.d.ts +1 -0
- package/lib/acp/agent.d.ts.map +1 -1
- package/lib/acp/agent.js +51 -19
- package/lib/acp/agent.js.map +1 -1
- package/lib/acp/converter.d.ts +23 -3
- package/lib/acp/converter.d.ts.map +1 -1
- package/lib/acp/converter.js +99 -8
- package/lib/acp/converter.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/session.d.ts +13 -2
- package/lib/session.d.ts.map +1 -1
- package/lib/session.js +40 -1
- package/lib/session.js.map +1 -1
- package/lib/types.d.ts +61 -1
- package/lib/types.d.ts.map +1 -1
- package/package.json +1 -1
package/cli/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,35 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
5
5
|
我们遵循 [语义化版本](https://semver.org/spec/v2.0.0.html) 规范。
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [2.43.1] - 2026-02-02
|
|
9
|
+
|
|
10
|
+
### 🚀 新功能
|
|
11
|
+
|
|
12
|
+
- **任务管理工具重构**:将任务管理功能拆分为 TaskCreate、TaskGet、TaskUpdate、TaskList、TaskStop 5 个独立工具,提供更细粒度的任务控制能力
|
|
13
|
+
- **Skill 工具增强**:支持直接执行斜杠命令,新增 args 参数用于传递命令参数
|
|
14
|
+
|
|
15
|
+
### 🔧 功能改进
|
|
16
|
+
|
|
17
|
+
- **计划模式增强**:新增 `/plan` 命令用于预览当前计划文件内容,优化计划模式下的权限控制,仅允许编辑计划文件
|
|
18
|
+
- **UI 优化**:改进计划文件编辑时的展示效果,优化进入计划模式的确认框样式
|
|
19
|
+
- **子代理配置**:更新 Explore 和 Plan 子代理的工具列表配置,新增 max_turns 参数支持控制代理执行轮次
|
|
20
|
+
- **Shell 环境快照**:执行命令时自动捕获用户 shell 配置(函数、别名、选项),确保命令在用户熟悉的环境中运行
|
|
21
|
+
- **Shell 环境文件支持**:新增 `CODEBUDDY_ENV_FILE` 环境变量,解决非登录 shell 无法加载 `/etc/profile` 等系统配置的问题
|
|
22
|
+
- **提示词优化**:优化 Agent 提示词模板,移除冒号前缀说明,新增时间预估禁用规则,提升回复简洁性
|
|
23
|
+
- **文件搜索优化**:精简硬编码忽略规则,优先依赖项目 .gitignore 配置,避免误杀用户需要的文件
|
|
24
|
+
- **Grep 工具**:新增 context 参数别名,提升使用便捷性
|
|
25
|
+
- **SDK 版本更新**:同步更新 SDK-JS 至 0.3.36,SDK-Python 至 0.3.34
|
|
26
|
+
|
|
27
|
+
## [2.42.3] - 2026-01-31
|
|
28
|
+
|
|
29
|
+
### 🔧 功能改进
|
|
30
|
+
|
|
31
|
+
- **会话摘要生成**:自动为会话生成 AI 摘要,在 resume 列表中展示更友好的描述
|
|
32
|
+
- **会话主题持久化**:终端标题现在会保存到会话历史,便于后续查看
|
|
33
|
+
- **非交互模式支持**:新增 `--enable-session-tracking` 参数,支持在非交互模式下启用会话追踪功能
|
|
34
|
+
- **会话追踪配置拆分**:将 `--enable-session-tracking` 拆分为 `CODEBUDDY_INCLUDE_SUMMARY_MESSAGE` 和 `CODEBUDDY_INCLUDE_TOPIC_MESSAGE` 两个独立环境变量,支持更细粒度的控制
|
|
35
|
+
- **SDK 版本更新**:同步更新 SDK-JS 至 0.3.34,SDK-Python 至 0.3.32
|
|
36
|
+
|
|
8
37
|
## [2.42.2] - 2026-01-31
|
|
9
38
|
|
|
10
39
|
### 🔧 功能改进
|