DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Skills Manager — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@ctl456/dsh-skills-manager

Skills Manager

非官方 DeepSeek Harness 插件:可从 Web 设置页面或聊天中添加、编辑、移除、启用和禁用代理技能,让 harness 使用其自身的技能工具加载这些技能

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @ctl456/dsh-skills-manager@0.2.0
README兼容性版本

兼容性与来源证明

Skills Manager 以 @ctl456/dsh-skills-manager 发布,当前版本为 0.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/21

版本

0.2.0stable
2026/9/13
0.1.2stable
2026/9/13

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
236.7 kB
文件数
24
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
500
安全扫描
✓ v0.2.0 扫描通过
最近提交
2026/9/13
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

dsh-skills-manager

English | 中文

An unofficial plugin for DeepSeek Harness that manages agent skills: add, edit, enable and remove them from a Web settings card or from chat, and the harness loads each one with its own built-in skill tool.

This project is not affiliated with, endorsed by, or supported by DeepSeek. See NOTICE.md for attribution and LICENSE for terms.

What it does

  • Keeps one list of skills and publishes them through a single ctx.skills provider, the same seam the shipped filesystem provider uses.
  • Makes every enabled skill loadable by the harness's own skill tool — the model sees it in the session catalog and reads its body exactly as it would a SKILL.md on disk. A skill added from the page is a first-class skill, not a private list entry.
  • Adds, edits, removes, enables and disables skills without editing YAML and without restarting the host.
  • Imports a whole skill collection from a GitHub link or a .zip archive: it shows what the source offers, and installs only what you tick.
  • Gives beginners a form in the Web UI instead of a configuration file.

Requirements

  • A DeepSeek Harness install with the dsh CLI, version 0.1.5-rc.2 or compatible. The plugin declares the harness packages it plugs into as peer dependencies (@deepseek-ai/dsh-skill, dsh-settings, dsh-tools, dsh-util-values, dsh-home-paths, @deepseek-ai/cordis); the profile you install into must already provide them, which the shipped web profile does.
  • Network access while installing, so npm can resolve those peers.

Install

dsh plugin --profile web add @ctl456/dsh-skills-manager
dsh --profile web

Any profile works; web is the one with the Web UI. Remove it with:

dsh plugin --profile web remove @ctl456/dsh-skills-manager

To install a packed tarball or a checkout instead of the registry:

npm pack                                   # produces dsh-skills-manager-<version>.tgz
dsh plugin --profile web add file:/abs/path/to/dsh-skills-manager-0.2.0.tgz

Use it in the Web UI

Open Settings → Skills — its own page in the settings nav, below Agent presets.

The Skills page on first use: the filter box and Add skill button above an empty list

FieldMeaning
NameThe skill's identifier: lowercase letters, digits and single hyphens, up to 64 characters. The model invokes the skill by this name.
DescriptionOne line saying what the skill does and when to use it; the model routes on this text.
When to use (optional)Extra triggering guidance, for example "when the user asks for release notes".
InstructionsThe procedure in Markdown. Write the steps the model should follow after loading it.
Let the model invoke itWhen off, the skill is stored but stays out of the model's skill catalog.
Show in the / menuWhen off, the skill stays out of the composer's slash list.

Add skill opens a dialog. Filling it in and pressing Save publishes the skill immediately — no restart.

The add dialog with the name, description, when-to-use, instructions and the two invocation switches

The page lists every configured skill with its description, size, enabled state and Edit, Enable/Disable and Remove controls. A name that already exists replaces that entry. The list pages five skills at a time, and the filter box matches on both the name and the description.

The page after adding a skill: the row shows its description, size and controls

Import skills you did not write

Most published skills live in a repository or a .zip, not in a form. Import skills in the toolbar reads one without writing anything first, then installs the part you choose.

Give it one of:

  • A repository address: https://github.com/owner/repo.
  • A link to a directory inside one: https://github.com/owner/repo/tree/main/skills/my-skill.
  • The shorthand owner/repo.
  • A local .zip, up to 8 MB, if the source is not on GitHub at all. A single wrapping folder inside the archive is removed automatically.

Preview reads the source and lists every skill it offers, with the description, file count and size the install would write. A skill the host cannot install is listed with the reason and cannot be ticked.

