dshPlugin RegistrySubmit

Independent catalog · not the official market

DeepSeek Harness Plugin Registry

DeepSeek Harness treats everything as a plugin. The official product page still sends you to a GitHub topic. This DeepSeek Plugin Registry is the missing discovery layer: inspect community packages, copy a dsh plugin install line, and skip the topic spam.

Official harness stars
33,014
Public topic repos
411
Inspected on this site
29
Snapshot
2026-08-13

Quick start

Install the harness, then add a plugin to the web profile. The CLI forwards the rest to pnpm inside $DSH_HOME/profiles/web.

npx @deepseek-ai/dsh web
dsh plugin --profile web add github:liustack/modlens

Full walkthrough: install DeepSeek Harness · tutorial · write a plugin.

Why a registry, if GitHub Topics already exist?

DeepSeek shipped Harness as a developer preview with a single sentence of ecosystem policy: add the dsh-plugin topic to your repository. That is a fine bootstrap. It is a terrible storefront. By the end of day one the topic already held 411 repositories, the official repo sat at 33,014 stars, and a large fraction of the topic was unrelated agent-skills tagging along for the ride.

A DeepSeek plugin registry has a narrower job. It should tell you whether a package is a Cordis plugin you can mount, a skin, a TUI shell, a desktop client, or just a markdown list. It should give every real package a stable URL. It should print the install command in HTML, not hide it behind a client-rendered spinner. That last point is not aesthetic. Search engines still read the first HTML response. A registry that is a blank #root is invisible.

This site is statically generated. Every plugin card, every category, every guide is in the document. The search box only hides cards; it does not fetch them after paint. If you are comparing catalogs, that is the difference between a page and an app pretending to be a page.

What “verified” means here

We do not run untrusted plugins on your machine, and we do not pretend to. Inspected means a human opened the public README, confirmed the package is actually for DeepSeek Harness (or is an adjacent client people search for), and copied an install string. It is not a security audit, not a malware scan, and not an official badge from DeepSeek. Treat community plugins like any other pnpm add github:… — read the code, pin a commit if you care, keep git clean.

How DeepSeek Harness plugins actually load

A running dsh is a plugin tree. Official docs are blunt: models, tools, skills, sessions, sandboxes, storage, loops, scheduling, and the UI are all plugins. A profile is a named composition under $DSH_HOME/profiles/<name>. The web and headless profiles boot from shipped templates. Community packages land in that profile’s node_modules through:

dsh plugin --profile web add github:owner/repo

That command is pnpm with a launcher in front. Some authors ship a .dsh-plugin directory and want a path fragment on the GitHub URL. The first-party authoring path is even smaller: export apply(ctx) from a TypeScript module, patch it into cordis.yml, boot with --patch. If you are writing rather than installing, start at the write-a-plugin guide.

Browse by category

All categories →

Inspected plugins

Curated from the public topic on 2026-08-13. Stars are GitHub counts from that snapshot, not downloads. Click through for the install command and a longer note.

Showing 29 / 29 listed packages

DeepTide
paean-ai/deeptide
1k
stars

Swift-native macOS coding agent. Built by DeepSeek, for DeepSeek — not a Cordis plugin.

Modlens
liustack/modlens
660
stars

First vision plugin for DeepSeek Harness. Paste an image, get structured JSON: OCR, layout, semantics.

agent-vision-toolkit
Anionex/agent-vision-toolkit
486
stars

Vision toolkit for text-only LLMs. Works with Codex, Claude Code, Pi, OpenCode — and tags dsh-plugin.

dsh-web-ui
zhu1090093659/dsh-web-ui
379
stars

Plugin and skin collection for the official Web UI: task board, git graph, right panel, mobile UI, pets, token stats.

Axern
cofy-x/axern
242
stars

Open-source sandboxes for AI agents, untrusted code, and durable services. Infrastructure, not a skin.

dsh-cc-tui
ccch1mneyyy/dsh-cc-tui
136
stars

Claude Code-like full-screen terminal for DeepSeek Harness. npm one-liner, live context, dual Esc rewind.

dsh-vision-toolkit
Anionex/dsh-vision-toolkit
125
stars

