@huanlin/dsh-plugin-merge-tool-calls 0.1.0 → 0.1.1
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/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
[](https://dshfind.com/zh/plugins/huanlinoto/dsh-merge-tool-calls?ref=badge)
|
|
2
|
+
|
|
3
|
+
> 📌 本插件已收录于 [dshfind](https://dshfind.com/zh) 插件超市,点击上方徽章直达主页。
|
|
4
|
+
|
|
1
5
|
# dsh-plugin-merge-tool-calls
|
|
2
6
|
|
|
3
7
|
把 WebUI 会话流中**连续相邻**的同工具调用合并为一个「主卡片 + 紧凑子行」的树状展示,减少连续读文件/搜索/编辑/执行命令时多条卡片对流的占据。默认覆盖所有内置通用行工具(`read`/`grep`/`glob`/`edit`/`write`/`bash`/`pwsh`/`web_search`/`web_fetch`/`run_code`/`cordis_package_inspect`/`cordis_runtime_inspect`),也可配置白名单。
|
|
@@ -52,10 +56,19 @@ profile 无需额外解析。
|
|
|
52
56
|
|
|
53
57
|
## 运行(挂载到 profile)
|
|
54
58
|
|
|
59
|
+
开发热更新(本地 clone,改源码重建 `lib/` 即生效):
|
|
60
|
+
|
|
55
61
|
```sh
|
|
56
62
|
dsh plugin --profile web add link:D:\Projects\deepseek-harness\dsh-merge-tool-calls
|
|
57
63
|
```
|
|
58
64
|
|
|
65
|
+
分发安装(二选一):
|
|
66
|
+
|
|
67
|
+
```sh
|
|
68
|
+
dsh plugin --profile web add "github:huanlinoto/dsh-merge-tool-calls" # 源码分发
|
|
69
|
+
dsh plugin --profile web add "@huanlin/dsh-plugin-merge-tool-calls" # npm registry 分发
|
|
70
|
+
```
|
|
71
|
+
|
|
59
72
|
然后由人类重启 `dsh web` 进程并硬刷新浏览器(`Ctrl+Shift+R`)。
|
|
60
73
|
|
|
61
74
|
## 检查
|