shy19805/dsh-tool-args-unwrap ↗★ 0
@dsh-external/dsh-tool-args-unwrap
Fixes malformed tool-call arguments (nested {"arguments":{…}} wrappers, wrapper-key aliases, param-key aliases) at the llm/stream seam — repairs execution, persistence and history replay in one place. 修复模型产出的畸形工具参数。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:shy19805/dsh-tool-args-unwrap说明文档
阅读完整 README ↗安装与使用
方式一:开发装配(推荐,本插件即以此验证)
把插件目录 link 进 profile,加进 bundles 数组,重启即持久生效:
//
/package.json
{
"dependencies": { "@dsh-external/dsh-tool-args-unwrap": "link:/abs/path/to/dsh-tool-args-unwrap" },
"dsh": { "profile": { "bundles": ["@dsh-external/dsh-tool-args-unwrap"] } }
}