DeepSeek Harness plugin

dsh-skill-manager-jackmis0

dsh web GUI skill manager: browse, preview, import, add, and delete user skills from a settings page

Jump to install

Source facts

Repository
jackmis0724/dsh-skill-manager
Latest update
Aug 15, 2026
Category
Tools & Capabilities
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/jackmis0724/dsh-skill-manager
Plugin: dsh-skill-manager-jackmis0
Author: jackmis0724

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-skill-manager

dsh Web GUI 的技能管理页:浏览当前会话技能目录、预览技能内容、从 GitHub/链接/本地文件导入、新建技能、单个与批量删除用户技能。

  • 入口:设置面板 →「技能管理」
  • Host 半区:/api/dsh-skill-manager/*(loopback-only,与 dsh-ssh 同模式),通过 harness skills 注册表与用户技能目录读写
  • 只读保护:仅 $DSH_HOME/skills$DSH_AGENTS_HOME/skills 内的条目可删除;符号链接条目只移除链接,源文件保留
  • 沙箱:所有文件操作按当前会话沙箱策略执行

安装

dsh plugin --profile web add https://github.com/jackmis0724/dsh-skill-manager

或手动:在 ~/.dsh/profiles/web/package.jsondependencies 加入

"@dsh-external/dsh-skill-manager": "link:/home/Jack/project/dsh-skill-manager"

并把 @dsh-external/dsh-skill-manager 加进 dsh.profile.bundles,然后 pnpm install 并重启 dsh web

构建

pnpm install
pnpm run build   # 产出 lib/index.js(Host)与 lib/client.js(Client)
pnpm run test

Known Limitations

  • 链接类技能(~/.dsh/skills 中的符号链接)删除时仅移除链接本身,不触碰链接目标(如 ~/.hermes/skills)。
  • 会话 cwd 无 git 根时,上游 skill-filesystem 会把 cwd 当项目根,导致用户技能被标成 project-dsh;本插件按物理路径判定归属,不受影响。