DeepSeek Harness plugin

dsh-skill-manager-yiweih

DSH web plugin: install, list, and remove skills from Settings, in global or project scope.

Jump to install

Source facts

Repository
Yi-Wei-H/dsh-skill-manager
Latest update
Aug 15, 2026
Category
Plugin Markets & Managers
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/Yi-Wei-H/dsh-skill-manager
Plugin: dsh-skill-manager-yiweih
Author: Yi-Wei-H

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

dsh-skill-manager

DSH web 插件:在「设置」中新增 技能 (Skills) 页面,支持选择安装范围(全局 / 项目)、 上传 .zip 技能包安装、查看已安装技能、删除技能。

限制:不能够预览具体skill内容;只允许上传.zip一种形式

安装

dsh plugin --profile web add github:Yi-Wei-H/dsh-skill-manager

装完后重启服务生效,设置菜单里会出现「技能」入口。

使用

1. 打开设置 → 技能 2. 页面顶部选择范围: - 项目 → 安装到 <项目根>/.dsh/skills(项目根 = 启动目录向上找最近的 .git,找不到就是启动目录本身) - 全局 → 安装到 ~/.dsh/skills(或 $DSH_HOME/skills) 3. 点击/拖拽选择 .zip 技能包 → 安装 4. 已安装列表可查看名称、描述、路径,并可删除

技能包格式(与 DSH 官方技能一致,安装后统一为 <skills>/<技能名>/SKILL.md):

  • 目录型:zip 内为 <技能名>/SKILL.mdSKILL.md 需带 YAML frontmatter:namedescription)→ 原样安装为技能文件夹
  • 扁平型:zip 根部直接是 SKILL.md 或单个 <名字>.md → 自动按 frontmatter 名称包一层技能文件夹(<名字>.md 会改名为 SKILL.md
  • 外层包装目录(不含 SKILL.md)自动剥掉;__MACOSX.DS_Store 等垃圾条目自动跳过

文件说明

文件作用
lib/index.jshost 端:注册 /api/dsh-skill-manager/* 三个路由(list/install/uninstall),解压 zip、写入技能目录(零依赖,只用 Node 内置模块,作为 link: 安装也能正常解析)
lib/client.js浏览器端:设置页「技能」分区 UI(全局/项目切换 + 上传 + 列表)
cordis.patch.ymlbundle 补丁:向 profile 插入 skill-manager
package.json声明 dsh.bundle.patchdsh.client(web 平台)

卸载

dsh plugin --profile web remove dsh-skill-manager

然后重启服务;