@tencent-ai/codebuddy-code 2.76.0-next.949c0a4.20260403 → 2.77.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 +27 -0
- package/dist/codebuddy-headless.js +88 -88
- package/dist/codebuddy.js +95 -95
- package/dist/web-ui/assets/{index-BC_Bh2yt.js → index-C25QEkQn.js} +107 -107
- package/dist/web-ui/docs/cn/cli/cli-reference.md +1 -0
- package/dist/web-ui/docs/cn/cli/env-vars.md +2 -0
- package/dist/web-ui/docs/cn/cli/http-api.md +117 -2
- package/dist/web-ui/docs/cn/cli/plugin-marketplaces.md +338 -61
- package/dist/web-ui/docs/cn/cli/plugins-reference.md +484 -420
- package/dist/web-ui/docs/cn/cli/plugins.md +333 -458
- package/dist/web-ui/docs/cn/cli/release-notes/README.md +5 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.72.0.md +26 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.73.0.md +21 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.74.0.md +15 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.75.0.md +6 -0
- package/dist/web-ui/docs/cn/cli/release-notes/v2.76.0.md +9 -0
- package/dist/web-ui/docs/cn/cli/slash-commands.md +3 -0
- package/dist/web-ui/docs/en/cli/cli-reference.md +1 -0
- package/dist/web-ui/docs/en/cli/release-notes/README.md +5 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.72.0.md +26 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.73.0.md +21 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.74.0.md +15 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.75.0.md +6 -0
- package/dist/web-ui/docs/en/cli/release-notes/v2.76.0.md +9 -0
- package/dist/web-ui/docs/en/cli/slash-commands.md +3 -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/package.json +2 -3
- package/product.cloudhosted.json +2 -2
- package/product.internal.json +2 -2
- package/product.ioa.json +2 -2
- package/product.json +3 -2
- package/product.selfhosted.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.77.0] - 2026-04-03
|
|
11
|
+
|
|
12
|
+
### ✨ 新功能
|
|
13
|
+
|
|
14
|
+
- **插件系统增强**:全面升级插件系统,支持 npm/Git 子目录安装、MCP Bundle 加载(.mcpb/.dxt/.zip)、Output Style 插件扩展、插件 settings.agent 默认 Agent、插件 bin/ PATH 注入、用户配置选项交互式收集、DFS 闭包依赖解析
|
|
15
|
+
- **市场名称保护**:四层防御机制防止第三方冒充官方市场
|
|
16
|
+
- **企业策略服务**:通过 managed-settings 控制插件启用/禁用
|
|
17
|
+
- **`--plugin-dir` 参数**:支持从本地目录加载插件用于开发测试
|
|
18
|
+
- **`/reload-plugins` 命令**:无需重启即可重新加载所有插件组件
|
|
19
|
+
- **`/plugin-validate` 命令**:四层校验插件目录结构和 manifest 有效性
|
|
20
|
+
|
|
21
|
+
### 🔧 功能改进
|
|
22
|
+
|
|
23
|
+
- **Venus 端点兼容适配器**:支持 Venus OpenAI 兼容代理端点的 Prompt 缓存注入和请求字段清理,模型适配器与端点适配器可叠加使用
|
|
24
|
+
- **SDK MCP 工具过滤器**:修复 SDK MCP 服务器缺失工具过滤器的问题,确保权限和 deny 规则正确应用于 SDK 注册的自定义工具
|
|
25
|
+
- **设置面板组件 props 兼容修复**:修复 settings-panel 和 memory-saving-menu 组件因额外 props 传递导致的类型警告
|
|
26
|
+
|
|
27
|
+
### 🐛 问题修复
|
|
28
|
+
|
|
29
|
+
- **AskPanel 竞态修复**:修复 doneAsk/rejectAsk 与 approve/reject 的调用顺序,避免工具在获得答案前继续执行
|
|
30
|
+
- **图片消息类型修复**:`stripImageContent` 使用正确的 `input_text` 类型替换图片占位
|
|
31
|
+
|
|
32
|
+
### 📝 文档更新
|
|
33
|
+
|
|
34
|
+
- **插件市场文档**:更新插件市场指南,修复文档内部链接路径
|
|
35
|
+
- **CLI 文档全面更新**:更新 CLI 参考、环境变量、HTTP API、斜杠命令、插件系统等多篇文档的中英文版本
|
|
36
|
+
|
|
10
37
|
## [2.76.0] - 2026-04-03
|
|
11
38
|
|
|
12
39
|
### ✨ 新功能
|