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.

Skills Manager — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

@jiangdaoli/dsh-skills-manager

Skills Manager

Manage installed DeepSeek Harness skills: browse the full catalog in Settings (beyond the "/" picker), enable/disable without uninstalling, and delete into a restorable trash. Works on desktop and web.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Jiangdl0220/dsh-skills-manager#1e89d9a2d374cc71651899ffc013ab3d5ee25d37
READMECompatibilityVersions
说明技能管理列表

Compatibility and provenance

Skills Manager is published as @jiangdaoli/dsh-skills-manager and currently resolves to version 0.1.4. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/27/2026

Versions

0.1.4stable
8/27/2026
0.1.1stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.4
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/27/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

Related plugins

More verified plugins in ui-customization.

Deepseek Idesigndeepseek-idesigniPolloWork Design Studio and its curated design templates as a native DeepSeek Harness conversation view.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

dsh-skills-manager

在 DSH(DeepSeek Harness)的设置面板里管理已安装的技能:浏览完整技能目录(不再只有 / 命令入口)、搜索、停用/启用(无需卸载重装)、删除进可恢复的回收站。桌面端与 Web 端通用。

DSH 的技能只能在会话输入框用 / 命令查看,且没有删除/停用能力。这个插件在设置面板新增「技能管理」页,把技能目录变成可管理的列表。

截图

技能管理列表

功能

  • 完整技能列表:所有已安装技能(名称、描述、来源、位置、状态)一目了然,支持搜索过滤与分页浏览(每页条数可自定义:10/20/50/100 或一页全部)——不需要再靠 / 命令逐个翻。
  • 停用 / 启用:停用后技能从 / 命令列表隐藏,但文件保留,随时可重新启用(无需卸载重装)。
  • 删除(回收站):删除把技能目录移入 ~/.dsh/.skill-trash/,可一键恢复,误删不慌。
  • 彻底删除:回收站条目可彻底清除(不可恢复)。
  • 内置技能只读:随应用分发的 bundled 技能标记为只读,不可误删。

同时支持 DSH Desktop 与 dsh web:插件只依赖官方 DSH contract(typert / skills / fs / shell / client remote / slots / locale),不涉及任何桌面专用服务。

安装

dsh plugin --profile desktop add @jiangdaoli/dsh-skills-manager   # Desktop
# 或
dsh plugin --profile web add @jiangdaoli/dsh-skills-manager       # web

安装后重启 DSH,在 设置 → 技能管理 查看。

请从 npm 安装(上方的包名)。GitHub 仓库只包含源码,构建产物(lib/)在发布时由 CI 生成,从仓库直接安装会缺文件。从源码安装请先 pnpm install && pnpm build。

工作原理

操作实现
停用重命名 <技能目录>/SKILL.md → SKILL.md.disabled(技能文件系统 watcher 自动刷新,/ 列表立即隐藏)
启用反向重命名
删除移动到 ~/.dsh/.skill-trash/<name>-<ts>/ 并写入 .json 记录原始路径
恢复按记录移回原位置
彻底删除rm -rf 回收站条目

安全边界:所有变更路径都经过 fs.resolve + fs.contains 守卫,只允许操作 ~/.dsh/skills、~/.agents/skills 与回收站内的文件;内置(bundled)技能与运行时注册技能只读。

开发

pnpm install
pnpm build     # tsc 类型声明 + esbuild(lib/index.js host + lib/client.js 客户端 bundle)
pnpm typecheck
pnpm node test/core.test.mjs   # 核心逻辑测试(临时目录 + 假 fs/shell)

License

MIT