DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@lcthe/dsh-skills-hub

Skills Hub

用于浏览、搜索、检查、导入、上传以及安全删除全局和已注册工作区目录中技能的 DSH 插件。

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

npx -y @deepseek-ai/dsh plugin --profile web add @lcthe/dsh-skills-hub@0.2.5
README兼容性版本

兼容性与来源证明

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

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

版本

0.2.5stable
2026/8/25
0.2.4stable
2026/8/24
0.2.3stable
2026/8/21
查看其余 3 个版本收起版本
0.2.2stable
2026/8/21
0.2.1stable
2026/8/21
0.2.0stable
2026/8/20

相关插件

正在加载相关插件…

最新版
0.2.5
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
118.5 kB
文件数
8
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 2
周下载
80
最近提交
2026/8/25
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-skills-hub

A DSH browser-client plugin for browsing and managing Skills stored in DSH's global directory and registered workspaces.

简体中文

Overview

dsh-skills-hub adds Settings → Skills to a DeepSeek Harness (DSH) browser client. It manages Skill directories without changing the DSH core runtime or pretending to provide unsupported Skill lifecycle controls.

The plugin is intended for a DSH deployment with a browser client: either the desktop application with an embedded Web UI or the DSH Web version.

Current capabilities

  • Browse installed Skills with names, descriptions, Markdown files, paths, and symlink targets.
  • Search installed Skills by name or description.
  • Switch between the global Skill directory and registered DSH workspaces.
  • Detect available Skill directories from Codex, Claude Code, ZCode, WorkBuddy, and QCoderWork, then scan their counts before the import dialog is ready.
  • Inspect scanned external Skills on demand by expanding a source group.
  • Import Skills by copying their directories or creating directory symlinks.
  • Upload a local Skill folder into the global directory or a registered workspace.
  • Skip an existing destination with the same Skill name instead of overwriting it.
  • Delete Skill directories or recognized symlinks safely.
  • Show an import result summary with imported, skipped, and failed items.

DSH currently does not support runtime enable/disable for an individual Skill. This plugin does not expose a display-only switch for that unsupported behavior.

Quick start

Prerequisites

  • A supported DSH browser client: desktop Web UI or DSH Web.
  • Permission to install a DSH profile dependency and edit its cordis.yml.

Install the package

pnpm add @lcthe/dsh-skills-hub

Add the plugin at the same include level as the other bundle rows in your profile's cordis.yml:

- insert:
    - id: dsh-skills-hub
      name: '@lcthe/dsh-skills-hub'

Start the DSH Web client:

pnpm dsh web

Open Settings → Skills after DSH starts.

Usage

Browse installed Skills

The main page scans the selected DSH Skill directory and displays each Skill's name, description, path, Markdown files, and symlink information. Use the search field to filter by name or description.

Switch the Skill scope

Use the scope selector to switch between:

  • Global: ~/.dsh/skills/
  • Registered workspace: <workspace>/.dsh/skills/

Workspace options come from the DSH workspace registry. They are not a claim that DSH has one universal “current workspace”.

Import from another Agent

  1. Open Import.
  2. The plugin detects which supported Agent directories exist and scans them to calculate the available Skill counts.
  3. Source groups remain collapsed by default; expand a group to view its scanned Skills.
  4. Open a Skill to inspect its description and source path.
  5. Select Skills with checkboxes.
  6. Choose Copy or Symlink and select the global directory or a registered workspace.
  7. Confirm the import and review the result summary.

Source groups stay collapsed, but their counts are populated before the dialog is ready. Clicking the dialog's refresh button performs a new source detection and re-scans all detected sources so the displayed totals remain accurate.

Existing destination names are skipped; imports never overwrite an existing Skill directory.

Upload a local Skill folder

Choose Upload on the main Skills page to open the upload dialog. Drag one local Skill folder into the drop zone, or click Choose folder to use the system folder picker. The dialog shows the selected folder, file count, and total size before uploading to the selected global directory or registered workspace. The upload is staged in a temporary directory and moved into the destination only after validation succeeds.

Delete a Skill

Choose Delete and confirm the path shown in the confirmation dialog. A recognized symlink is removed with the link itself only; its target is not followed or deleted. A normal Skill directory and its contents are removed recursively.

Current limitations

  • DSH does not currently provide a persisted runtime enable/disable setting for an individual Skill.
  • disable-model-invocation and user-invocable in SKILL.md are static invocation policies, not user-controlled runtime toggles.
  • DSH's plugin-level disabled setting controls an entire loader entry, not one Skill inside a provider.
  • Skill content editing, folder opening, and a Skill creation wizard are not included.
  • Existing Skills cannot be overwritten; same-name destinations are always skipped.
  • Custom scan roots are not supported.
  • Import previews show Skill metadata but not file sizes.
  • A source directory may exist but contain no recognizable Skill directory; recognition requires a directory with at least one Markdown file.
  • Dangling symlinks may not be discoverable because source scanning verifies that the target is a usable directory.

Security summary

The plugin applies the following safeguards:

  • Skill names must match a safe name format.
  • Import, upload, and delete destinations are restricted to the global directory or registered workspace directories.
  • Upload paths reject traversal segments and duplicate file writes.
  • Upload limits are enforced before commit: 16 MiB request body, 500 files, 4 MiB per file, and 12 MiB total file data.
  • Uploads are staged in a temporary directory and atomically renamed into place only after validation succeeds.
  • Existing destination directories are never overwritten.
  • Recognized symlink deletion removes the link itself rather than its target.

See SPEC.md for the complete behavior and security contract.

Supported import sources

SourceScanned paths
Codex~/.codex/skills/, ~/.codex/vendor_imports/skills/, ~/.codex/plugins/cache/*/skills/
Claude Code~/.claude/skills/
ZCode~/.zcode/skills/, ~/.zcode/cli/plugins/cache/*/skills/
WorkBuddy~/.workbuddy/skills/
QCoderWork~/.qcoderwork/skills/

Screenshots

Skill list

Import dialog

Source selection

Local development

To load a local checkout instead of the published npm package, add a file: dependency to the DSH profile's package.json:

{
  "dependencies": {
    "@lcthe/dsh-skills-hub": "file:/path/to/dsh-skills-hub"
  }
}

Include @lcthe/dsh-skills-hub in dsh.profile.bundles, then build from the checkout:

pnpm install
pnpm run build

pnpm run build runs the TypeScript check before bundling the plugin.

Release and maintenance

  • Package name: @lcthe/dsh-skills-hub
  • Source package version: see package.json.
  • Published versions: verify the npm registry rather than inferring publication status from a local version field.
  • Keep changes in this plugin repository. The official deepseek-harness source repository is not a development target for this plugin.

Contributing

Issues and pull requests are welcome. Keep documentation and published metadata aligned with implemented behavior.

License

MIT