DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Skill Matcher — DSH Plugin for DeepSeek Harness
← Plugins
S

dsh-skill-matcher

Skill Matcher

Skill & Expert Matcher for DeepSeek Harness (DSH): reads the user's need and auto-matches the most relevant local skill, marketplace skill, expert, or open-source entry — Top-N ranking, neutral, multi-harness discovery. Functionally identical to the WorkBuddy `skill-matcher` skill.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:axel286137079-dot/dsh-skill-matcher#8f6d52b63f69f6cc248de4b844ceff3d52b098ec
READMECompatibilityVersions

Compatibility and provenance

Skill Matcher is published as dsh-skill-matcher and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/1/2026

Versions

0.1.0stable
9/1/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/1/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

dsh-skill-matcher — dsh 插件版

技能与专家匹配器 的 DeepSeek Harness 插件形态(Cordis 插件)。本目录是 skill-matcher 项目的 plugin/ 子目录;功能与 SKILL.md 版完全一致,只是换了一层插件外壳。

它提供什么

  • skill_matcher_scan:扫描本机技能/专家(多环境)+ 联网开源目录,构建并缓存索引
  • skill_matcher_match(query, topN?, includeExperts?):读懂需求,返回 Top-N 推荐(含匹配度、命中关键词、安装方式)
  • skill_matcher_list(scope?):浏览本机已装/市场/开源目录
  • 同时在 system prompt 注入引导段:当用户问「该用哪个技能/专家」时优先调用 skill_matcher_match

核心引擎 lib/engine.js 是 bin/sync_index.py 的 JS 移植:环境探测 → SKILL.md frontmatter/plugin.json 解析 → 远程开源拉取 → 优先级合并 → 关键词召回。内置 13 条开源种子,离线可用;缓存写入 ~/.dsh/dsh-skill-matcher/cache.json(24h 复用)。

安装

推荐方式:在项目根目录运行一键安装器(自动检测并安装到 dsh profile):

bash ../install.sh --dsh-only

或手动(dsh 支持 file: 插件):

dsh plugin --profile web add file:<本项目绝对路径>/plugin

装完重启 dsh web 生效:launchctl kickstart -k gui/$(id -u)/com.deepseek.harness.web

若 dsh plugin add 因 profile 的 pnpm 供应链策略(minimumReleaseAge 名单过期)失败,用根目录 install.sh(会直接写入 profile 的 package.json + node_modules,并自动备份)。

目录结构

plugin/
├── package.json        # 含 dsh.bundle.patch 清单
├── cordis.patch.yml    # bundle patch:插件行插入 web profile
└── lib/
    ├── index.js        # Cordis 入口:注册工具 + 注入引导
    ├── tools.js        # 三个 defineTool 定义
    └── engine.js       # 核心索引引擎(纯 JS 无依赖)

合规

  • 纯本地扫描 + 仅拉取 JSON 目录数据,不执行任何远程代码
  • 离线可用(内置开源种子)
  • 推荐排序中立,只由需求匹配度决定

License

MIT