dsh-skill-manager
Manifest validSkill Manager page in the DSH settings panel: browse system / user / workspace / preset skills, expand a skill to its file tree, view and edit files, import skills from a zip, and export or delete the
dsh-skill-manager
A DSH web plugin that adds a Skills page to the settings panel (opened from the sidebar-foot Settings trigger). It shows every skill the deployment can see, grouped into system / user / workspaces / preset tiers, and lets you manage them without touching the filesystem by hand:
- Browse — expand a skill to its directory file tree; system (bundled) skills are read-only, user and workspace skills are fully manageable.
- Edit — click a file to open a view/edit window and modify the skill's content directly.
- Import — upload a zip package to install skills into your user skills directory or any workspace (blank workspaces included, sorted last).
- Export — download any skill as a zip, read-only ones included.
- Delete — remove writable skills with a two-step confirmation.
Screenshots
The Skills page inside the settings panel:

The file editor window (click a file to open it):

Install
dsh plugin --profile web add https://github.com/AKS1st/dsh-skill-manager
dsh web # restart the web service for the profile change to take effect
Installs straight from the GitHub repository (pnpm git-source install).
How it works
The plugin has two parts that work together:
- Server side (runs inside the dsh service,
src/index.ts): reads the skills dsh already knows about and serves them to the page, and handles the file operations the page triggers — listing a skill's files, reading or saving a file, importing a zip, exporting a skill, and deleting a skill. Write and delete are only allowed for user and workspace skills; system skills (the ones dsh ships with) and preset-provided skills are read-only. - Browser side (the settings page,
src/client/): shows the catalog grouped into system / user / workspaces / preset sections. Workspaces and presets appear as collapsible groups (blank workspaces included, sorted last, as import targets). Clicking a skill expands its file tree; clicking a file opens an editor. The user section and every workspace heading have an Import button (zip upload); every skill row has Export (downloads a zip); writable rows also have Delete (two-step confirm). All styling uses dsh's theme tokens, so the page follows light/dark mode.
Everything is additive — no changes to dsh itself are needed.
Model Experience
- Token effects: the plugin adds no model-visible tokens. The page is a user-facing browser UI; it only reads the same skill catalog the model already sees, and file edits are user-initiated, not model actions.
- KV-cache: none.
Development
pnpm run check # tsc --noEmit
pnpm run build # tsc + tsdown (lib/index.js, lib/client.js, lib/invariant.js)
pnpm run test # vitest
The @deepseek-ai/* packages are declared as devDependencies; at runtime they
resolve from the dsh installation that loads the plugin. The client-bundle
build scaffold (tsdown.client.ts + build/web/src/platform.ts) is a
check-in snapshot of the harness's shared preset so the repo builds standalone.
Compatibility
Versions
| Latest version | Published | Size |
|---|---|---|
| 0.1.0 | — | — |
| 0.1.1 | — | — |
| 0.1.2 | — | — |
| 0.1.3 | — | — |
Similar plugins
by xiaoxianyu-office
DSH Skills 管理器:设置页系统/用户技能分类,用户技能开关/编辑/删除/新建。Skills manager for DeepSeek Harness: system/user skill management (toggle/edit/delete/create) in Settings.
★ 3
JavaScript
Aug 14, 2026
dsh plugin --profile web add dsh-skills-managerby jackmis0724
DSH Web GUI skill manager: browse, preview, import, add, and batch-delete user skills (dsh plugin)
★ 0
MIT
TypeScript
Aug 15, 2026
dsh plugin --profile web add @dsh-external/dsh-skill-managerby zhangzheng25
DeepSeek Harness plugin: skill management settings page. Browse/search agent skills, view SKILL.md details, and copy content/path directly from Settings → Skill Manager.
★ 0
MIT
JavaScript
Aug 16, 2026
dsh plugin --profile web add dsh-skills-managerView local Skills and edit automatic and /name invocation policies from DSH Web settings, with bundled and symbolic-link entries kept read-only.
★ 0
dsh plugin --profile web add dsh-skill-managerby z-col
DSH Skills 可视化管理器:在 DSH Web 界面可视化查看、编辑、创建、删除 Skills(用户级 ~/.dsh/skills 与项目级 .dsh/skills)
★ 3
TypeScript
Sep 8, 2026
dsh plugin --profile web add dsh-skills-managerby YTxue
DSH web plugin: skill manager in the Settings sidebar - list/enable/disable, folder batch import with conflict prompts, state-driven one-click DSH-spec check & auto-fix, system/project scope labels.
★ 11
MIT
JavaScript
Aug 14, 2026
dsh plugin --profile web add dsh-skill-manager-ytxue