DeepSeek Harness 插件

dsh-plugin-center

A unified discovery, description, recommendation, and lifecycle console for DeepSeek Harness plugins.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
cpp285/dsh-plugin-center
最近更新
2026年8月14日
分类
工具与能力
GitHub stars
9
载体类型
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/cpp285/dsh-plugin-center
插件名:dsh-plugin-center
作者:cpp285

检查来源文件

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

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

DSH Plugin Center

Understand, discover, and manage DeepSeek Harness plugins from one compact settings page.

DSH Plugin Center adds a native-looking workspace to Settings → Plugins. It turns the active Loader tree into a readable plugin inventory, adds GitHub discovery, and keeps common lifecycle actions close at hand.

![DSH Plugin Center showing installed plugins](docs/images/plugin-center.png)

Features

Live installed-plugin inventory

  • Reads the active DeepSeek Harness Loader tree instead of relying on the dependency file alone.
  • Shows each module's effective enabled state, runtime phase, version, package name, repository, and description.
  • Detects plugins disabled by a parent entry and separates built-in modules from user-manageable packages.
  • Summarizes how many modules are loaded, running, and using a custom description.
  • Opens the source repository directly when package metadata provides a valid GitHub URL.

Clear descriptions for unfamiliar modules

  • Uses the package description when one is available and creates a simple fallback when it is not.
  • Lets you add separate Chinese and English descriptions to any currently loaded module.
  • Prefers your description in the interface, while keeping its source visible as user, package, or generated text.
  • Stores overrides locally in $DSH_HOME/plugin-center/descriptions.json using atomic file replacement.

GitHub plugin discovery

  • Finds up to 100 recently updated, non-archived repositories published under the dsh-plugin GitHub topic.
  • Supports instant search across repository name, owner, description, category, and recommendation reason.
  • Automatically groups projects into categories such as memory, interface, automation, vision, developer tools, and connectors.
  • Shows Stars, category, and last update time, with direct links to each repository.
  • Has no Stars limit by default; administrators can add an optional maxStars ceiling.
  • Caches GitHub results for 10 minutes and provides a manual refresh button when fresh data is needed.

Curated starter collection

  • Provides a shorter list for users who do not want to inspect every discovery result.
  • Adds a plain-language reason and category to each selected project.
  • Retrieves live repository descriptions, Stars, and update dates instead of storing stale copies.
  • Skips unavailable repositories without breaking the rest of the collection.

Plugin lifecycle management

  • Installs plugins from an npm package name or github:owner/repository[#ref] specifier.
  • Updates and removes non-built-in packages that belong to the selected DSH profile.
  • Recognizes already installed discovery results and disables duplicate installation.
  • Displays operation progress, command output, useful errors, and the required restart notice.
  • Protects DeepSeek Harness foundation packages and Plugin Center itself from removal through the page.
  • Runs one management operation at a time to avoid overlapping profile changes.

Native, resilient interface

  • Lives inside Settings → Plugins and follows the surrounding DeepSeek Harness visual language.
  • Uses a compact list layout that works in standard and narrow windows.
  • Inherits host colors for light and dark mode and respects reduced-motion preferences.
  • Includes loading, empty, error, retry, confirmation, and disabled states for everyday failures.

Requirements

  • DeepSeek Harness with the web profile
  • Node.js 22 or newer
  • Permission to restart dsh web after changing installed plugins

Install from GitHub

1. Add the plugin

Open a terminal and run:

dsh plugin --profile web add github:cpp285/dsh-plugin-center

Wait for the command to finish before continuing.

2. Generate the web profile configuration

dsh --profile web --dump-config

This makes the new bundle entry available to the web profile.

3. Start or restart DeepSeek Harness

dsh web

If dsh web is already running, stop the current process and start it again so the new plugin is loaded.

4. Open Plugin Center

Open DeepSeek Harness, then go to:

Settings → Plugins → Plugin Center

The installation is successful when you can see the Installed, Discover, and Featured views shown in the screenshot above.

Install from a local checkout

Run the following commands from the directory that contains this project:

dsh plugin --profile web add ./dsh-plugin-center
dsh --profile web --dump-config
dsh web

The local project is linked into the profile, which is useful while developing the plugin. No build step is required.

Use

  • Open Installed to review plugin status, versions, descriptions, repositories, updates, and removal actions.
  • Open Discover to browse repositories published under the dsh-plugin GitHub topic.
  • Open Featured for a shorter starter list.
  • Use Edit description when an installed module needs a clearer explanation.
  • Restart dsh web after an install, update, or removal when the interface asks you to do so.

Troubleshooting

  • Plugin Center is missing: run the configuration command again, restart dsh web, and reload the DeepSeek Harness page.
  • The page still shows an older version: perform a hard refresh after restarting the host.
  • GitHub discovery is rate-limited: set GITHUB_TOKEN before starting dsh web.

Configuration

The bundle defaults live in cordis.patch.yml:

config:
  profile: web
  allowMutations: true
  trustedHosts: !!js ctx.webRuntime.trustedHosts

Override the row with id: dsh-plugin-center in your profile's cordis.patch.yml when you need different settings.

OptionDefaultPurpose
profilewebSelects the DSH profile to manage.
maxStarsunlimitedOptionally hides discovery results above a Stars threshold.
allowMutationstrueEnables install, update, and removal actions.
allowRemoteMutationsfalseAllows management actions from non-loopback addresses when enabled.
dshCommanddshSets the DSH executable path.
trustedHostsWeb defaultsDefines which Host values may access the Plugin Center API.

GitHub applies a lower API quota to anonymous requests. Set GITHUB_TOKEN before starting dsh web if you need a higher quota. The token is used only by the host process and is never exposed to the browser.

Security model

  • Install targets accept npm package names or github:owner/repository[#ref] only.
  • URLs, local paths, and shell fragments are rejected.
  • Plugin commands run as argument arrays without a shell.
  • Management actions are limited to local requests by default.
  • API requests validate Host, Origin, and cross-site request metadata.
  • Only one lifecycle operation can run at a time.
  • The interface asks for confirmation before running third-party plugin code.

Development

npm test
npm run check

The project is written in plain JavaScript and does not require a bundler.

Status

Version 0.1.0 is the first public development release.