Harness-native vision toolkit: image Q&A, long-screenshot OCR, UI restoration, grounding, pixel diff, Artifacts.

DSH-better-sidebar
omdsh-dev/DSH-better-sidebar
81
stars

A real IDE-style sidebar: tabs, file tree with preview, terminal, Git, and sub-agents in one dock.

dsh-ads
Nagi-ovo/dsh-ads
77
stars

2005-portal parody layer for the Web UI: banner ads, dialog spam, pop-unders. Comes with a close button.

oh-dsh-desktop
hust-open-atom-club/oh-dsh-desktop
54
stars

Extensible macOS workbench: native PTY, workspace tools, bilingual plugins, isolated-preview marketplace.

dsh_workflow
icetomoyo/dsh_workflow
30
stars

Claude Code UltraCode-style workflow for DSH: generate, execute, observe, recover as a graph.

dsh-at-file
omdsh-dev/dsh-at-file
22
stars

Codex-style @file mentions in the composer. Search the workspace and attach file contents to the prompt.

dsh-browser
Lum1104/dsh-browser
21
stars

Chrome sidebar extension so DSH can operate your browser directly — no vision model required.

dsh-notification
omdsh-dev/dsh-notification
20
stars

Desktop notifications when a turn finishes. Per-outcome controls and include/exclude keyword rules.

dsh-visualize
Nagi-ovo/dsh-visualize
20
stars

Render fenced HTML cards inline in the session. visualize tool + skill + sandboxed preview.

oh-my-dsh
LaplaceYoung/oh-my-dsh
19
stars

Plugin ecosystem layer: 700+ extension points via hook registration, without patching agent-loop.

dsh-custom-tool
omdsh-dev/dsh-custom-tool
17
stars

Create sandboxed JavaScript tools with a Monaco editor and a model-driven tool lifecycle.

dsh-turn-rewind
Anionex/dsh-turn-rewind
17
stars

Rewind conversation and workspace state from a persistent Change Ledger. Restore points per turn.

whale-girl
vlln/whale-girl
16
stars

QQ-pet style companion on the Web GUI. Official-format repository plugin (.dsh-plugin + config.yaml).

dsh-genui
omdsh-dev/dsh-genui
12
stars

Interactive UI inside assistant replies via a dsh-ui fence: layout, charts, forms, mermaid, 3D, action loop.

ClawHub
vvlife/clawhub
0
stars

Another day-one marketplace: browse / search / one-click install. MIT. Complements awesome lists.

FAQ

What is the DeepSeek Plugin Registry?+
It is an independent, crawlable catalog of community plugins for DeepSeek Harness (dsh). Official discovery is still the GitHub topic dsh-plugin. This registry inspects that topic, drops opportunistic tags that are not real Harness plugins, and gives every remaining package a static page with an install command.
How do I install DeepSeek Harness?+
Install Node.js, then run npx @deepseek-ai/dsh web. The Web UI listens on http://127.0.0.1:3080. To run from source: git clone the official repo, pnpm install, pnpm run build, pnpm dsh web.
How do I install a community plugin?+
The official CLI forwards plugin management to pnpm inside a profile directory: dsh plugin --profile web add github:owner/repo. Some packages use a .dsh-plugin path fragment. Always read the repo README — the harness is in developer preview and will break compatibility.
Is this the official DeepSeek market?+
No. DeepSeek’s own Harness page sends community plugins to github.com/topics/dsh-plugin. There is no official registry. dshplugin.world is a third-party discovery layer, similar to how crates.io is not rustc.
What is dshpkg?+
dshpkg is the informal name people already use for a Harness plugin package. We treat it as an alias for a Cordis plugin you mount into a profile, not as an official package manager. If DeepSeek ships a real dshpkg later, this catalog will point at it.
Why are there 411 repos on the topic but fewer here?+
The public dsh-plugin topic filled up in hours with unrelated agent skills and products that only added the tag. A registry that lists every tag is a dump. We keep packages that are actually for DeepSeek Harness: Cordis plugins, official-format .dsh-plugin repos, and a few adjacent clients people search for.