@tencent-ai/agent-sdk 0.3.34 → 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 +19 -0
- package/cli/dist/codebuddy.js +5 -5
- package/cli/package.json +1 -1
- package/cli/product.cloudhosted.json +28 -21
- package/cli/product.internal.json +30 -23
- package/cli/product.ioa.json +32 -27
- package/cli/product.json +66 -27
- package/cli/product.selfhosted.json +26 -21
- package/lib/acp/agent.d.ts.map +1 -1
- package/lib/acp/agent.js +39 -18
- 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/session.d.ts +5 -0
- package/lib/session.d.ts.map +1 -1
- package/lib/session.js +22 -0
- package/lib/session.js.map +1 -1
- package/lib/types.d.ts +5 -0
- package/lib/types.d.ts.map +1 -1
- package/package.json +1 -1
package/cli/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ 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
|
+
|
|
8
27
|
## [2.42.3] - 2026-01-31
|
|
9
28
|
|
|
10
29
|
### 🔧 功能改进
|