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 Usage — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-skill-usage

Skill Usage

Sidebar skill hub for DeepSeek Harness Web GUI — shows the current/used skills of the active session and enables one or several skills at once by injecting their instructions into the conversation. 🌟 侧边栏技能中心:显示当前会话正在使用/已使用的技能,并可一次启用一个或数个技能(注入技能说明,整轮对话可用)。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-skill-usage@0.2.0
READMECompatibilityVersions

Compatibility and provenance

Skill Usage is published as dsh-skill-usage and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/1/2026

Versions

0.2.0stable
9/1/2026
0.1.1stable
9/1/2026
0.1.0stable
8/31/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
30.9 kB
Files
17
Surface
web
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
0
Last push
9/1/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.

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 pluginsClient 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 bundle

README

dsh-skill-usage

Sidebar skill hub for DeepSeek Harness Web GUI. DeepSeek Harness 侧边栏技能中心 ✨

A DSH plugin that lives at the bottom of the sidebar:

  • Shows the current skill — the most recently used skill of the active session, plus the full first-use history.
  • Enables skills for the conversation — pick one or several skills from the session's available catalog and enable them at once. Each selected skill is shipped as a /name gesture in a single prompt, so the host injects its instructions and the model can use it for the whole conversation.

侧边栏底部的小徽章:实时告诉你当前会话「现在正在用什么技能」,还能一次勾选 一个或数个技能并启用——技能说明注入本轮对话,模型整轮可用。装上就能用~

🐾 Star us!

Hey there, lovely human! 👋 If this little plugin made your DSH a tiny bit nicer to use, would you take one second to drop a ⭐ Star on the repo? Every star is a cookie 🍪 that powers this small plugin — with enough of them, it can keep getting stronger and cuter!

Pretty please, the star is just up there in the corner (´。• ω •。`) ♡

—— a tiny plugin that works hard on every line of code 🐱✨

嘿,亲爱的小伙伴!🐾 如果你觉得这个小插件让你的 DSH 用起来更顺手了, 能不能花一秒钟,给仓库点一颗 ⭐ Star 呀? 你的每一颗星星,都是给这个小插件充电的 小饼干 🍪💖 有了它们,我才有动力继续修炼,变得更强更好用!

拜托拜托~星星就在右上角,点一下下就好啦 (´。• ω •。`) ♡

——— 一只认真敲代码的小插件 🐱✨

📸 截图 Screenshot

Skill usage sidebar hub in action

占位截图:等 DSH 重启后换成真实截图(替换 docs/screenshot.svg 或另存为 docs/screenshot.png)

How it works

The plugin registers a skillUsage session projection (a pure fold over the session log) that observes skill tool calls and user-explicit /name invocations, folding them into a { active, history } wire value.

The browser half reads that projection for the current session through the global useSessions seat (the host folds projection values into list rows) and renders a trigger in the sidebar's sidebar.footer.action band. Opening the panel lists the used skills and the session's available skill catalog; the Enable action builds one /name … prompt, so the host's tool-skill boundary injects every selected body into the conversation.

Install

From the plugin store

dsh plugin --profile web add dsh-skill-usage

Local (self-authored)

dsh plugin --profile web add /path/to/dsh-skill-usage

Usage 使用说明

No configuration needed. Once installed, the skill trigger appears at the bottom of the sidebar. Before any skill use, the badge shows a generic label; after the model loads a skill (or you invoke one via /name), it shows the current skill. Clicking the badge opens the panel:

  • 本会话已使用 / Used this session — the skills used so far.
  • 可用技能 / Available skills — the session's user-invocable catalog, with checkboxes.
  • 启用 (N) / Enable (N) — send the selected skills (one or several) as a /name … prompt; the host injects their instructions and they stay available for the rest of the conversation.

不需要任何配置。 装上后,侧边栏底部会出现技能徽章。模型加载某个技能、或 你通过 /name 显式调用后,徽章显示当前技能。点击徽章打开面板:可查看本会话 已使用的技能、勾选一个或数个可用技能,点「启用」一次注入——技能说明进入对话 上下文,模型整轮可用。

Build

npm run build:host    # tsc → lib/index.js + lib/index.d.ts
npm run build:client  # esbuild → lib/client.js (browser bundle)
npm run build         # both
npm run typecheck     # tsc (host + client) — noEmit

License

MIT