DeepSeek Harness plugin

dsh-skills-settings_sl

DSH web plugin: a Skills management section in the Settings shell — list, search, categorize, create (upload / generate via dsh / GitHub import), edit, enable/disable, and delete DSH skills.

Jump to install

Source facts

Repository
sun-gift/dsh-skills-settings_sl
Latest update
Aug 20, 2026
Category
Tools & Capabilities
GitHub stars
1
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/sun-gift/dsh-skills-settings_sl
Plugin: dsh-skills-settings_sl
Author: sun-gift

Check the source files

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

File explorer4 files
README.mdSource · read only
README language

dsh-skills-settings_sl

English | 中文

A DSH (DeepSeek Harness) web client plugin that adds a Skills section to the Settings shell, for browsing and managing the DSH skills installed on the current machine.

Features

  • Skill list — icon + name + installed badge + description cards, with keyword search and hover lift
  • Category filter — pill filters (All / Local / GitHub / User-created / Memory); the category is read from the skill's SKILL.md frontmatter category field
  • Create skill — three sources:

- Upload a skill package (.zip / .md) → category local - Generate via dsh → category user - Import from a GitHub repository → category github

  • Skill details — Markdown preview, category dropdown (saves on change), edit and save
  • Disable / enable — toggles the frontmatter disable-model-invocation key (the skill stays registered and visible; the file suffix is never renamed)
  • Delete — with confirmation
  • Use now — writes the skill into the current session's input draft (does not send)

Requirements

  • DSH web profile (dsh --profile web)
  • Node.js >= 20

Install (remote — no local files needed)

The plugin is published to the npm registry, so you can install it straight from the registry — no cloning, no file: links, no manual copying.

Option A — one command (recommended)

dsh plugin --profile web add dsh-skills-settings_sl

This runs pnpm add dsh-skills-settings_sl inside your web profile and automatically appends the package to the profile's dsh.profile.bundles layer stack (the package declares dsh.bundle.patch).

Option B — manual

Add the dependency and the bundle entry to your profile's package.json (C:\Users\<you>\.dsh\profiles\web\package.json on Windows, ~/.dsh/profiles/web/package.json elsewhere):

{
  "dependencies": {
    "dsh-skills-settings_sl": "^0.2.0"
  },
  "dsh": {
    "profile": {
      "bundles": [
        // ... your existing bundles ...
        "dsh-skills-settings_sl"
      ]
    }
  }
}

then run pnpm install (or npm install) inside the profile directory.

Fallback — GitHub tarball

If the npm registry is unreachable, install from the GitHub tag archive instead (using the same package name in dependencies and bundles):

https://github.com/sun-gift/dsh-skills-settings_sl/archive/refs/tags/v0.2.0.tar.gz

Update (remote)

When a new version is published:

dsh plugin --profile web update dsh-skills-settings_sl

or change the version in your profile's package.json and run pnpm install.

> Restart required. The host half and the plugin set are fixed at startup. > After installing, updating, or renaming a plugin you must restart the DSH > service (dsh --profile web) and refresh the page. (The browser half is > re-read from disk on request, so UI-only tweaks show up on refresh.)

File structure

dsh-skills-settings_sl/
├── lib/
│   ├── index.js      # host half (cordis plugin): /plugins/skills-admin/* routes
│   └── client.js     # client bundle (Settings UI)
├── cordis.patch.yml  # composition-tree patch (bundle layer)
├── package.json
└── README.md / README.zh.md / LICENSE

Host routes

Prefix /plugins/skills-admin:

MethodPathDescription
GET/PUT/POST/DELETE/skillskill detail / edit / create / delete
POST/toggledisable / enable (frontmatter disable-model-invocation)
POST/uploadupload .zip / .md skill package
POST/importimport from a GitHub repository
POST/categorychange a skill's category
GET/listmerged skill list (category + disabled state)

Skills live under <project-root>/.dsh/skills/ (project root = nearest .git ancestor, else the session cwd).

Development notes

  • package.json exports must export both ./client and ./package.json, or

the client half is silently skipped (route 404)

  • UI changes apply on page refresh; host changes require a DSH restart
  • Disabling a skill uses the frontmatter disable-model-invocation: true, never

a file-suffix rename

License

[MIT](./LICENSE)