DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Plugin Skill Palette — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
P

dsh-plugin-skill-palette

Plugin Skill Palette

DeepSeek Harness (DSH) 的增强技能插件:模糊斜杠搜索、交互式多技能面板和预设捆绑包

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

npx -y @deepseek-ai/dsh plugin --profile web add github:qyjgg/dsh-plugin-skill-palette#e5561b1761b868849b44e0780cabe138b1e48d1e
README兼容性版本

兼容性与来源证明

Plugin Skill Palette 以 dsh-plugin-skill-palette 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/2

版本

1.0.0stable
2026/9/2

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/14
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Better Sidebardsh-better-sidebarDSH web 插件:类似 VSCode 的右侧边栏(资源管理器 / 编辑器 / 终端 / git / 浏览器),按对话会话隔离。提供服务,供其他插件注册侧边栏标签页和文件查看器。Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Dream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每款皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。在原生 DSH Web 和第三方桌面客户端(DSH Desktop)中运行:8 款原创高端主题、玻璃材质、壁纸 2.0

README

dsh-plugin-skill-palette

English | 简体中文

⚡ DeepSeek Harness (DSH) Enhanced Skill Plugin: Tiered weighted fuzzy search for / commands and seamless multi-skill inline selection.


🎯 Key Problems Solved

  1. Native / Skill Trigger Lacks Fuzzy Search:

    • DSH native skill matching only supports startsWith prefix filtering. Typing /review fails to match code-review, and typing /test cannot find tdd by description keywords.
    • Solution: Built-in 4-tier weighted fuzzy matching engine (Exact prefix > Subsequence & word boundaries > Description full-text keywords > Subsequence fuzzy).
  2. Chained Multi-Skill Selection:

    • Complex development tasks require combining multiple skills (e.g. Caveman terse style + TDD test-first cycle + Code Review standards).
    • Solution: Picking a skill inserts /<skill> and preserves input focus. Typing / immediately opens fuzzy search for the next skill, enabling rapid multi-skill composition like /caveman /tdd /code-review .

📦 Installation & Setup

Option 1: Install via DSH CLI (Recommended)

dsh plugin --profile web add dsh-plugin-skill-palette

Option 2: Local Development & Build

cd dsh-plugin-skill-palette
npm install
npm run build

Then configure in package.json of your profile:

{
  "dependencies": {
    "dsh-plugin-skill-palette": "file:E:/work/dsh-plugin-skill-palette"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "...",
        "dsh-plugin-skill-palette"
      ]
    }
  }
}

🖥️ Features

1. Tiered Weighted Fuzzy Search

Type / after any whitespace in composer:

  • /cr or /review matches code-review and caveman-review
  • /test matches tdd (via description)
  • /git matches git-guardrails-claude-code and caveman-commit

2. Seamless Inline Multi-Skill Chaining

  • Pick a skill from dropdown menu via Enter or mouse click;
  • Trailing space is auto-appended; type / again to immediately pick the second skill;
  • On submission, DSH host pre-step hook extracts all /name tokens and injects <skill_content> for every selected skill.

📄 License

MIT License