DSH Plugins Marketplace

DSH Plugins

Plugins

/

dsh-plugin-skills-manager

g

dsh-plugin-skills-manager

Manifest valid★ 1

DSH Desktop Skill Management Console: Browse/Search/Install all Agent Skills, built-in Skill Marketplace (Anthropic Official + Superpowers + ClawdHub + Any GitHub Repository), automatic Chinese translation of English descriptions, Trash and Update Check

UI (client)hasBundlePatch

dsh-plugin-skills-manager

中文 | English

DSH Desktop 的技能管理台插件 —— 在 DSH 界面内浏览、搜索、安装你的全部 Agent Skills,内置技能市场与中文翻译。

简介

DSH Desktop 支持在 ~/.dsh/skills 放置大量 Agent Skills(SKILL.md 格式),但技能一多就难以管理。本插件在 DSH 设置页提供一个完整的「技能管理台」:

  • 📦 已安装:实时浏览全部技能,按分类筛选、关键词搜索,查看完整简介(英文技能自动显示中文翻译)、版本、依赖与目录结构
  • 🛒 技能市场:分类筛选 + 分页(每页 20/50/100/全部),一键浏览/搜索/安装
  • ⚡ 对话框技能选择器:输入框旁 ⚡ 按钮弹出技能列表,点击即插入 /技能名 调用
  • 📥 导入:从 Claude Code / Codex / OpenCode 或任意本机目录把技能复制进 ~/.dsh/skills
  • 📦 批量安装:一次粘贴多个 GitHub 仓库或 npm 包名(空格/逗号/分号分隔),自动识别包内全部技能
  • 📋 一键调用:复制「让 Agent 加载」提示词,粘贴到对话即可按该技能执行
  • 🗑 一键卸载:界面直接卸载技能,默认移入回收目录防误删
  • 🗑 回收站:已卸载技能可找回或彻底删除
  • 🔔 更新检查:自动定时(每 6 小时)+ 手动检查技能是否有新版本,红点提示 + 卡片「可更新」徽章 + 一键更新(GitHub 源用 Git blob SHA 对比,零额外配额;ClawdHub 源对比 zip 内 SKILL.md)
  • 🔗 来源绑定:手动放置的技能可绑定到 GitHub 仓库(owner/repo[/子路径]),绑定后同样参与更新检查;市场安装的技能自动记录来源;支持按来源批量绑定(市场浏览页一键绑定全部同名技能)
  • 🌐 中文翻译:英文简介自动机器翻译成中文(多翻译源回退 + 本地缓存),也可在 translations/zh.json 手工维护
  • 🔄 刷新 / 自愈:顶部「🔄 刷新」重新扫描;页面轮询索引代次,过期自动刷新,杜绝旧页面残留

截图

安装

⚠️ 必须在 DSH Desktop 完全退出后执行安装脚本(脚本会强制检查)。

git clone https://github.com/gzsxy/dsh-plugin-skills-manager.git
cd dsh-plugin-skills-manager
bash install.sh

启动 DSH Desktop 后:设置 → 技能管理台。

卸载:bash uninstall.sh。

技能市场

源说明
Anthropic 官方技能库anthropics/skills,Git Trees API + 10 分钟缓存,配额消耗极低;支持 GITHUB_TOKEN 提升限额
Superpowers 技能库obra/superpowers 的 skills/ 目录
ClawdHub 社区市场clawdhub.com 的 /api/v1/search(limit≤100)与 /api/v1/download
自定义源在「任意 GitHub 仓库」中浏览后点「💾 存为常驻源」,持久化于 .skills-manager/sources.json,可随时删除

安装管线:下载(tar/zip)→ 路径安全校验(拒绝 ../、绝对路径)→ SKILL.md 有效性校验 → 写入 ~/.dsh/skills/<name> → 记录来源(.skills-manager/provenance.json)。同名技能会询问是否覆盖。

API

