dsh-skill-manager
DeepSeek Harness (DSH) 的 Skill 管理插件——在 Web 设置里管理所有用户级 Skill:查看、启用/停用、编辑、新增、删除、改名。停用的 Skill 会从模型目录中排除(不再加载)。
- Stars
- 1
- Language
- JavaScript
- Created
- Aug 20, 2026
- Updated
- Aug 20, 2026
Introduction
dsh-skill-manager
A Skill management plugin for DeepSeek Harness (DSH) — manage all user-level Skills from the Web settings: view, enable/disable, edit, add, delete and rename. Disabled Skills are excluded from the model catalog (no longer loaded).

Features
- Skill list: go to Settings → "Skill Manager", lists all Skills under
$DSH_HOME/skills(name + description) - Click to expand / collapse: click anywhere on a row to expand details (Skill name + SKILL.md content), click again to collapse (input fields and buttons excluded)
- Enable / disable: one toggle per Skill, takes effect immediately, updates state locally without flicker
- Edit / rename: inline editing of name and SKILL.md content; renaming syncs the directory name
- Add / delete: inline form to create new Skills; delete has a confirmation step
- Disabled = not loaded: disabling adds
disable-model-invocation: trueto the SKILL.md frontmatter; DSH's skill-filesystem watcher picks it up and immediately excludes the Skill from the model catalog — no restart needed
Architecture
A single-package, two-half DSH bundle:
| Half | Entry | Role |
|---|---|---|
| Host | lib/index.js | skillManager Remote service: skillList / skillSet / skillGet / skillCreate / skillUpdate / skillDelete / skillRename, edits SKILL.md frontmatter |
| Client | lib/client.js | "Skill Manager" section in the settings panel (dsh.client bundle) |
Installation
dsh plugin --profile web add @wanghailong0419/dsh-skill-manager
dsh web # restart to take effect
Local development / unpublished
dsh plugin --profile web add file:/path/to/dsh-skill-manager
dsh web
Upgrade / Remove
dsh plugin --profile web update @wanghailong0419/dsh-skill-manager
dsh plugin --profile web remove @wanghailong0419/dsh-skill-manager
Usage
- Start
dsh web, open Settings → Skill Manager - The list shows each Skill: status dot (green = enabled / gray = disabled), name, description
- Toggle enable/disable with the switch on the right
- Click a row to expand details: view Skill name and SKILL.md content, edit or delete
- Add: click "Add Skill", fill in the name and content inline
Disable effect: adds
disable-model-invocation: trueto the SKILL.md frontmatter. DSH's skill-filesystem provider excludes the Skill from the model catalog and loader (watcher auto-refreshes, no restart needed).
How It Works
skillList: scans$DSH_HOME/skills/<name>/SKILL.md, parsesdescriptionanddisable-model-invocationfrom frontmatterskillGet: reads the full SKILL.md content of a single SkillskillSet: text-level frontmatter editing (preserves existing fields and formatting such asname/description/origin), adds/removesdisable-model-invocation: trueskillCreate/skillUpdate: creates a new SKILL.md or replaces the full contentskillRename: renames the Skill directory and syncs thenamefield in frontmatterskillDelete: deletes the entire Skill directory- Idempotent: repeated toggles never double-modify
License
MIT