SkillHub

August 28, 2026 · View on GitHub

中文 | English

An AI Skills community optimized for users in China. This repository publishes three things:

  • Open API docs and runnable examples (docs/)
  • DeepSeek Harness plugin (dsh-plugin/)
  • Official SkillHub Skills (skills/)

Product site: skillhub.cn

What is SkillHub

SkillHub aggregates globally synced and locally published Skills, and provides security certification, quality evaluation, enterprise publishing, and organization skill libraries so agents can reliably get trusted capabilities.

It is built on syncing high-quality Skills worldwide, co-creating with local authors, and optimizing download experience in China. The catalog currently includes 130,000+ Skills, 20,000+ enterprise-published Skills, and 500+ merchants with listings on the platform.

CapabilityWhat it means
Global sync and local publishingContinuously syncs high-quality Skills worldwide (for example from ClawHub) and fills in Chinese descriptions, install paths, and local context. Creators, teams, and companies can also publish their own Skills — the platform is not only a mirror
Fast downloads in ChinaDownload paths are optimized for networks in China, reducing failed installs, slow downloads, and unstable dependencies
Dual security certificationSkills on the platform go through dual security checks. Viewable reports cover prompt poisoning, malware, data-leak risk, and supply-chain risk
TRACE evaluationTRACE defines how a Skill is judged and produces a review you can cite. Rankings, recency, and tags help you choose — not download count alone
Enterprise publishing and private librariesOrganizations can publish externally with verified (blue V) identity, or keep internal prompts, workflows, and tool recipes in a team-only skill library
Soul.md and skill packsSoul.md defines how an agent speaks, acts, and collaborates; curated industry skill packs add reusable expertise on top

Developers can share Skills here; agents and applications can find and use them. See skillhub.cn/about for the full product overview. Featured capabilities: skillhub.cn/#featured.

Screenshots

DeepSeek Harness Plugin marketplace

Search Skills in conversation

Publish a Skill on the web

Publish a Skill through an Agent

Repository layout

PathWhat it is
docs/Open API documentation, onboarding notes, and runnable examples
dsh-plugin/SkillHub plugin for DeepSeek Harness (npm: @tencent/skillhub)
skills/Official SkillHub Skills

Open API

The SkillHub CLI already covers discovery, install, publishing, and validation in the terminal. The HTTP + JSON APIs exist for product integrations the CLI cannot cover: embedding search and install in agents, IDEs, browser extensions, or enterprise portals; building your own skill marketplace; or syncing and governing Skills on the server.

What you wantWhat the API covers
Skill search in your productSearch, categories, rankings, recommendations, and details
Show and install a SkillFiles, versions, diffs, and download
Judge reliabilityEvaluation, test results, signing, and verification
Publish and governPublishing, import, versions, org-private Skills
Run inside an agentSandbox, sessions, streaming, and file handling

Quick start:

export SKILLHUB_BASE_URL='https://api.skillhub.cn'

curl "$SKILLHUB_BASE_URL/api/skills?sortBy=downloads&order=desc&pageSize=5"
curl "$SKILLHUB_BASE_URL/api/v1/skills/find-skill-skillhub"

Full guide, endpoint index, and conventions: docs/README.md and docs/api/README.md. Runnable examples (Shell / Node.js / Python): docs/examples/

bash docs/examples/curl/quickstart.sh
node docs/examples/node/list-skills.mjs
python3 docs/examples/python/list_skills.py

Public APIs can be used from the docs as-is. Org-internal Skills require membership. For high volume, sandbox, or model-heavy workloads, contact us before production using docs/apply.md.

DeepSeek Harness plugin

dsh-plugin/ lets you search SkillHub skills in a DeepSeek Harness conversation, open details, and install them into the local skills directory. It also supports browsing by category, version selection, uninstall, a sidebar plugin marketplace, and in-chat search / one-click install of DSH plugins.

Install from GitHub:

dsh plugin --profile web add github:Tencent/skillhub#path:dsh-plugin

You can also install from npm (prebuilt): dsh plugin --profile web add @tencent/skillhub.

Local development:

dsh plugin --profile web add /absolute/path/to/skillhub/dsh-plugin

Then restart dsh web (bind 127.0.0.1) and hard-refresh the browser. Use the scoped package @tencent/skillhub; the unscoped npm name skillhub is a different project.

Features, configuration, development, and troubleshooting: dsh-plugin/README.md.

Official Skills

skills/ contains Skills maintained by the SkillHub team. Use them directly with an Agent, or install the same Skills from the SkillHub catalog.

SkillWhat it does
find-skill-skillhubSearch and recommend Skills on SkillHub by keyword and category
skillhub-trace-evaluatorEvaluate a Skill package with the TRACE dimensions (Trust / Reliability / Adaptability / Convention / Effectiveness)

Copy the skill directory into a path your Agent can discover, or search the same name on skillhub.cn.

Contributing and support

git clone https://github.com/Tencent/skillhub.git

License

Released under the MIT License.

Contact: skillhub@tencent.com