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.

Opencode Cli — DSH Plugin for DeepSeek Harness
← Plugins

dsh-opencode-cli

Opencode Cli

Bridge OpenCode CLI free models into dsh (no OpenCode login needed) via an llm adapter

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-opencode-cli@0.1.5
READMECompatibilityVersions

Compatibility and provenance

Opencode Cli is published as dsh-opencode-cli and currently resolves to version 0.1.5. 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/20/2026

Versions

0.1.5stable
8/15/2026
0.1.4stable
8/15/2026
0.1.3stable
8/15/2026
Show 3 more versionsCollapse versions
0.1.2stable
8/15/2026
0.1.1stable
8/15/2026
0.1.0stable
8/15/2026

Related plugins

Loading related plugins…

Latest
0.1.5
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
24.6 kB
Files
4
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
52
Last push
8/15/2026
View source ↗Project homepage ↗
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 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

dsh-opencode-cli

Bridge the free OpenCode models into DeepSeek Harness through the local opencode CLI — no OpenCode login or API key required.

It registers an LLM adapter for the opencode-cli provider route. For each model turn it:

  1. Starts one shared opencode serve instance per process (in a temporary, locked-down project with the dsh-model agent, all tools denied).
  2. Creates a session via the server's HTTP API and streams the answer back over SSE (message.part.delta), so tokens appear in real time instead of waiting for the whole reply.
  3. Converts OpenCode's text output back into harness text, and <dsh_tool_call> markers into real harness tool calls (so tools run inside dsh, not OpenCode).

Free models

  • opencode/deepseek-v4-flash-free
  • opencode/mimo-v2.5-free
  • opencode/nemotron-3-super-free
  • opencode/big-pickle

The model list is auto-discovered from opencode models opencode at startup.

Install

Install the published package into a profile:

dsh plugin --profile web add dsh-opencode-cli

If add fails with ERR_PNPM_ADDING_TO_ROOT, add this line to profiles/web/pnpm-workspace.yaml (i.e. C:/Users/Windows11/.dsh/profiles/web/pnpm-workspace.yaml):

ignoreWorkspaceRootCheck: true

then run the command again.

Usage

Pick the opencode-cli provider in the model picker, or set it as the default in $DSH_HOME/settings.yaml:

agent-default-model:
  provider: opencode-cli
  model: opencode/deepseek-v4-flash-free

Configuration

Environment variableDescription
DSH_OPENCODE_BINOverride the OpenCode executable path. Defaults to opencode.
DSH_OPENCODE_MODELSComma/space-separated model list. Values without / are prefixed with opencode/.

Example:

DSH_OPENCODE_MODELS="opencode/deepseek-v4-flash-free,opencode/mimo-v2.5-free" dsh web

Notes and limitations

  • This is a CLI bridge, not a native provider. It runs a local opencode serve instance per process, so it is slower than an HTTP provider.
  • Tool calling is prompt-bridged via <dsh_tool_call> markers; it works for common cases but is less reliable than native tool-call protocols.
  • Text-only models.

License

MIT