DeepSeek Harness 插件

dsh-llm-retry-infinite

DSH plugin: infinite exponential retries on LLM requests, capped at 10 minutes per wait(英文原文)

跳到安装方式

来源信息

GitHub 仓库
PineappleTwilight/dsh-llm-retry-infinite
最近更新
2026年8月20日
分类
工具与能力
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/PineappleTwilight/dsh-llm-retry-infinite
插件名:dsh-llm-retry-infinite
作者:PineappleTwilight

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器2 个文件
README.md来源说明 · 只读预览

dsh-llm-retry-infinite

A DeepSeek Harness plugin that replaces the built-in LLM retry behavior with infinite exponential retries. Every failed LLM request is retried indefinitely with an exponential backoff that caps each individual wait at 10 minutes.

Why this exists

The built-in @deepseek-ai/dsh-llm-retry defaults to mode: 'normal' with a hard cap of 2 retries. For environments with transient rate limits, flaky connectivity, or provider instability, you may want the harness to keep trying until the request succeeds — without a retry ceiling. This plugin takes over the entire retry chain and never gives up.

How it works

1. Intercepts every agent/request-error event from the DSH agent loop. 2. Computes an exponential backoff: min(initialDelayMs × 2^retry, 600 000). 3. Waits the computed delay (symmetric jitter, cancellable on abort or session close). 4. Returns { kind: 'retry' } to re-attempt the request. 5. Repeats forever until success, cancellation, or plugin disposal.

The plugin does not delegate to the built-in retry handler — it fully replaces it.

Backoff schedule (default config)

Retry #DelayApprox.
11000 ms1 s
22000 ms2 s
34000 ms4 s
48000 ms8 s
516 000 ms16 s
632 000 ms32 s
764 000 ms~1 m
8128 000 ms~2 m
9256 000 ms~4 m
10512 000 ms~8.5 m
11+600 000 ms10 m (cap)

Each value includes ±10 % symmetric jitter by default.

---

Installation

1. Install the package

cd ~/.dsh/profiles/<your-profile>
pnpm add dsh-llm-retry-infinite

For a local / development copy:

cd ~/.dsh/profiles/<your-profile>
pnpm add "link:/absolute/path/to/dsh-llm-retry-infinite"

2. Register as a bundle

Open package.json in your profile directory and add "dsh-llm-retry-infinite" to the dsh.profile.bundles array:

{
  "dsh": {
    "profile": {
      "bundles": [
        "@deepseek-ai/dsh-base",
        "@deepseek-ai/dsh-web-app",
        // ... other bundles ...
        "dsh-llm-retry-infinite"   // ← add this
      ]
    }
  }
}

3. Disable the built-in retry plugin

The built-in @deepseek-ai/dsh-llm-retry (id: llm-retry) is loaded by dsh-base and runs before any later bundle in the waterfall chain. It must be disabled or it will intercept retries with its 2-attempt cap.

Open ~/.dsh/profiles/<your-profile>/cordis.patch.yml and add a disable entry:

[
  {
    id: "llm-retry",
    disabled: true
  }
]

This tells the Cordis loader to skip the built-in retry plugin entirely, leaving dsh-llm-retry-infinite as the sole retry handler.

4. (Optional) Restart DSH

If DSH is already running, restart it to pick up the new plugin and patch:

# For the web profile:
# Stop the existing process, then:
dsh web

---

Configuration

All fields are optional. You can pass config through cordis.patch.yml or through the bundle's own config block:

# In cordis.patch.yml — override config for the plugin entry
[
  {
    id: "llm-retry",
    disabled: true
  },
  {
    insert: [
      {
        id: "llm-retry-infinite",
        name: "dsh-llm-retry-infinite",
        config: {
          initialDelayMs: 2000    # base delay for first retry (default: 1000)
          maxDelayMs: 300000      # cap per wait — 5 min (default: 600000)
          jitterRatio: 0.15       # symmetric jitter ±15% (default: 0.1)
        }
      }
    ]
  }
]

Or if you rely on the auto-insert from cordis.patch.yml inside the plugin package itself, you can override via the profile-level patch:

[
  {
    id: "llm-retry",
    disabled: true
  },
  {
    id: "llm-retry-infinite",
    config: {
      initialDelayMs: 500
      maxDelayMs: 600000
      jitterRatio: 0.1
    }
  }
]

Parameter constraints

ParameterTypeDefaultRange
initialDelayMsnumber1000(0, 600 000]
maxDelayMsnumber600 000(0, 600 000]
jitterRationumber0.1[0, 1]

Additional rules:

  • initialDelayMs must be ≤ maxDelayMs.
  • The hard ceiling of 600 000 ms (10 minutes) cannot be exceeded regardless of configuration.

---

Session events

