DSH HUB
HomePlugin StorePlugin PacksCommunityRankingsResourcesPublish Guide
Plugin source
Back to catalog

DshMarketPlace /

dshmarketplace

Topic repository only

Bilingual directory of DeepSeek Harness (DSH) plugins — 1,004 listings, written detail pages, public API. Next.js on Cloudflare Workers.

★ 0 Stars0 Forks0 IssuesN/A Community rating0 Confirmed installs
View on GitHubProject homepage
READMESource: main@07bcb36f

DSH Marketplace — every DeepSeek Harness plugin, with a page worth reading

Live site Deploy 1,004 plugins Public API MIT LINUX DO

English · 简体中文


A bilingual directory of DeepSeek Harness (DSH) plugins. English at /, Chinese at /zh, one catalogue behind both.

Live at https://dshmarketplace.dev.

Why this exists

DeepSeek Harness is DeepSeek's open agent harness, where every capability is a plugin. The ecosystem passed a thousand plugins within weeks of launch.

Several directories index them already. Nearly all are card walls: repository name, star count, a link straight out to GitHub. That is a table of contents, not a reference — you still have to read the source to learn what a plugin touches.

So the differentiator here is written depth. A promoted plugin gets its own page carrying an overview, a documentation section and an illustration, in both languages. That is slow to produce and cannot be scraped, which is the point.

This is deliberately early. 28 of 1,004 listings have that page today. The rest carry metadata and a hand-written bilingual summary while the writing catches up. Nothing is padded with generated filler to make the number look better.

The catalogue

Listings 1,004 — 1,002 not archived
Categories 14, from Memory and Vision to Themes
Chinese summaries 1,004 — every listing, written by hand
Written detail pages 28, bilingual · 25 illustrated
One-line install 960 · 44 cannot have one, and say so
LINUX DO verified 6

Verified means the author posted the plugin on LINUX DO under their own name and answers for it in public. It is a provenance signal, not a security review.

Three surfaces, one source

Every surface reads the same API, so a listing cannot say one thing in a browser and something else inside the harness.

Web https://dshmarketplace.dev
CLI dshmarketplace-cli — for coding agents outside DSH
Python dshmarketplace — zero dependencies, dshm CLI, agent tools
In DSH dshmarketplace-plugin — /store inside the harness
In the browser DSH Plugin Radar — a userscript that marks plugins on GitHub and npm

Public API

No key, no registration, CORS open.

curl -s 'https://dshmarketplace.dev/api/v1/plugins?q=memory&limit=5'
Parameter
q Free-text search across name, summary and description
category One of the 14 category ids
limit 1–100, default 20
page 1-based

Each result carries both summaries, the resolved install command, the risk flags and the source repository:

{
  "fullName": "Anionex/dsh-vision-toolkit",
  "summary": "…",
  "summaryZh": "…",
  "stars": 128,
  "npmPackage": "dsh-vision-toolkit",
  "install": "dsh plugin --profile web add dsh-vision-toolkit",
  "installable": true,
  "riskFlags": ["install script"],
  "repoUrl": "https://github.com/Anionex/dsh-vision-toolkit",
  "url": "https://dshmarketplace.dev/plugins/anionex-dsh-vision-toolkit"
}

install is null rather than a placeholder when no command can work. A caller that runs whatever is in that field must never be handed something that fails — see the note on --profile below.

The whole catalogue in one request

curl -s 'https://dshmarketplace.dev/api/v1/index'

For clients that need to know which of a thousand repositories are plugins — a browser extension decorating a GitHub topic page cannot ask one at a time. Rows are positional to keep it small, about 113 KB and 22 KB over the wire, and the column names ship with the payload:

{
  "fields": ["fullName", "category", "install", "path", "npm"],
  "plugins": [
    ["Anionex/dsh-vision-toolkit", "vision", "dsh plugin --profile web add dsh-vision-toolkit", "/plugins/anionex-dsh-vision-toolkit", "dsh-vision-toolkit"]
  ]
}

