Skill marketplace with unified search across SkillHub and ClawHub, in-app README preview, one-click install and uninstall, an installed-skill list, and a chat-input skill picker.
Install
# from npm (prebuilt)
dsh plugin --profile web add dsh-skill-market
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:pn1024/dsh-skill-market
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time — pnpm blocks those until you allow them, so an install can stop with ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED or ERR_PNPM_IGNORED_BUILDS; dsh prints the exact key to add under allowBuilds in your profile’s pnpm-workspace.yaml, and the install works on the next run. Allowing a build is a trust decision: only install sources you trust, and pin a commit (github:owner/repo#sha).
README
简体中文 | English
A skill marketplace plugin for DeepSeek Harness — aggregated search across SkillHub + ClawHub, in-app README preview, one-click install/uninstall, a chat-input skill picker, and a sidebar skill hub panel.
Features
- Skill search: aggregated results from SkillHub (Tencent Cloud China mirror, fast direct connection) and ClawHub (the official OpenClaw source); supports Chinese queries
- One-click install/uninstall: installs into
$DSH_HOME/skills/, auto-discovered by skill-filesystem - In-app README preview: Markdown rendered natively in the detail view, no external redirects
- Star / download stats: stars, downloads and installs shown on cards and in the detail view
- Skill hub panel: sidebar entry → fullscreen overlay for search, install, browse and inspect
- Chat-input picker: a "⚡ Skills" button in the input bar for quick insertion of
/skill-name - Source failover: falls back to ClawHub when SkillHub fails, and vice versa
Screenshots
| Marketplace | Skill detail |
|---|---|
Chat-input skill picker:
Installation
dsh plugin --profile web add "github:pn1024/dsh-skill-market"
Or install from a local path:
dsh plugin --profile web add "/path/to/dsh-skill-market"
Architecture
dsh-skill-market/
├── package.json # dsh.bundle.patch + dsh.client declarations
├── cordis.patch.yml # plugin registration + config
├── src/
│ ├── index.js # Host side: RPC intercept (skill-hub/*)
│ └── client.js # Browser side: UI slot registration (sidebar/overlay/input)
├── assets/ # brand assets (logo icons, etc.)
├── docs/screenshots/ # UI screenshots
├── LICENSE
└── README.md
Host-side RPC endpoints
| Endpoint | Description |
|---|---|
skill-hub/search |
Search skills (SkillHub + ClawHub aggregated) |
skill-hub/detail |
Skill detail (README, version, stats) |
skill-hub/installed |
List locally installed skills |
skill-hub/install |
Download and install a skill locally |
skill-hub/uninstall |
Uninstall a local skill |
skill-hub/readme |
Read an installed skill's README/SKILL.md |
Browser-side UI slots
| Slot | Description |
|---|---|
sidebar.footer.action |
"Skill Hub" entry button in the sidebar |
shell.overlay |
Fullscreen skill hub panel |
conversation.input.left |
"⚡ Skills" quick picker in the chat input bar |
Data sources
| Platform | API base | Notes |
|---|---|---|
| SkillHub | https://api.skillhub.tencent.com |
Tencent Cloud China mirror, fast direct connection, Chinese search |
| ClawHub | https://clawhub.com |
Official OpenClaw skill community, globally available |
Configuration
Configurable in cordis.patch.yml:
- insert:
- id: dsh-skill-market
name: 'dsh-skill-market'
config:
skillhubApiBase: https://api.skillhub.tencent.com
clawhubApiBase: https://clawhub.com
localSkillsDir: '' # empty = use $DSH_HOME/skills
preferSkillHub: true # prefer SkillHub for users in China
License
MIT
Links
More in this category
zhu1090093659/dsh-web#packages/dsh-plugin-manager★ 7488
Plugin manager tab in DSH Settings → Plugins: install from npm or git with progress, enable/disable switches effective at next startup, conflict reconciliation with undo, and one-click hand-off to a fix session.
dsh-market/dsh-market★ 3781
Browse, search and install community plugins from inside DeepSeek Harness settings, with category filters, one-click updates, enable/disable, theme switching and configuration backup.
bradeGithub/DSH-Plugins-Marketplace★ 164
GitHub-topic-driven plugin & skill marketplace: a Settings page that browses the auto-collected registry (the whole dsh-plugin topic plus the skills index, CI-refreshed every 2 hours) with one-click install, type detection, install-script and host-shadow-dependency safety confirmations, env-key management, and the STANDARD.md recognition spec.
kingOfSoySauce/dsh-skin-market★ 136
Native skin marketplace and lifecycle manager that discovers community skins, displays previews and compatibility status, and provides verified one-click or manual installation paths.
awesome-dsh-plugin/dsh-find-plugin★ 133
Find plugins without leaving the agent: search this curated registry by keyword or category, with ready-to-run install commands.
Sanqi-normal/dsh-webui-market-plugin★ 105
In-harness plugin market for the dsh web GUI: browse the awesome-dsh-plugin.com catalog and install/uninstall plugins into a profile from Settings → Plugins → Plugin Market.
Community comments
Comments are public GitHub Discussions. Loading them connects to GitHub and Giscus; a GitHub account is required to post.