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.

Stability Audit — DSH Plugin for DeepSeek Harness
← Plugins

dsh-stability-audit

Stability Audit

Scan installed DeepSeek Harness plugins and grade stability risk (hook surface, startup work, preflight health, packaging, dependencies). 扫描已安装插件的稳定性风险(钩子面/启动任务/预检/打包/依赖)。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-stability-audit@0.13.2
READMECompatibilityVersions

Compatibility and provenance

Stability Audit is published as dsh-stability-audit and currently resolves to version 0.13.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/7/2026

Versions

0.13.2stable
9/7/2026
0.13.1stable
8/31/2026
0.13.0stable
8/26/2026
Show 6 more versionsCollapse versions
0.12.4stable
8/26/2026
0.11.1stable
8/26/2026
0.10.1stable
8/25/2026
0.8.1stable
8/25/2026
0.7.1stable
8/25/2026
0.1.0stable
8/24/2026

Related plugins

Loading related plugins…

Latest
0.13.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
78.2 kB
Files
16
Surface
any
License
MIT
Source
npm
GitHub
★ 2
Weekly downloads
0
Last push
9/8/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-stability-audit (plugin stability audit)

Scan installed DeepSeek Harness (dsh) plugins and get a stability risk grade + fix suggestion before they break your harness — static analysis, optional isolated install verification, and machine-readable output for any agent to surface problems and remedies fast.

Built from real incidents: every grading rule comes from actual dsh ecosystem failures — barricade's hooks killing the whole tool chain, codegraph freezing the event loop at startup, trailmap's version conflict breaking the tool layer, dsh-tools single-instance corruption, doc-guard/secret-guard missing-inject boot crashes, 7 unbuilt plugins crashing on load, memento/taskboard undeclared deps (Cannot find package)... The rules are the troubleshooting manual, codified.

Community plugins are often young projects. This plugin answers one question: will installing/keeping this plugin hurt my dsh? Each installed plugin gets a 🔴/🟡/🟢 grade, evidence, and a 🔧 fix suggestion, so you decide on facts, not vibes.

