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.

@openllmsh/dsh — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
@

@openllmsh/dsh

@openllmsh/dsh

DeepSeek Harness (dsh) bundle that routes the harness through the OpenLLM gateway — an `openllm` provider on the in-box pi-ai adapter (via the local daemon gateway) plus the OpenLLM MCP server. Pure config; install OpenLLM first (see README).

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

npx -y @deepseek-ai/dsh plugin --profile web add github:openllmsh/dsh#2eeb1d0e1a9bec3a10570bdf865638a62b080528
READMECompatibilityVersions

Compatibility and provenance

@openllmsh/dsh is published as @openllmsh/dsh 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
8/27/2026

Versions

0.1.0stable
8/27/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/28/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

Related plugins

More verified plugins in models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

OpenLLM

@openllmsh/dsh — route DeepSeek Harness through OpenLLM.


A DeepSeek Harness (dsh) bundle that points the harness at the OpenLLM gateway and hands it OpenLLM's MCP tools. It is a pure-config Cordis patch layer — installed from the dsh side, no runtime code — and it does two things:

  • LLM router — adds an openllm provider to dsh's in-box llm-pi-ai adapter (openai-completions) pointed at the daemon's local-first gateway (http://127.0.0.1:8787/v1) and makes it the default model. No adapter code, and no API key: that loopback surface has no auth gate; the daemon fetches signed plans with its own ~/.openllm/.env credentials and forwards upstream.
  • MCP — registers the openllm mcp stdio server (openllm, claude-context, supermemory tool groups). The openllm binary resolves ~/.openllm/.env itself, so it too needs nothing from dsh.

dsh holds no key and no origin — it just talks to 127.0.0.1:8787, so the only thing it requires is that openllmd is running. Installing OpenLLM is a prerequisite (below) — the installer starts the daemon for you; this bundle does not install, prompt for, or onboard it. Runs on the host DeepSeek Harness — the services it patches (@deepseek-ai/dsh-llm-pi-ai, @deepseek-ai/dsh-mcp-client) ship in @deepseek-ai/dsh-base.

Prerequisite — install OpenLLM

Do this once — dsh routes to the local OpenLLM daemon, and the installer sets it up and starts it for you (macOS / Linux):

curl -fsSL https://www.openllm.sh/install | bash

This is OpenLLM's own official installer (canonical source: https://openllm.sh/install); it digest-verifies the binaries it downloads. If your policy requires it, fetch and read the script before piping it to a shell. This bundle only documents the prerequisite — it never runs it.

There is nothing else to run, paste, or export — the installer starts the daemon and persists your key to ~/.openllm/.env, and the daemon serves dsh from there.

Install the bundle

Install into the profile whose surface you actually run. dsh profiles are separate bundle stacks, so a bundle added to one profile is invisible to the others — the browser UI lives only in the web profile (web mounts dsh-base + dsh-web-app; headless mounts dsh-base + dsh-headless). The bare default profile is dsh-base only — no web surface — so adding the bundle there never reaches the web UI.

Browser UI (web profile):

dsh plugin --profile web add github:openllmsh/dsh

Headless / CLI (headless profile):

dsh plugin --profile headless add github:openllmsh/dsh

Then restart the profile. Distributed from GitHub — no npm package. The built lib/ is committed, so the git install loads with no build step (and no pnpm allowBuilds prompt). Pin a release with github:openllmsh/dsh#<tag>.

Self-hosted / custom port

The router base (http://127.0.0.1:8787/v1) is fixed in cordis.patch.yml. To route through a self-hosted OpenLLM, point the daemon at your origin when you install it — dsh still just talks to 127.0.0.1:8787. A custom daemon port (OPENLLM_DAEMON_PORT) means editing the baseURL in cordis.patch.yml to match.

Develop

pnpm install
pnpm build            # tsdown → lib/index.mjs (+ .d.mts) — commit the result
pnpm typecheck        # tsc --noEmit

dsh plugin --profile demo add .          # link this bundle into a scratch profile
dsh --profile demo --dump-config         # inspect the composed plugin tree

The bundle's substance is cordis.patch.yml (resolved via the dsh.bundle.patch manifest field); src/index.ts is an export {} placeholder with no runtime API, matching @deepseek-ai/dsh-base.

lib/ is committed (GitHub is the only distribution channel), so rebuild and commit it whenever src/ changes — a stale lib/ is what git installs.

Developer preview — dsh is pre-1.0; pin and re-test against each dsh bump.

License

MIT © OpenLLM, INC — see LICENSE.