路由说明
GET /api/skills-manager/index已安装技能索引(含 description_zh、origin)
GET /api/skills-manager/dashboard管理台页面
GET /api/skills-manager/market/sources市场源列表
GET /api/skills-manager/market/list?source=&path=&q=浏览 GitHub 源目录
GET /api/skills-manager/market/search?source=clawdhub&q=ClawdHub 搜索
POST /api/skills-manager/market/install安装技能(参数见源码注释)
POST /api/skills-manager/uninstall卸载技能 {name},默认移入回收目录;{name, permanent:true} 彻底删除
POST /api/skills-manager/market/sources/add添加自定义源 {name, repo, path}
POST /api/skills-manager/market/sources/remove删除自定义源 {id}(仅 custom- 开头可删)
GET /api/skills-manager/trash回收站列表
POST /api/skills-manager/trash/restore找回 {entry}
POST /api/skills-manager/trash/delete彻底删除 {entry}
GET /api/skills-manager/update/status更新检查缓存状态
POST /api/skills-manager/update/check立即执行一次更新检查
POST /api/skills-manager/update/apply一键更新 {name}(从来源重新安装并覆盖)
POST /api/skills-manager/bind手动技能绑定来源 {name, repo, subPath?},参与更新检查
POST /api/skills-manager/unbind解除绑定 {name}
POST /api/skills-manager/bind-batch批量绑定 {repo, rootPath?, ref?}:本地已安装且仓库中存在同名目录的技能全部绑定
POST /api/skills-manager/uninstall卸载技能 {name},默认移入回收目录;{name, permanent:true} 彻底删除

架构

├── package.json          # dsh.bundle.patch + dsh.client 声明
├── cordis.patch.yml      # cordis 插件挂载
├── index.js              # 服务端:技能扫描 + 翻译合并 + 市场 API(cordis 插件,inject webServer)
├── client.js             # 浏览器端:设置页注册(ModuleLoader + slots,inject: ["slots"])
├── dashboard/index.html  # 管理台前端(无框架单文件)
├── translations/zh.json  # 中文翻译表
└── install.sh / uninstall.sh

迭代开发

install.sh 以 file: 拷贝方式安装,并自动递增 patch 版本——这是有意为之:pnpm 对 file: 依赖在版本不变时会跳过文件刷新。

# 修改源码后:
# 1) 完全退出 DSH Desktop
# 2) bash install.sh
# 3) 启动 DSH Desktop

补充中文翻译:编辑 translations/zh.json 后刷新页面即生效(无需重装)。

安全说明

  • 本插件安装后会以你的用户权限运行,请只从可信来源安装技能
  • 市场安装会校验压缩包路径安全并验证 SKILL.md 结构,但不审核技能内容本身
  • 安装/卸载必须退出 DSH:脚本会在 DSH 运行时拒绝执行,避免 profile 竞态导致启动异常

English

A DSH Desktop plugin providing a full skill manager: browse/search all installed Agent Skills in ~/.dsh/skills with automatic Chinese translation of English descriptions, plus a built-in skill marketplace (Anthropic official skills, ClawdHub community market, any GitHub repo) with safe install (tarball/zip path validation + SKILL.md verification + provenance tracking). Install with bash install.sh while DSH Desktop is fully quit; the entry appears under Settings → 技能管理台.

License

MIT

Comments

Loading…

From the same category

archify

by tt-a1i

Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export.

Workflow & AutomationTools & CapabilitiesDevelopment & InfrastructureManifest valid

★ 71.7k

↓ 3.5k/wk

MIT

JavaScript

Sep 25, 2026

dsh plugin --profile agent add @tt-a1i/archify-dsh

DeepSeek Harness plugin for Reactive Resume: bridges your resumes and job applications into a Harness session over MCP.

Tools & CapabilitiesManifest valid

★ 41.7k

↓ 236/wk

MIT

Aug 24, 2026

dsh plugin --profile web add dsh-plugin-reactive-resume

by Tencent

Open-source LLM knowledge platform: turn raw documents into a queryable RAG, an autonomous reasoning agent, and a self-maintaining Wiki.

Development & InfrastructureTools & CapabilitiesManifest valid

★ 30.1k

↓ 838/wk

NOASSERTION

Go

Sep 25, 2026

dsh plugin --profile web add @wxg-prc-cpg/dsh-weknora

by anywhere-labs

为 DeepSeek Harness (DSH) 插件生态打造的现代化桌面端解决方案。万物皆「插件」,桌面本身也是「插件」。

Tools & CapabilitiesManifest valid

★ 29k

↓ 167/wk

MIT

TypeScript

Sep 25, 2026

dsh plugin --profile web add dsh-plugin-desktop

deepseek-harness-desktop is a interface plugin for DeepSeek Harness. See the repository documentation for its documented capabilities.

Tools & CapabilitiesUI & Experience

★ 28.6k

MIT

Index only — not installable

by titanwings

Distilly — Distill how they think into reusable Skills for any Agent or Bot. Formerly Colleague Skill(原同事 Skill).

Tools & Capabilities

★ 25k

MIT

TypeScript

Sep 22, 2026

Index only — not installable