DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Need Finder — DeepSeek Harness 插件(DSH Plugin)
← Plugins

dsh-need-finder

Need Finder

需求驱动的 dsh 插件发现和环境配方(“点菜,而不是逛超市”/插件界的 dotfiles):plugin_guide 将自然语言需求匹配到精选目录,并提供带评分的匹配明细、分类/标签筛选以及按类别的多样性;配方

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-need-finder@0.3.1
README兼容性版本

兼容性与来源证明

Need Finder 以 dsh-need-finder 发布,当前版本为 0.3.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.3.2stable
2026/9/11
0.3.1stable
2026/9/11
0.3.0stable
2026/9/11

相关插件

正在加载相关插件…

最新版
0.3.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
73 kB
文件数
11
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
78
最近提交
2026/9/11
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-need-finder — 需求型插件导购 (Requirement-driven plugin guide)

"点菜,不是逛超市。" 现有 DSH 插件市场都是按名称/分类浏览;本插件让 agent 直接听懂你的需求,从精选目录里语义匹配最合适的插件,给出匹配理由和安装命令。

Compatibility

Tool schemas are validated against the @deepseek-ai/dsh-tools value-schema DSL (compiled at plugin load). 0.3.1 fixes a schema violation that made the host abort the whole profile boot on DSH ≥ 0.1.0-rc.6 with unsupported JSON schema: schema.required is not supported by the value schema DSL. If you installed an affected version and your DSH no longer starts, upgrade to 0.3.1 (or remove the plugin from the profile) — no data is lost.

为什么需要它

  • 用户说的是任务("任务完成通知我"、"手机上看 DSH"、"抓取网页内容"),不是插件名。
  • plugin_guide 用本地语义评分(英文词 + 中文子串 + 分类词典)在 84 个精选插件(覆盖 14 个分类)中匹配,零网络、零 LLM 调用、零外部依赖。
  • 输出即"点菜单":插件名、分类、双语描述、匹配理由、dsh plugin add 安装命令。

安装

dsh plugin --profile <profile> add dsh-need-finder     # npm 发布后
# 或本地:dsh plugin --profile <profile> add <本目录>

用法(模型侧)

工具 plugin_guide:

参数说明
need(必填)自然语言需求,中英文皆可,如 notify me when a task finishes、抓取网页
limit(可选)返回条数 1-10,默认 5
category(可选)分类精确过滤(notify / memory / vision / dev / ui…)
tag(可选)标签子串过滤
diversify(可选)限制同分类条数(默认 false)
perCategory(可选)diversify 时每分类上限(默认 2)

结果附带 details:命中字段与权重的透明明细(name +3 / tags +2 / description +1 / category +2),模型可以解释"为什么推荐它"。

示例需求与命中分类:

需求命中分类
"任务完成时通知我" / "notify when done"notify
"记不住上下文,换个会话就忘了"memory
"在手机上远程看 DSH"ui / usage
"抓取网页/截图给 agent 看"vision
"多会话管理/状态切换"session
"检查插件安全性"dev

插件还会注入 plugin-guide:instructions 提示词段落,教 agent 在用户描述需求而非插件名时调用本工具。

目录

内置精选目录 lib/guide-data.json:84 个真实插件,从 awesome-dsh-plugin 的 1019 个条目按分类均匀采样生成,含双语描述与标签。可按需增删(纯数据文件,改完即生效)。

设计

  • 纯逻辑分离:lib/match.js 零依赖(分词/评分/排序),lib/guide-data.json 纯数据,lib/index.js 才是 Cordis 插件。
  • 评分:名称命中 +3、标签命中 +2、描述命中 +1;中文 2-gram 子串匹配;分类词典兜底。
  • 安全:无网络请求、无文件写入、无 secrets。

测试

node test/match.test.mjs

Recipes — 插件界的 dotfiles

从"装单个"到"装环境":recipe 工具内置 8 个社区配方(JSON:插件清单 + 安装顺序 + 配置说明),一键生成整套有序安装计划:

id套装
notify-suite通知全家桶
security-audit安全审计套装
remote-mobile移动远程套装
dev-tools开发效率套装
memory-set记忆与上下文套装
im-bridgeIM 桥接(三选一)
vision-lab视觉实验室
research-stack浏览器研究环境

recipe action=list 看全部;recipe action=search need="手机远程" 按需求找配方;recipe action=apply id=notify-suite 输出按依赖顺序排列的 dsh plugin add 命令(DAG 友好,可被工作流/编排引擎消费)。配方数据在 lib/recipes.json,可自行增删。

Relationship to dsh-recipe

This plugin bundles 8 curated recipes (guide-first). If you want a dedicated recipe tool (list/search/apply/compose custom environments), install dsh-recipe separately (dsh plugin add dsh-recipe). The two complement each other.

License

MIT

Roadmap

See ROADMAP.md — next five versions (v0.3.0 – v0.7.0): match transparency & filters, directory refresh, recipe solving, combo recommendations, personalisation.