DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Skill Manager — DSH Plugin for DeepSeek Harness
← Plugins
S

@wanghailong0419/dsh-skill-manager

Skill Manager

DSH bundle: manage user-level skills from Settings — list all skills with enable/disable switches (disabled skills are excluded from model catalogs)

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:LongSir0419/dsh-skill-manager#b4089a3d47f3aa3bddd2a336f8966f465877128d
READMECompatibilityVersions
preview

Compatibility and provenance

Skill Manager is published as @wanghailong0419/dsh-skill-manager and currently resolves to version 0.1.4. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/20/2026

Versions

0.1.4stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.4
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/20/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

dsh-skill-manager

English | 中文

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).

preview

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: true to 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:

HalfEntryRole
Hostlib/index.jsskillManager Remote service: skillList / skillSet / skillGet / skillCreate / skillUpdate / skillDelete / skillRename, edits SKILL.md frontmatter
Clientlib/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

  1. Start dsh web, open Settings → Skill Manager
  2. The list shows each Skill: status dot (green = enabled / gray = disabled), name, description
  3. Toggle enable/disable with the switch on the right
  4. Click a row to expand details: view Skill name and SKILL.md content, edit or delete
  5. Add: click "Add Skill", fill in the name and content inline

Disable effect: adds disable-model-invocation: true to 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, parses description and disable-model-invocation from frontmatter
  • skillGet: reads the full SKILL.md content of a single Skill
  • skillSet: text-level frontmatter editing (preserves existing fields and formatting such as name/description/origin), adds/removes disable-model-invocation: true
  • skillCreate / skillUpdate: creates a new SKILL.md or replaces the full content
  • skillRename: renames the Skill directory and syncs the name field in frontmatter
  • skillDelete: deletes the entire Skill directory
  • Idempotent: repeated toggles never double-modify

License

MIT