DeepSeek Harness plugin

dsh-plugin-standard

A DSH Plugin Standard v2.0 compliant bundle skeleton (host-only; extend with client per the standard)

Jump to install

Source facts

Repository
lanbaolu/dsh-plugin-standard
Latest update
Aug 20, 2026
Category
Tools & Capabilities
GitHub stars
1
Format
plugin
Package path
template/bundle
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
template/bundle/package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-21

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/lanbaolu/dsh-plugin-standard/tree/HEAD/template/bundle
Plugin: dsh-plugin-standard
Author: lanbaolu

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-my-plugin

A minimal DSH Plugin Standard v2.0 compliant bundle skeleton.

![DSH Plugin Standard](https://github.com/lanbaolu/dsh-plugin-standard)

Quick start

npm install          # devDependencies only
npm run build        # tsc → lib/
npm run verify       # node scripts/verify-plugin.mjs .  (0 MUST violations)
npm run verify:pack  # deep pre-release check

Install into a DSH profile

dsh plugin --profile web add /path/to/dsh-my-plugin
dsh --profile web --dump-config   # expect a `dsh-my-plugin` row

Standard compliance

  • type: module, main/types/exports point to real lib/ artifacts
  • cordis.patch.yml: top-level array, unique id, name == package name
  • package name == patch name == source export const name == client wrapper id (when added)
  • shared runtimes in peerDependencies only
  • typecheck / build / test / verify / pack script gates present

Adding a client (browser UI)

Follow DSH Plugin Standard §4 and the official DSH client docs:

  • add exports["./client"] and dsh.client.platform: "web" (+ package-name inject)
  • keep host/client as two tsc programs; client entry must be .tsx
  • every slot/DOM/style/React root inside ctx.effect disposers