快速了解
它能做什么
在工具调用轮次之间调整推理强度的 DSH 插件。
本站提供的是中文说明,不代表该项目或 Plugin 自身提供中文界面;语言支持请以上游文档为准。
Web Profile
not tested
证据已验证
核对日期 2026/8/28 UTC 09:01
有代码证据的贡献
它为 DSH 增加什么
基于固定仓库证据提供自适应工具轮次推理。
机制证据 ↗选择前先看
该 Bundle 提供在工具调用轮次之间调整推理强度的 DSH 插件
适合谁
需要在 web Profile 中使用performance能力的 DSH 用户。
常见任务
- 用于DSH Tool Turbo相关的performance工作流。
- 决定是否适合你的 Profile 前先查看固定版本的仓库证据。
权限与数据
该 Bundle 会改变 DSH Profile 组成,并可能使用依赖项暴露的宿主能力;本次未测试运行时行为。
权限- 将 DSH Bundle 加入 web Profile。
- 本次未测试运行时数据处理。
- 可能使用固定清单中声明的依赖项。
- 现有证据没有确认凭据要求。
局限
- 本次未测试运行时安装和执行。
- 语义描述基于仓库证据,不构成安全认证。
DSHub 已核对
- 证据中固定了源码仓库 commit。
- Bundle 清单和 patch 结构已存在。
DSHub 未核对
- 本次未测试运行时安装、执行和兼容性。
- 不表示任何安全认证。
固定版本安装
安装 DSH Tool Turbo
这个Plugin Bundle没有 DSH Plugin 安装操作,请根据源码文档使用真实交付方式。
维护者原文
项目 README
dsh-tool-turbo
Cut tool-call latency in DeepSeek Harness (dsh) by auto-adjusting reasoning_effort per tool round.
中文文档 · English
In a multi-step tool chain, the model re-thinks before every tool call — and that thinking dominates the wall-clock time (a 50-step agent task can spend minutes in reasoning between tools). dsh-tool-turbo watches the recent tool calls of a step and injects the lowest sensible reasoning effort into the next model request, then lifts it again the moment the work gets heavy.
How it works
DeepSeek's API exposes reasoning_effort in three steps (low / high / max, shipped 2026-08-13). dsh re-resolves the request config for every step through an agent/request waterfall (see packages/core/agent-loop/src/agent.ts — "plugins propose the next request config"). dsh-tool-turbo plugs into that waterfall:
- Watch the step's recent
tool/callrecords from the session. - Decide: simple, deterministic tools (
write,read,grep,glob,bash,fs_*, …) with small payloads →low; mixed/heavy work →high; very heavy payloads →max(opt-in). - Inject the decision into the
agent/requestconfig for the next model call of that step.
Long tool chains keep the cheap rounds cheap, and never starve the hard rounds of reasoning.
Install
# 1. clone + build the plugin
git clone https://github.com/Electricitysheep/dsh-tool-turbo.git
cd dsh-tool-turbo && npm install
# 2. register into your dsh profile (web shown; any profile works)
# ~/.dsh/profiles/web/package.json dependencies:
# "dsh-tool-turbo": "link:<absolute path to dsh-tool-turbo>"
# ~/.dsh/profiles/web/cordis.patch.yml:
# - insert:
# - id: tool-turbo
# name: dsh-tool-turbo
cd ~/.dsh/profiles/web && pnpm install
# 3. restart dsh web
dsh web
Verified
- Injector works in a live dsh instance (log lines from a real run):
[tool-turbo] agent/request: baseline=high calls=[] => reasoningEffort=high
[tool-turbo] agent/request: baseline=high calls=[{"name":"write",…}] => reasoningEffort=low
- 6/6 unit tests on the effort policy (
decideEffort): fresh prompt keeps the baseline, simple-tool chains downgrade tolow, downgrades respect the user toggle, heavy payloads upgrade tomax(opt-in), mixed tools lift tohigh. tsc --noEmitclean.
Policy (pure, testable)
| Recent tool calls | Decision |
|---|---|
| none (fresh prompt) | keep user's selected effort |
| ≥75% simple tools, small args, downgrade allowed | low |
| mixed / heavy tools | high (when upgrades allowed) |
| very heavy payloads, upgrade allowed | max |
| otherwise | keep user's selected effort |
Toggles (settings namespace planned): allowDowngrade (default on), allowUpgrade (default off — keep max conservative), baseline (default high).
Roadmap
- effort-decision core + waterfall injection
- per-tool duration telemetry (host log)
- settings namespace (dsh-settings) for the toggles
- tool timing surfaced in the UI / agent context
- profile-agnostic install docs (
headless/tui)
License
MIT
有意识地管理
安装与管理
前置条件与目标 Profile
目标: Web Profile
交付方式: Git Bundle — electricitysheep/dsh-tool-turbo#d29e7d9d73032516e37797ea69592ce18e0fe05f。
验证、更新与移除
显示生命周期命令
dsh plugin --profile web list兼容性与访问范围
not_runtime_tested: not tested。
风险事实
证据与编辑审查Manifest、Bundle patch、分发与新鲜度
不可变证据
审查状态与源码活动
在核对来源内容和不可变发布记录后,已由人工批准发布。AI 参与了内容草稿生成,最终发布决定由人工完成。
人工审查于 2026/8/29 UTC 15:23。GitHub 事实核对日期: 2026/8/29 UTC 15:21。
自当前证据基线以来,没有记录到重要源码变化。