DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Llm Extra Retry — DSH Plugin for DeepSeek Harness
← Plugins
L

dsh-llm-extra-retry

Llm Extra Retry

Extra model-request recovery for the DeepSeek Harness: retries a failed model request once after a fixed delay when the provider classifies the failure as PI_AI_ERROR (unrecognized upstream error text). All other error codes stay on the built-in dsh-llm-retry default policy (5 bounded exponential-ba

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:lim12137/dsh-llm-extra-retry#37c85c373eb2e6186a7354ff6b2a88107d6872fb
READMECompatibilityVersions

Description

Extra model-request recovery for the DeepSeek Harness: retries a failed model request once after a fixed delay when the provider classifies the failure as PI_AI_ERROR (unrecognized upstream error text). All other error codes stay on the built-in dsh-llm-retry default policy (5 bounded exponential-backoff retries). Composes safely with @deepseek-ai/dsh-llm-retry via the agent/request-error waterfall using its own policyKey bookkeeping.

Compatibility and provenance

Llm Extra Retry is published as dsh-llm-extra-retry and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/26/2026

Versions

0.1.0stable
8/26/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/26/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with a dedicated pet bubble for the current providerWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

dsh-llm-extra-retry

给 DSH 模型请求失败瀑布(agent/request-error)追加一条独立恢复策略: 当提供方把失败归类为 PI_AI_ERROR(dsh-llm-pi-ai 对无法识别的上游错误 文本的兜底错误码,内建默认重试策略不覆盖)时,等待 20 秒后自动重试一次。

其他错误码一律通过 next() 放行,完全保持 @deepseek-ai/dsh-llm-retry 默认策略(5 次有界指数退避 0.5s→10s、10% jitter)的行为;两者通过各自的 policyKey 独立记账,互不干扰。请求取消或插件卸载会立刻中止等待中的退避。

安装(已在 profiles/web profile 中接线)

  1. 本目录以 link: 依赖挂入 profiles/web/package.json;
  2. dsh.profile.bundles 增加 "dsh-llm-extra-retry";
  3. node_modules/dsh-llm-extra-retry 为指向本目录的目录联接(junction);
  4. 重启 DSH 生效。

调整等待时长或次数:改 lib/index.js 顶部的 DELAY_MS / MAX_RETRIES。