Tick what you want — everything installable is ticked for you, so a repository with a single skill needs no second click — and press Install. The dialog confirms what landed, and the list behind it refreshes.

A source is read by its shape: one SKILL.md at the root is one skill; a skills/<name>/SKILL.md container or a <name>/SKILL.md collection is read as that set of skills; a /tree/<ref>/<dir> link is read as exactly that directory. Two directories that resolve to the same skill name install once, and the skipped one is reported rather than silently overwritten.

When GitHub answers with a truncated listing for a very large repository, use Limit to a directory to narrow the read.

Manage skills from chat

skills_manager_list reads the current list; skills_manager_add, skills_manager_remove and skills_manager_set_enabled change it. skills_manager_import reads a source the same way the dialog does: called with a source alone it previews, and called with names as well it installs them, so the model can search a collection before committing to it. Every call returns the fresh list with each skill's invocation flags and validation problems, so you can ask the model to add a skill instead of filling the form.

Where the configuration lives

The card and the tools edit the same skills-manager section of $DSH_HOME/settings.yaml. The skills array in cordis.patch.yml seeds the composition base layer, so a profile or --patch overlay can preconfigure skills, while the settings document stays the value that wins.

The plugin's composition entry also takes these options:

OptionDefaultMeaning
skills[]The seeded skill list; the settings document wins over it.
providerNameskills-managerThe name registered on ctx.skills.
rankthe manager's own rankDiscovery order.
toolstrueWhether to register the skills_manager_* tools.
githubTokennoneBearer token for the GitHub reads an import performs.

githubToken is only needed for imports. GitHub answers anonymous API requests 60 times an hour per address, which one preview of a large collection can exhaust, and a token is what reaches a private repository. Reads are anonymous when it is absent.

Limitations

  • One managed skill is one Markdown body. Bundled resources (scripts, templates, reference files) are not part of this registry — use a SKILL.md directory on disk for those.
  • Instruction bodies are stored as plain settings values, so keep secrets out of them. An imported skill's SKILL.md body becomes one, so importing a skill that carries a secret in its instructions writes that secret to $DSH_HOME/settings.yaml.
  • An import writes files, never a live link: the copy does not follow later commits in the source repository. Importing the same source again over an existing name replaces that skill, which is how a version is updated.
  • One import is capped at 400 files, 2 MB per file and 24 MB per skill, so a skill whose value is a large dataset or a binary asset is not a good fit.

Rebuilding the bundled artifacts

lib/ and src/ are built inside a DeepSeek Harness checkout, because the upstream build chain is workspace-coupled: the host bundle comes from the repository-root tsdown config plus the Typert codegen plugin, and the browser bundle from packages/client/tsdown.client.ts and its helpers. Building this package standalone is therefore not supported.

git clone https://github.com/deepseek-ai/deepseek-harness
cd deepseek-harness && pnpm install && pnpm run build
cd /path/to/dsh-skills-manager
scripts/sync-from-harness.sh /path/to/deepseek-harness

The script refreshes lib/, src/ and cordis.patch.yml, re-applies this repository's package name, and rewrites PROVENANCE.md with the harness version and commit.

That checkout has to carry the manager package already, which upstream DeepSeek Harness does not — docs/harness holds the integration patch that puts it there.

Verify before publishing

npm run verify:install

It packs the tarball, checks the payload, installs it into a throwaway profile with dsh plugin add file:<tarball>, and asserts that the composed profile tree contains the skills-manager row. That is the gate that separates "works from a checkout with link:" from "works the way a user installs it".

Releasing

The version in package.json, the v<version> git tag and the top section of CHANGELOG.md move together; pushing the tag runs .github/workflows/release.yml, which publishes the version to npm when it is new and opens the GitHub Release. The full runbook — tag rules, the release checklist and the npm token setup — is in RELEASING.md.

Licence

MIT, with the upstream copyright notice retained — see LICENSE and NOTICE.md.

相关插件

继续浏览 productivity-workflow 分类下经过校验的插件。

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness:通过自然语言驱动多智能体团队协作(队长、成员、具有依赖关系的任务、消息传递),并在 Web GUI 中提供树状监视器