DeepSeek Harness plugin

dsh-plugin-reloader

Hot-reload installed DeepSeek Harness plugins without restarting dsh web: watches plugin bundles, reloads changed plugins in place, and restarts on dependency changes

Jump to install

Source facts

Repository
deepforce/dsh-plugin-reloader
Latest update
Aug 15, 2026
Category
Development & Runtime
GitHub stars
1
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/deepforce/dsh-plugin-reloader
Plugin: dsh-plugin-reloader
Author: deepforce

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

dsh-plugin-reloader

English | 中文

Hot-reload installed DeepSeek Harness plugins without restarting dsh web. After you upgrade a plugin (e.g. dsh plugin add github:...), the new code takes effect in place; only a dependency-tree change restarts the process (through an external supervisor script).

It reuses the same reload pipeline dsh's built-in HMR uses for user code — clear the module caches, re-import the plugin entry, dispose the old fibers, mount fresh ones, roll back on failure — minus the node_modules exclusion that keeps the built-in HMR away from installed plugins. The loader's internal module cache is reachable through dsh's vendored loader without any special flag.

Features

  • Auto hot-reload — polls the installed plugins' entry and package.json files (every

pollIntervalMs, default 2s) and hot-reloads a plugin in place when its code changes. Polling (stat mtime+size) is used instead of a file-watcher library: chokidar's fs-watch never reached ready inside the long-lived dsh web process on Windows, and polling is immune to pnpm's whole-directory replacements (the stat simply sees the new files on the next tick). Plugin upgrades are low-frequency, so a 2-second stat of a handful of files is negligible.

  • /reload <plugin> command — manually hot-reload one installed plugin; with no

argument it lists the loaded plugins, marking non-reloadable ones ([official], [service], [self]).

  • /watch-status command — prints live watch diagnostics: watched scopes, event count,

the last observed change, reload count, skipped reloads, and any startup error. Read it after upgrading a plugin to confirm the auto-reload fired (events and reloads incremented).

  • Dependency-change restart — if a plugin's package.json changes its

dependencies/peerDependencies, the process exits with code 42 (configurable) so a supervisor relaunches it.

  • Reloadability guard — official @deepseek-ai plugins and plugins that provide

services other plugins depend on are not hot-reloaded by default: the attempt is skipped, logged, and counted in /watch-status. Reloading a service provider would cascade restarts through every plugin that injects its services, and reloading an official plugin is equivalent to patching dsh itself mid-session. Override per category with allowOfficial / allowServiceProviders.

  • Rollback on failure — a failed re-import or mount restores the module caches and the

previous plugin; the session keeps running.

Install

dsh plugin --profile web add github:deepforce/dsh-plugin-reloader

Restart dsh web once so the plugin loads. For the dependency-change restart to be useful, start dsh through the supervisor instead of directly:

# Windows (cmd)
scripts\dsh-restart.cmd web

# Windows (PowerShell)
powershell -File scripts\dsh-restart.ps1 web

Usage

After upgrading an installed plugin:

dsh plugin --profile web add github:deepforce/dsh-balance   # upgrade

The watcher notices the changed lib/ files and hot-reloads it — no restart. To force it manually, type /reload @deepforce/dsh-balance in a session, or /reload with no argument to list candidates.

If the upgrade also changed the plugin's dependency tree, the process exits 42 and the supervisor relaunches dsh web automatically (a supervisor is required — a plain dsh web just exits).

Configuration

FieldDefaultMeaning
watchEnabledtruePoll installed plugins and hot-reload on code changes
watchRoots["@deepseek-ai", "@deepforce"]Scoped directories under the profile's node_modules to consider
debounceMs400Change coalescing window before a reload fires
pollIntervalMs2000Polling interval for change detection
restartExitCode42Exit code used when a dependency tree changed (supervisor restarts on it)
allowOfficialfalseAlso hot-reload official @deepseek-ai plugins (not recommended)
allowServiceProvidersfalseAlso hot-reload plugins that provide services other plugins depend on (not recommended)

Example overlay:

# reloader.cordis.yml
- patch:
    - id: plugin-reloader
      config:
        debounceMs: 600
        restartExitCode: 50

Compatibility

Tested against DeepSeek Harness 0.1.0-rc.6 (web profile, Windows 11, Node 24). It depends on the loader's internal module cache (loader.internal), which the vendored loader exposes by default; if a future dsh removes that surface, the plugin degrades to /reload reporting "loader internal is unavailable".

Security

  • The watcher only reads files; it never executes anything itself.
  • A reload failure rolls back instead of leaving a half-mounted plugin.
  • The dependency-change exit is intentional and announced in the log before exiting.

Building locally

pnpm install        # uses pnpm-workspace.yaml overrides for upstream npm gaps
pnpm run build      # tsc emits lib/index.js

License

MIT