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.

Agent Skill Manager — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

dsh-agent-skill-manager

Agent Skill Manager

Agent & Skill management UI for DeepSeek Harness: list agent presets and skills from Settings.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ArkFishingLab/dsh-agent-skill-manager#ae5e0cf8008bba05d55c2a7b29453230a32959ad
READMECompatibilityVersions

Compatibility and provenance

Agent Skill Manager is published as dsh-agent-skill-manager and currently resolves to version 0.1.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
8/28/2026

Versions

0.1.0stable
8/28/2026

Related plugins

Loading related plugins…

Latest
0.1.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
8/28/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 pluginsRemote 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.

README

dsh-agent-skill-manager

Agent & Skill 管理 UI 插件 for DeepSeek Harness (DSH)

在 Web 设置 → Agent & Skill 页里:

  • Agent 预设:列出所有 agent preset(id / name / trust / path),支持复制预设、删除预设。
  • Skills:列出当前会话可见的 skill(name / description / provider / source)。

Host half 通过 Package-private RPC 调用 agentPresets / skills 两个 Cordis Service,只把叶子标量字段回传给浏览器;Client half 注册一个 settings.section。

状态

社区插件,非官方包。MVP:只读列表 + 预设复制/删除。Skill 的「导入新 skill」尚未实现(参考 dsh-skills-manager 的私有库思路后续补)。

仓库结构

dsh-agent-skill-manager/
├── package.json          # dsh.bundle + dsh.client + peerDependencies (带预发布分支)
├── cordis.patch.yml      # host 组合补丁:insert 插件行(上架必需)
├── tsconfig.json
├── tsdown.config.ts       # 双产物:host ESM + client 工厂闭包 (window.__ModuleLoader__.load)
├── src/
│   ├── index.ts          # Host half:harness.handle RPC
│   ├── client/
│   │   └── index.ts      # Client half:settings.section UI (React.createElement, 无 JSX)
│   └── globals.d.ts      # harness 等 Host Builtin 全局声明
└── README.md

安装

dsh plugin --profile web add dsh-agent-skill-manager

重启 dsh web,打开 设置 → Agent & Skill。

从 GitHub 安装:

dsh plugin --profile web add "github:ArkFishingLab/dsh-agent-skill-manager#main"

需要 dsh web 0.1.0-rc.6 或更新版本。

开发

此插件在 DSH 源码 workspace 内开发(peerDependencies 指向 @deepseek-ai/* workspace 包)。

# 在 deepseek-harness checkout 根目录
pnpm install
pnpm --filter dsh-agent-skill-manager build      # 产出 lib/index.js + lib/client.js
pnpm --filter dsh-agent-skill-manager watch      # 开发热构建

构建产出两个产物:

  • lib/index.js — Node host half(ESM,@deepseek-ai/* 保持 external)
  • lib/client.js — 浏览器 client half,包成 window.__ModuleLoader__.load({ id, factory }) 工厂闭包,符合 DSH client bundle 协议

本地开发挂载

把 cordis.patch.yml 作为补丁层叠加到 web profile:

dsh web --patch ./cordis.dev.yml

发布到 npm

pnpm --filter dsh-agent-skill-manager build
pnpm --filter dsh-agent-skill-manager pack      # 产出 tgz
npm publish

发布到 npm 后,安装免 allowBuilds 构建授权。不发 npm 也可用 GitHub Release 预构建 tarball。

上架到插件市场

本插件目标是上架 dsh-market(dshmarket.com)。市场里的插件列表来自精选列表 awesome-dsh-plugin,上架流程:

  1. 满足收录门槛:package.json 声明 dsh.bundle(✅)、仓库 ≥1 天且 ≥10 commits、加 dsh-plugin topic、描述属实。
  2. 在 awesome-dsh-plugin 仓库提 PR,加一个文件 data/plugins/<owner>__<repo>.yml:
url: https://github.com/ArkFishingLab/dsh-agent-skill-manager
name: ArkFishingLab/dsh-agent-skill-manager
category: ui
description:
  en: Agent & Skill management UI — list presets and skills from Settings.
  zh: Agent 与 Skill 管理 UI,在设置页列出预设与技能。
  1. CI 通过后维护者评审,合并后 dsh-market 和站点自动收录。

行为与安全

  • 删除预设会真实移除 ~/.dsh/.agent-presets/<id>/,不可恢复,操作前会二次确认。
  • RPC 仅返回标量字段,不序列化 live Service 对象。
  • Web API 走 DSH 的 trusted-host 策略,不要把 Harness Web 暴露给不可信网络。

License

MIT