path is null when a listing has no page of its own yet, and npm is null when the plugin publishes nowhere.

Two things about installing DSH plugins

Both cost real time to find, and neither is this project's doing.

--profile is mandatory. dsh plugin forwards to pnpm inside a profile directory, so dsh plugin add x exits with required option '--profile <name>' not specified and installs nothing. Every command this catalogue emits carries it.

github:owner/repo#subpath cannot work — pnpm reads everything after # as a git ref. That is why 44 monorepo plugins with no published npm package have no one-line install, and the listing says so instead of printing a command that fails.

Running it

pnpm install
cp .dev.vars.example .dev.vars     # Turso credentials, at minimum
pnpm dev                           # localhost:3177
pnpm build Must pass before any push
pnpm preview Build and run under workerd, as it deploys
pnpm tsx scripts/sync-github.ts Refresh GitHub metadata
pnpm tsx scripts/write-content.ts --limit 10 --images Generate detail pages
pnpm tsx scripts/promote.ts --limit 10 Move pages into the sitemap

Content generation talks to an OpenAI-shaped gateway of your choosing — IMAGE_API_BASE and VELOKEY_* in .dev.vars. Nothing in the Worker reads those; they are author-time only.

Push to main deploys to Cloudflare Workers in about 80 seconds.

Architecture

app/(en)/            English routes — root layout sets lang="en"
app/(zh)/zh/         Chinese routes — root layout sets lang="zh-Hans"
components/views/    The pages themselves, locale-parameterised, shared by both
lib/dict.ts          Every visible string, both languages
db/schema.ts         plugins, categories, plugin_stats, submissions
scripts/             Author-time jobs: seed, sync, write, promote

Next.js 16 on Cloudflare Workers via OpenNext, Turso for storage, Tailwind for styling. CLAUDE.md holds the engineering rules and STATUS.md the inventory and trap list; both are worth reading before a substantial change.

Two constraints shape more of this codebase than anything else:

  • The Worker size ceiling. Getting under it cost twenty dependencies and the entire auth middleware. Check the bundle before adding a package.
  • Markdown renders at author time, never at request time. marked and sanitize-html must not reach the Worker; sync writes *Html columns.

The Chinese is written, not translated

Two rules, applied to every string in lib/dict.ts:

Product and ecosystem nouns stay in English — DeepSeek Harness, DSH, topic, npm, Star, commit, agent, token, API — as do all commands, file names and config keys. Chinese developers search for these in English, and 线束 is a homophone that poisons the query.

Everything else is written the way a Chinese developer writes. 「装之前先看一眼」, not「安装前请仔细阅读」. No 让您 / 轻松 / 强大 / 赋能. Machine translation into lib/dict.ts is not accepted.

Contributing

Missing plugin, wrong category, bad summary — https://dshmarketplace.dev/submit, or open an issue. Submissions are reviewed by hand before they appear.

If you wrote the plugin and posted it on LINUX DO, include the thread and it can carry the verified badge.

Safety

Plugins are third-party code running with your agent's permissions. Listing here is not a security review. Risk flags — install script, terminal surface, requires credentials — are detected automatically and shown before any install command. Their absence proves nothing. The source repository is always linked; read it first.

Contact

  • Community — LINUX DO
  • Issues — GitHub Issues

Acknowledgements

  • LINUX DO — where the DSH ecosystem is actually discussed, and where this project is published and takes its feedback.
  • awesome-dsh-plugin (CC0-1.0) — the seed the catalogue grew from.
  • 9d8dev/directory (MIT) — the application scaffold this started from. See NOTICE.

License

MIT. Plugin metadata belongs to the respective repository owners under their own licenses.

Independent project, not affiliated with DeepSeek. DeepSeek and DeepSeek Harness are marks of their respective owners, used here only to describe what these plugins are for.

—/ 5

No ratings yet

Manifest verification required

Commit 07bcb36fc1c4

Community comments

No comments yet. Be the first to write one.

DSH HUB

A community index for DSH plugins. Not an official GitHub or DeepSeek AI product.

CommunityResourcesAPIAbout