DeepSeek Harness 插件

dsh-plugin-catalog-fengs202

Plugin catalog for the dsh web GUI: a Settings section listing every installed profile bundle, auto-grouped by source (DSH core / UI suite / community / local / GitHub), each with a searchable(英文原文)

跳到安装方式

来源信息

GitHub 仓库
fengs2021/dsh-plugin-catalog
最近更新
2026年8月17日
分类
插件市场与管理
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/fengs2021/dsh-plugin-catalog
插件名:dsh-plugin-catalog-fengs202
作者:fengs2021

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器2 个文件
README.md来源说明 · 只读预览

dsh-plugin-catalog

> A plugin catalog for the DeepSeek Harness web GUI: 设置 → 插件目录. Every installed profile bundle is listed, auto-grouped by source (DSH core / UI suite / community / OMDSH / GitHub / local), searchable by name or description, with a per-plugin note editor persisted host-side (shared across devices). > > DSH Web GUI 插件目录:设置 → 插件目录。已装插件自动分类搜索逐插件备注(host 端持久化,跨设备共享)。

---

English

Features

  • Auto-grouped catalog: DSH 官方核心 / UI 全家桶 / 社区扩展 / OMDSH 生态 / GitHub 安装 / 本地自装 / 其他 — collapsible groups, sorted by name
  • Per-plugin info: package name, version, group badge, description (falls back to the dsh main package for built-in bundles), source (local / GitHub / built-in)
  • Search: realtime filter over name + description
  • Notes (annotations): one note per plugin, saved host-side to $DSH_HOME/plugin-catalog/notes.json — same notes on your phone and desktop
  • Refresh: reloads the list at any time
  • Version check (v0.2.0): every open auto-checks the latest version per source — npm (dist-tags max), github (locked commit vs remote HEAD), link (local vs remote HEAD), builtin (skipped, DSH-managed). Updated packages show a badge + one-click update for npm packages (backup → pnpm update --depth 1 → rollback on failure). link/github packages are read-only hints (see Notes)

How it works

  • Host half (lib/index.js): two read-only-ish HTTP APIs

- GET /plugin-catalog/api/list — reads the profile package.json (bundles + dependencies) and each package's metadata, returns { entries, notes } - GET/PUT /plugin-catalog/api/notes — note read/write (the only write: your notes file under $DSH_HOME/plugin-catalog/, never touches node_modules)

  • Browser half (lib/client.js): a Settings section "插件目录" registered via slots.inject('settings.section') (same pattern as dsh-plugin-guard's backup manager), rendered with React.createElement

Install

dsh plugin --profile web add github:fengs2021/dsh-plugin-catalog
systemctl restart dsh-web   # or hot-mount via dev tools (no restart)

Then open 设置 → 插件目录 (Settings → Plugin Catalog).

Notes

  • Update safety: one-click update is limited to npm-registry packages (exact allowlist, backup + rollback, in-flight lock, no auto-restart — you restart dsh-web yourself). link/github packages only show change hints: github packages pin commits in the profile spec (pnpm update cannot cross a pinned commit), link packages are your local dev copies (updating could overwrite local work) — handle those manually
  • Safe by design: the host half only reads package.json metadata and writes one JSON file under $DSH_HOME/plugin-catalog/ — it never writes into node_modules or any dsh-managed path
  • Categories are auto-derived from the dependency spec (link: / github: / built-in / scope prefix)

中文

功能

  • 自动分类:已装插件按来源自动分 7 组(DSH 官方核心 / UI 全家桶 / 社区扩展 / OMDSH 生态 / GitHub 安装 / 本地自装 / 其他),分组可折叠、组内按名称排序
  • 每插件信息:包名、版本、分类徽标、描述(内置包自动回退读 dsh 主包)、来源(本地/GitHub/内置)
  • 搜索:按插件名或描述关键字实时过滤
  • 备注:每插件一个备注输入框,存到 $DSH_HOME/plugin-catalog/notes.json——手机/电脑跨设备共享
  • 刷新:随时重新加载列表
  • 版本检查(v0.2.0):每次打开自动按来源检查最新版本——npm(dist-tags 最大)、github(锁定 commit vs 远端 HEAD)、link(本地 vs 远端 HEAD)、内置(跳过,跟随 DSH 托管);有更新的包显示徽标,npm 包支持一键更新(备份 → pnpm update --depth 1 → 失败自动回滚);link/github 包仅只读提示(见说明)

实现

  • host(lib/index.js):

- GET /plugin-catalog/api/list:读 profile package.json(bundles + dependencies)与各包元数据,返回 { entries, notes } - GET/PUT /plugin-catalog/api/notes:备注读写(唯一的写操作 = 你的备注文件,绝不碰 node_modules)

  • client(lib/client.js):设置页 section「插件目录」(slots.inject('settings.section') 模式,同 dsh-plugin-guard 备份管理),React.createElement 渲染

安装

dsh plugin --profile web add github:fengs2021/dsh-plugin-catalog
systemctl restart dsh-web   # 或 dev 工具热装配(免重启)

然后打开 设置 → 插件目录。

说明

  • 更新安全:一键更新仅限 npm registry 包(精确白名单、备份+回滚、进行中锁、不自动重启——由你自行重启 dsh-web);link/github 包只显示变更提示:github 包在 profile spec 里锁定 commit(pnpm update 无法跨越锁定 commit),link 包是本地开发副本(更新可能覆盖本地工作)——请手动处理
  • 安全设计:host 半只读 package.json 元数据 + 写一个 $DSH_HOME/plugin-catalog/ 下的 JSON 文件——绝不写入 node_modules 或任何 dsh 管理路径
  • 分类自动派生:按依赖 spec(link: / github: / 内置 / scope 前缀)

License

MIT