DeepSeek Harness plugin

dsh-skill-manager-sulfide2085

DSH 设置页技能管理器:展示全部已加载 skill(含调用策略/来源/状态),支持启用/停用热开关

Jump to install

Source facts

Repository
sulfide2085/dsh-skill-manager
Latest update
Aug 14, 2026
Category
Plugin Markets & Managers
GitHub stars
9
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/sulfide2085/dsh-skill-manager
Plugin: dsh-skill-manager-sulfide2085
Author: sulfide2085

Check the source files

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

File explorer4 files
README.en.mdSource · read only
README language

dsh-skill-manager

English · 中文

> One panel to manage every skill across DSH, Codex and Claude — hot-toggle, discover & install from GitHub skill marketplaces, or import from a local ZIP, all live without restart.

![DSH skill manager preview](docs/screenshots/social-preview.jpg)

What is this

A skill management plugin for DSH (DeepSeek Harness). Skill files live in many places: DSH's own skill directory, Codex's ~/.codex/skills, Claude's ~/.claude/skills, and skill repositories on GitHub. This plugin adds a "Skill Manager" section to the Settings page, bringing all these sources into one panel for unified viewing and management.

Featured in the GitHub dsh-plugin topic.

Features

  • Skill list: merges registry (enabled) and disk (disabled) entries, grouped by source (DeepSeek Harness / Agents / Project / Codex / Claude), showing name, description, source, invocation policy and enabled state; skills installed from GitHub carry a source label.
  • Toggle: toggling DSH / Agents skills renames SKILL.mdSKILL.md.disabled; the filesystem watcher picks it up in ~200ms, and DSH, Codex and Claude all follow this convention. Skills in codex / claude directories are disabled by default and only enter the official /skills registry after explicit enablement.
  • Directory-level toggle: the switch on a group header toggles the whole source directory at once.
  • ZIP install: pick a local .zip (≤64 MiB); it is extracted, skills inside are discovered automatically (SKILL.md bundles or flat .md), deduplicated, installed into ~/.dsh/skills and enabled; an archive without skills is rejected with an error.
  • GitHub skill search: add a repository (owner / name / branch; branch is optional and falls back to main→master), then search skills across all added repositories by keyword and install them individually; a separate search box filters locally installed skills.
  • Refresh after install: the list refreshes automatically after ZIP / repo installs, with a manual refresh button next to the title; click a card to expand the full skill content.

![Skill manager UI](docs/screenshots/skill-manager-v2.png)

File layout

FileRole
lib/index.jshost side: skillManager remote service (list / content / setEnabled / installZip / repo APIs)
lib/skill-files.jsdisk conventions: root scanning, frontmatter parsing, .disabled toggling
lib/skill-zip.jsZIP parsing/extraction (store+deflate), CRC32 checks, entry-name safety checks, in-archive skill discovery and install
lib/skill-repo.jsGitHub archive downloads (size cap / timeout / retry / cache / mirror base), repo skill scanning, per-directory install
lib/client.jsbrowser side: hand-written bundle registering the settings.section slot (id: skill-manager, order: 17)

Install

dsh plugin --profile web add .   # run inside the plugin directory

Restart DSH Web after code changes (the host manifest is registered at gateway startup; new endpoints 404 until then).

On Windows the plugin depends on zod and @deepseek-ai/dsh-typert-protocol, which ship with the DSH install tree. The plugin's node_modules is a junction pointing at <dsh install dir>/node_modules. Recreate it if removed:

New-Item -ItemType Junction -Path "node_modules" -Target "C:\Users\<you>\AppData\Roaming\npm\node_modules\@deepseek-ai\dsh\node_modules"

Tests

Built on Node's node:test with no extra dependencies — 100 test cases:

npm test

Coverage: skill-zip (parsing/extraction/safety checks/discovery/conflicts/corrupt archives), skill-repo (ref validation/branch fallback/cache/retry/install), index (host remote methods + state persistence), client (bundle loading/descriptors/face round-trips).

Limitations

  • Skills from bundled / runtime sources have no disk files and cannot be edited; their toggles are disabled.
  • Disabling only renames files; content is never deleted and can always be restored.
  • Without an open session only user-level and global skills are shown (project-level skills depend on the session cwd).
  • Not yet implemented: zip-bomb budgets, symlink materialization, ZIP64, download proxy support.