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.

Autofix — DSH Plugin for DeepSeek Harness
← Plugins
A

dsh-autofix

Autofix

Automatic recovery for common DeepSeek Harness tool errors — zero prompts, zero config.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:cyanseek/dsh-autofix#4b401d21e3410fa1c000662baba5774cfa699a4e
READMECompatibilityVersions

Compatibility and provenance

Autofix is published as dsh-autofix 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
9/12/2026

Versions

0.1.0stable
9/12/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Declares sideEffects: false
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 5
Weekly downloads
0
Last push
9/12/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 developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-autofix

简体中文

Fix common DSH failures automatically and keep the task moving.

Install it once, then use DeepSeek Harness exactly as before. Supported failures get one clear recovery action; unknown failures stay unchanged.

  • Transient web or API error: retry once
  • File changed during an edit: refresh the current context
  • Command missing on this OS: use an installed equivalent
  • Known DSH error: give the agent an executable next action

Install

npx -y dsh-autofix install

Done. Use DSH normally.

Before and after

A web tool returns 502

Before: HTTP 502 → task pauses → user says "continue"
After:  HTTP 502 → AutoFix requests one retry → task continues

A file changes during an edit

Before: old text not found → user relays the error → agent reads again
After:  old text not found → AutoFix refreshes a bounded excerpt → agent edits again

A command differs across platforms

Before: rg not found → task stops
After:  rg not found → AutoFix finds an installed equivalent → agent continues

Recovery recipes

RecipeRecognizesAction
Transient tool errorRate limits, selected 408/5xx responses, timeouts, transport resetsAsk the agent to retry the same operation once, then change approach
Stale file contextExact stale-edit and replacement-miss errorsAttach a bounded current excerpt when DSH's filesystem service is available
Command alternativeCommand-not-found errors from shell toolsRecommend the first equivalent that actually exists on the current PATH
DSH Error AtlasA controlled, versioned set of common DSH errorsAttach a short next action without rewriting profile or session data

The public catalog is in recipes/catalog.json. New recipes are welcome through the recipe request form.

Zero-interruption contract

dsh-autofix works only after a tool has already failed. It does not add approval prompts, change tool arguments, alter successful results, install system commands, require another service, or add a UI.

Each matching failure receives at most one recovery intervention in a short window. A second identical failure remains visible so the agent can change approach. Cancellation stops pending recovery work, and uninstall removes the plugin and bundled Skill.

Unknown failures are preserved unchanged.

Compatibility

The current development snapshot passes all 55 tests against the real @deepseek-ai/dsh-tools 0.1.0-rc.8 runtime on Windows with Node.js 24.11.1 (September 12, 2026). The previously released rc.6 compatibility evidence remains separate: Node.js 24.19.0 on Linux/WSL and Node.js 22.19.0 on Windows both pass strict typechecking, build, and the full test suite. The Windows CLI path also passed install, repeat-install, effective-config, and uninstall checks against an isolated real DSH profile through WSL interoperability. A standalone Windows client run and native macOS installation still need release-candidate verification.

See the compatibility matrix for exact evidence and limits.

Advanced Test Kit

Maintainers can run one bundled deterministic recovery check:

dsh-autofix test --scenario transient-tool-error --json

Available scenarios are transient-tool-error, stale-file, command-alternative, and error-atlas.

Plugin authors can import the stable Recipe interface:

import { applyRecipes } from 'dsh-autofix'
import type { AutoFixRecipe } from 'dsh-autofix/recipes'

const recipes: AutoFixRecipe[] = [myRecipe]
applyRecipes(ctx, recipes)

Use this advanced entry point in one custom bundle instead of mounting the default bundle alongside it. Recipes run by descending priority and duplicate IDs fail immediately.

The previous deterministic fault engine remains available for advanced regression tests:

import { ChaosEngine } from 'dsh-autofix/testkit'

The Test Kit is not part of the normal user workflow.

Development and contributing

npm ci --ignore-scripts
npm run check

A recovery contribution is intentionally small: one Recipe, one deterministic regression test, and one concise catalog entry. Read CONTRIBUTING.md before submitting a change.

License

MIT