dsh-plugins
No description
- Stars
- 0
- Language
- JavaScript
- Created
- Aug 17, 2026
- Updated
- Aug 17, 2026
Introduction
dsh-plugins
Out-of-tree plugins for DeepSeek Harness (dsh).
Each subdirectory is one installable plugin bundle (dsh.bundle.patch + its own cordis.patch.yml),
so dsh plugin --profile <name> add <pkg> registers it as a profile layer automatically.
Plugins
| Plugin | npm | What it does |
|---|---|---|
| visualize | dsh-visualize | visualize_html tool + sandboxed HTML preview card in the Web chat (Codex /vizualize analogue) |
Install (published npm package)
# the profile is a pnpm workspace root, so -w is required
dsh plugin --profile <name> add -w dsh-visualize
Then restart the profile (the shipped web surface disables HMR, so layer changes are not picked up live):
dsh --profile cockpit --port 3081
Local development (link, live rebuilds)
dsh plugin --profile <name> add -w link:/path/to/dsh-plugins/visualize
pnpm install # from the repo root (pnpm workspace)
pnpm --filter dsh-visualize build # after edits; refresh the browser page
Adding a new plugin
- Create
<name>/with apackage.jsondeclaring"dsh": { "bundle": { "patch": "./cordis.patch.yml" } }and acordis.patch.ymlthat inserts your rows (the workspace globpackages: ['*']picks the directory up automatically). - For a Web UI half, add
dsh.client(platformweb, inject list) and anexports["./client"]bundle in thewindow.__ModuleLoader__.load({ id, factory })format (seevisualize/scripts/build-client.mjs). pnpm install, build, test, thendsh plugin --profile <name> add -w <pkg>.
License
MIT