The plugin emits durable, non-surface session events for observability and UI display:

EventWhenPayload
llm/retry-infiniteBefore each waitturn, step, provider, retry, delayMs, delayFormatted, statusCode, statusText, statusMessage, deadline, cumulativeWaitMs, failure
llm/retry-infinite-startedAfter wait completes, just before the retry firesturn, step, retry, provider, deadline
llm/retry-infinite-cancelledWhen a retry is aborted (session close, disposal)turn, step, retry, provider, cumulativeWaitMs

These events are not visible to the model and do not contribute to token billing. They are available in the session event log for debugging and UI status display.

Enriched event fields

Each llm/retry-infinite event includes rich metadata for UI rendering:

| Field | Type | Description | |-------|------|-------------| | statusCode | number \| undefined | HTTP status code from the failure (429, 500, 503, etc.) | | statusText | string | Human-readable status label (e.g. "rate limited", "server error") | | statusMessage | string | Full display message: "Retrying — rate limited (429), attempt #3, waiting 16s" | | deadline | number | Absolute timestamp (ms since epoch) when the wait ends | | delayFormatted | string | Human-readable delay (e.g. "16s", "2m 8s") | | cumulativeWaitMs | number | Total time spent waiting across all retries for this turn+step |

---

UI visual indicator

The plugin provides two mechanisms for building retry status UIs:

1. Live retry state accessor

Use ctx.retryState() to get the current retry state at any time. This is ideal for reactive UIs that poll or subscribe to state changes.

// In any component or event handler:
const state = ctx.retryState();

if (state.active) {
  console.log(state.statusMessage);
  // → "Retrying — rate limited (429), attempt #3, waiting 16s"

  console.log(`${state.remainingFormatted} remaining`);
  // → "12s remaining"

  // state includes: active, retry, statusCode, statusText, delayMs,
  // deadline, remainingMs, remainingFormatted, cumulativeWaitMs, etc.
}

The remainingMs and remainingFormatted fields are computed on read — they reflect the live countdown as the wait progresses.

2. Display helpers (dsh-llm-retry-infinite/display)

Import from the /display subpath for rendering utilities:

import {
  renderTerminalStatus,
  renderHTMLIndicator,
  renderMarkdownStatus,
  statusIndicator,
  RETRY_INDICATOR_CSS,
} from "dsh-llm-retry-infinite/display";

#### Terminal status

const state = ctx.retryState();
const line = renderTerminalStatus(state);
// → "⏳ Retrying #3 — rate limited (429), waiting 16s (4s remaining)"

#### HTML indicator

const state = ctx.retryState();
const html = renderHTMLIndicator(state);
// Returns a self-contained <div> with classes for CSS styling.
// Inject RETRY_INDICATOR_CSS for default styling.

#### Markdown status

const state = ctx.retryState();
const md = renderMarkdownStatus(state);
// → "⏳ **Retrying #3** — rate limited `429` · waiting 16s · 4s left"

#### Status indicator lookup

const info = statusIndicator(429);
// → { color: "yellow", emoji: "⏳", label: "Rate Limited" }

Status code visual mapping

CodeEmojiColorLabel
429yellowRate Limited
500💥redServer Error
502🔴redBad Gateway
503🔴redService Unavailable
408⏱️orangeTimeout
401🔒redUnauthorized
403🚫redForbidden
othergrayUnknown Error

---

How it differs from the built-in dsh-llm-retry

dsh-llm-retry-infinite@deepseek-ai/dsh-llm-retry
Retry limit∞ (none)2 (default), configurable
ScopeGlobal — all providersPer-provider via retryPolicy
ConfigurationPlugin-level in cordis.patch.ymlEach provider adapter's retryPolicy field
ModesAlways retriesnormal (bounded) or always (unbounded)
Replaces built-in?Yes — disables it via patchN/A (is the built-in)
BackoffExponential, 10 min capExponential, 10 s default cap

---

Architecture notes

Why disable the built-in?

DSH loads bundles in order. dsh-base (which contains dsh-llm-retry) is always first. In Cordis's waterfall event dispatch, handlers run outermost-first — the first-registered handler intercepts before later ones. If the built-in is not disabled, it handles the first 2 retries with its own backoff, then exhausts and passes control downstream. Disabling it via cordis.patch.yml ensures our plugin is the only handler.

Plugin structure

dsh-llm-retry-infinite/
├── cordis.patch.yml        # Auto-insert entry for the Cordis loader
├── lib/
│   ├── index.js            # Plugin implementation
│   └── types/
│       └── index.d.ts      # TypeScript declarations
├── package.json            # dsh.bundle declaration + schemastery dep
└── README.md

The dsh.bundle.patch field in package.json points to cordis.patch.yml, which tells the loader how to insert the plugin into the layer stack.

---

License

MIT