证据快照复核于 2026-08-30GitHub 数据核对日期: 2026-08-21
证据已验证Plugin Bundle开发工具Web Profile

DSH Tool Turbo

在工具调用轮次之间调整推理强度的 DSH 插件。

快速了解

它能做什么

在工具调用轮次之间调整推理强度的 DSH 插件。

本站提供的是中文说明,不代表该项目或 Plugin 自身提供中文界面;语言支持请以上游文档为准。

使用场景
开发工具性能工作流自动化
适配技术
dshWeb
兼容性

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

查看 commit d29e7d9 对应的 README
维护者编写的上游内容原文于 2026/8/28README.md 获取,正文和仓库相对媒体固定到 commit d29e7d9d7303,内容哈希为 9bffc4d3ff56。以下是未经 DSHub 翻译的上游原文,语言可能与当前页面不同;第三方托管的 badge 可能独立更新。

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:

  1. Watch the step's recent tool/call records from the session.
  2. Decide: simple, deterministic tools (write, read, grep, glob, bash, fs_*, …) with small payloads → low; mixed/heavy work → high; very heavy payloads → max (opt-in).
  3. Inject the decision into the agent/request config 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 to low, downgrades respect the user toggle, heavy payloads upgrade to max (opt-in), mixed tools lift to high.
  • tsc --noEmit clean.

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

检查兼容性证据

风险事实

installation-path

No installer script was captured; review the repository instructions before use.

证据
distribution-signal

The npm distribution signal is incomplete or differs from the pinned source; review the Git Bundle path before use.

证据
证据与编辑审查Manifest、Bundle patch、分发与新鲜度

不可变证据

审查状态与源码活动

人工已批准

在核对来源内容和不可变发布记录后,已由人工批准发布。AI 参与了内容草稿生成,最终发布决定由人工完成。

人工审查于 2026/8/29 UTC 15:23GitHub 事实核对日期: 2026/8/29 UTC 15:21

自当前证据基线以来,没有记录到重要源码变化。

下一步

按 Plugin 安装流程操作

订阅重要变化: DSH Tool Turbo