dsh-repeat-stop

August 29, 2026 · View on GitHub

DeepSeek Harness plugin: hard-stop consecutive identical tool calls (same tool + same arguments).

Pairs with dsh-tool-budget. Part of dsh-wsl-kit.

中文说明 ↓


English

Why

Official repeat-tool-reminder only advises and never blocks. Agents can still spin on the same failing call. This plugin denies the next call after a streak.

Default: 6 identical calls may run; the 7th is blocked. Changing args/tool or a real user message resets the streak.

Install

dsh plugin --profile web add github:173787247/dsh-repeat-stop

Restart dsh web. No new tool appears. When it fires, Trajectory shows dsh-repeat-stop: blocked.

Config

- id: dsh-repeat-stop
  name: dsh-repeat-stop
  config:
    enabled: true
    threshold: 6
    exclude:
      - job_output
      - job_list
      - job_kill
    # include: []   # if set, only these names (wildcards ok) are tracked
KeyDefaultMeaning
enabledtrueMaster switch
threshold6Allowed streak; next call blocked (integer ≥ 2)
excludejob_*Names that never count
include(empty)If set, only these names are tracked

Test

npm test

License

MIT


中文

为什么需要

官方重复提醒只劝不停。本插件在「同一工具 + 同一参数」连续达到阈值后硬拦截,避免 Agent 原地空转。

默认连续 6 次可执行,第 7 次拒绝。换参数、换工具或用户再发消息会清零。

安装

dsh plugin --profile web add github:173787247/dsh-repeat-stop

触发时 Trajectory 出现 dsh-repeat-stop: blocked

与 tool-budget 的区别

插件拦截对象
dsh-repeat-stop连续相同调用
dsh-tool-budget整场会话工具总次数

许可

MIT