Why

  • One plugin can kill the entire tool layer (hook surface — barricade incident; dsh-tools single-instance — trailmap incident)
  • Startup scans can freeze the event loop for minutes on big workspaces (codegraph incident)
  • Bad plugin config makes dsh silently half-activate plugins (preflight failure)
  • @deepseek-ai/* version conflicts can kill the whole tool pipeline
  • Every failure period pollutes active sessions (dangling tool-calls) that need cleanup after recovery

These are the real failure modes this plugin statically detects — before you step on them.

Install

# Option 1: npm (recommended — prebuilt, skips allowBuilds approval)
dsh plugin --profile web add dsh-stability-audit

# Option 2: GitHub source
dsh plugin --profile web add github:chunfenxiazhi-collab/dsh-stability-audit

After restarting dsh web, agents can call the stability_audit tool (just say "run the plugin stability audit"); or use the CLI:

git clone https://github.com/chunfenxiazhi-collab/dsh-stability-audit.git
cd dsh-stability-audit && npm test
node cli.mjs                    # scan the real web profile
node cli.mjs --dynamic          # also run isolated install verification (~2s/plugin)
node cli.mjs --json             # machine-readable output (for other agents)
node cli.mjs --remote owner/repo          # remote plugin static pre-audit (clone to temp dir, no install)
node cli.mjs --remote owner/repo --dynamic  # full remote pre-audit (clone + isolated install smoke)
node cli.mjs --remote owner/repo --json    # remote pre-audit JSON output

Grading dimensions

SignalGradeCase
Tool hook / middleware registration (pre/post-execute)redcan intercept the whole tool chain (barricade)
Top-level sync scan / indexing at startupredblocks the event loop (codegraph)
Load-time sync service access missing from injectredboot crash (doc-guard/barricade incidents)
main points to unbuilt source (TS/missing file)redload-time crash (7 unbuilt plugins)
Preflight report criticalredflagged by dsh at boot
setInterval pollingyellownormal for update checks; watch frequency
>=10 global event listenersyellowevery broadcast event gets slower
No dsh.bundle manifestyellowinstalled but never activated (research-plugins)
>50 dependenciesyellowdependency-tree pollution risk
Non-build install scripts (prepare etc.)yellownpm lifecycle runs arbitrary code
Deferred service access missing from injectyellowmay be undefined at runtime (cron-style)
@deepseek-ai/* range excludes host synced pkg versionyellowpnpm hoists old build -> tools dead (trailmap)
Isolated install + boot smokepass/failtemp DSH_HOME, dsh plugin add, headless boot, no loader errors
Entry imports undeclared deps (missing-dep)redCannot find package after install (taskboard/memento)
No main and no candidate entry (no-entry)redloader fails importing by package name (verify)
Data exfiltration (process.env via fetch/WebSocket)redOpenClaw 341 malicious-skill top pattern
Hardcoded remote endpoints (URL/WebSocket)yellowfor human review (normal API calls common)

Every hit carries a 🔧 fix suggestion (executable command or manual action) that can be handed to the user or another agent.

Batch testing: --remote accepts multiple specs (comma- or space-separated) to pre-audit a batch of online plugins in one run (clone → static → isolated install smoke, host untouched). Verified sample: docs/audit-report.md (18 plugins, post-verification verdicts).

How it works

  1. Collect plugins from ~/.dsh/profiles//package.json (node_modules + plugin-src)
  2. Static scan: entry file + package.json signals (regex-based, zero dependencies, no AST)
  3. Optional dynamic check (lib/dyncheck.js): temp DSH_HOME -> isolated dsh plugin add -> headless boot -> loader-error scan -> cleanup
  4. Optional remote pre-audit (lib/remote.js): git shallow clone to temp dir -> static rules -> (optional) isolated install smoke -> cleanup
  5. Render report: Markdown (human) or JSON (--json, schema dsh-stability-audit/v1, agent-readable)

Principles: read-only, never runs the audited plugin, zero side effects. Grades are suggestions for human confirmation, not verdicts.

Architecture diagram

dsh-stability-audit runtime architecture

The runtime architecture is drawn with dsh-archify (MIT — a dsh port of tt-a1i/archify, also MIT, itself derived from Cocoon AI's "architecture-diagram-generator"). The MIT notice is embedded in the rendered HTML head; spec and evaluation notes are kept in-repo:

  • Spec (EN): runtime.architecture.en.json
  • Rendered EN (interactive, guided views): docs/dsh-stability-audit-architecture.en.html
  • 中文版(Chinese version): README.zh.md — 架构图见中文版
  • Evaluation notes: docs/ARCHIFY-EVALUATION.md

JSON output (for agents)

node cli.mjs --json

Per plugin: name / version / grade / source / dynamic / findings[], each finding carries ruleId / severity / desc / evidence / fix (remedy). Other agents can act on it directly.

Known limitations (honest list)

  • Static analysis cannot measure runtime behavior (hook throws, real stall duration) — red means "needs a look", not "definitely broken"
  • Isolated boot uses a headless profile: plugins depending on web-only services (e.g. storageDomain) show ❌ in isolation but may be fine in web — treat as an environment-dependency hint
  • Runtime probes (event-loop latency, hook timing) are on the v2 roadmap
  • Fix suggestions are hints, not auto-applied: environments differ (junction/overrides fixes depend on the specific mechanism), agents should confirm before executing

Isolated test vs real environment (what it can and cannot catch)

Isolated testing (temp DSH_HOME + headless smoke) answers: "can this plugin install on its own and boot cleanly?" — filtering out ~80% of the failure modes (unbuilt entry, missing inject, dependency conflicts, load crashes).

DimensionIsolated envReal web profileImpact
Servicesheadless bootweb services + all host servicesplugins depending on webServer/webRuntime stay pending in isolation; real behavior not observable
Co-installed pluginsonly the audited onemany plugins interactinginter-plugin conflicts not caught (hooks stepping on each other, service overrides)
Configemptyreal config (API keys, models, paths)config-dependent plugin paths untested
Credentials/networkno API keymodel APIs availableLLM-dependent features only smoke, never execute
Dataempty storagereal sessions/librariesdata-migration plugins untested
Runtime durationseconds of boot smokedays of residencysetInterval leaks, memory growth not caught
Permissions/buildsame machine, same permissionssame machine, same permissions✅ identical

Suggested usage: use isolated testing as bulk screening — exclude red/fail targets; for plugins you actually want, install manually and observe. Automatically testing plugins against the real environment is not recommended — plugins have real destructive power (see the dsh-troubleshooting incidents).

Releases

  • Release flow: see RELEASE.md (GitHub + npm + Release, three channels in sync)
  • npm: https://www.npmjs.com/package/dsh-stability-audit
  • GitHub Releases (with tarball assets): https://github.com/chunfenxiazhi-collab/dsh-stability-audit/releases

License

MIT (c) 2026 chunfenxiazhi

Contributing

Issues and PRs welcome. Tests: npm test (node:test, zero dependencies).

Commit convention: English subject line + optional Chinese body (e.g. feat: remote plugin pre-audit).