DshMarketPlace
dshmarketplace
Bilingual directory of DeepSeek Harness (DSH) plugins — 1,004 listings, written detail pages, public API. Next.js on Cloudflare Workers.
- Stars
- 0
- Language
- TypeScript
- Created
- Aug 16, 2026
- Updated
- Aug 17, 2026
Introduction
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
The site, the CLI and the in-DSH plugin all read /api/v1/plugins, 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 |
| In DSH | dshmarketplace-plugin — /store inside the harness |
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.
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.
markedandsanitize-htmlmust not reach the Worker; sync writes*Htmlcolumns.
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.