@tencent-ai/codebuddy-code 2.119.4 → 2.120.0
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/CHANGELOG.md +20 -0
- package/dist/codebuddy-headless.js +40 -30
- package/dist/codebuddy.js +60 -50
- package/dist/web-ui/assets/{index-GcU4pZms.js → index-BfmXmm8w.js} +274 -274
- package/dist/web-ui/docs/cn/cli/brokered-shell-macos.md +778 -0
- package/dist/web-ui/docs/cn/cli/env-vars.md +10 -5
- package/dist/web-ui/docs/cn/cli/plugins-reference.md +114 -13
- package/dist/web-ui/docs/cn/cli/prewarm.md +18 -5
- package/dist/web-ui/docs/cn/cli/release-notes/README.md +11 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.117.0.md +35 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.117.1.md +18 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.117.2.md +28 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.118.0.md +29 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.118.1.md +18 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.118.2.md +13 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.119.0.md +38 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.119.1.md +15 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.119.2.md +23 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.119.3.md +15 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.119.4.md +13 -0
- package/dist/web-ui/docs/cn/cli/settings.md +2 -0
- package/dist/web-ui/docs/cn/cli/sub-agents.md +38 -0
- package/dist/web-ui/docs/en/cli/brokered-shell-macos.md +778 -0
- package/dist/web-ui/docs/en/cli/env-vars.md +10 -5
- package/dist/web-ui/docs/en/cli/plugins-reference.md +106 -13
- package/dist/web-ui/docs/en/cli/prewarm.md +18 -5
- package/dist/web-ui/docs/en/cli/release-notes/README.md +11 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.117.0.md +35 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.117.1.md +18 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.117.2.md +28 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.118.0.md +29 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.118.1.md +18 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.118.2.md +13 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.119.0.md +38 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.119.1.md +15 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.119.2.md +23 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.119.3.md +15 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.119.4.md +13 -0
- package/dist/web-ui/docs/en/cli/settings.md +2 -0
- package/dist/web-ui/docs/en/cli/sub-agents.md +38 -0
- package/dist/web-ui/docs/search-index-en.json +1 -1
- package/dist/web-ui/docs/search-index-zh.json +1 -1
- package/dist/web-ui/docs/sidebar-en.json +1 -1
- package/dist/web-ui/docs/sidebar-zh.json +1 -1
- package/dist/web-ui/index.html +1 -1
- package/dist/web-ui/sw.js +1 -1
- package/package.json +4 -4
- package/product.cloudhosted.json +2 -2
- package/product.internal.json +2 -2
- package/product.ioa.json +2 -2
- package/product.json +2 -2
- package/product.selfhosted.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.120.0] - 2026-07-13
|
|
11
|
+
|
|
12
|
+
### 🎉 新功能
|
|
13
|
+
|
|
14
|
+
- **子 Agent 模型灵活配置 (#66763)**:支持按内置子 Agent(Explore / general-purpose / Plan 等)粒度独立指定模型。新增 `subagents` 配置项(`subagents.agents.<子Agent名>.model`,全局 + 项目双 scope,结构对齐 Copilot CLI 便于后续扩展),可在 `/agents` 面板查看每个子 Agent 的「实际生效模型 + 来源」并编辑;环境变量 `CODEBUDDY_CODE_SUBAGENT_MODEL` 仍为最高优先级、对所有子 Agent 一刀切。
|
|
15
|
+
- **场景变体模型配置 (#66763)**:新增 `variantModels` 配置项,可在 `/model` 面板查看并修改 `lite` / `reasoning` 两个通用场景槽位当前映射的模型(全局 + 项目双 scope);对应环境变量 `CODEBUDDY_SMALL_FAST_MODEL` / `CODEBUDDY_BIG_SLOW_MODEL` 仍按变体独立最高优先级。未配置时行为与现状完全一致(向后兼容)。
|
|
16
|
+
|
|
17
|
+
### 🔧 功能改进
|
|
18
|
+
|
|
19
|
+
- **Web UI 代码优化**:提取共享工具函数,消除重复代码,改善可维护性。
|
|
20
|
+
- **Web UI 组件拆分**:将 InputBox 和 TerminalPaneView 的子逻辑提取为独立 hook(命令菜单、图片附件、文件附件、文件建议、PTY 连接),提升可维护性。
|
|
21
|
+
- **chat-store 去重**:提取 `appendToSubagentTimeline` 公共函数,消除 addChunk 和 addThinkingChunk 中的重复代码。
|
|
22
|
+
- **use-acp 依赖优化**:移除 useEffect 对 Zustand action 的冗余依赖,避免闭包过期导致的 sessionId 取值问题。
|
|
23
|
+
|
|
24
|
+
### 🐛 Bug 修复
|
|
25
|
+
|
|
26
|
+
- **沙箱 Bash 环境变量**:修复 Bash 沙箱执行时腾讯文档等 MCP 配置无法透传,导致相关工具不可用的问题。
|
|
27
|
+
- **沙箱降级**:修复 `sandbox-cli` 启动失败并降级到本地执行时,内部 deferred Promise 额外触发 `unhandledRejection` 诊断的问题。
|
|
28
|
+
- **Skill 加载优先级**:修复项目内 Skill 与全局 Skill 同名时,项目 Skill 未按就近优先级生效的问题。
|
|
29
|
+
|
|
10
30
|
## [2.119.4] - 2026-07-12
|
|
11
31
|
|
|
12
32
|
### 🔧 功能改进
|