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.

Plugin Skill Palette — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-plugin-skill-palette

Plugin Skill Palette

Enhanced skill plugin for DeepSeek Harness (DSH): Fuzzy slash search, interactive multi-skill palette & preset bundles

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

npx -y @deepseek-ai/dsh plugin --profile web add github:qyjgg/dsh-plugin-skill-palette#e5561b1761b868849b44e0780cabe138b1e48d1e
READMECompatibilityVersions

Compatibility and provenance

Plugin Skill Palette is published as dsh-plugin-skill-palette and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/2/2026

Versions

1.0.0stable
9/2/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/14/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

Related plugins

More verified plugins in ui-customization.

Remote 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.Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundlePet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-plugin-skill-palette

English | 简体中文

⚡ DeepSeek Harness (DSH) Enhanced Skill Plugin: Tiered weighted fuzzy search for / commands and seamless multi-skill inline selection.


🎯 Key Problems Solved

  1. Native / Skill Trigger Lacks Fuzzy Search:

    • DSH native skill matching only supports startsWith prefix filtering. Typing /review fails to match code-review, and typing /test cannot find tdd by description keywords.
    • Solution: Built-in 4-tier weighted fuzzy matching engine (Exact prefix > Subsequence & word boundaries > Description full-text keywords > Subsequence fuzzy).
  2. Chained Multi-Skill Selection:

    • Complex development tasks require combining multiple skills (e.g. Caveman terse style + TDD test-first cycle + Code Review standards).
    • Solution: Picking a skill inserts /<skill> and preserves input focus. Typing / immediately opens fuzzy search for the next skill, enabling rapid multi-skill composition like /caveman /tdd /code-review .

📦 Installation & Setup

Option 1: Install via DSH CLI (Recommended)

dsh plugin --profile web add dsh-plugin-skill-palette

Option 2: Local Development & Build

cd dsh-plugin-skill-palette
npm install
npm run build

Then configure in package.json of your profile:

{
  "dependencies": {
    "dsh-plugin-skill-palette": "file:E:/work/dsh-plugin-skill-palette"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "...",
        "dsh-plugin-skill-palette"
      ]
    }
  }
}

🖥️ Features

1. Tiered Weighted Fuzzy Search

Type / after any whitespace in composer:

  • /cr or /review matches code-review and caveman-review
  • /test matches tdd (via description)
  • /git matches git-guardrails-claude-code and caveman-commit

2. Seamless Inline Multi-Skill Chaining

  • Pick a skill from dropdown menu via Enter or mouse click;
  • Trailing space is auto-appended; type / again to immediately pick the second skill;
  • On submission, DSH host pre-step hook extracts all /name tokens and injects <skill_content> for every selected skill.

📄 License

MIT License