DeepSeek Harness plugin

dsh-plugin-center

A unified discovery, description, recommendation, and lifecycle console for DeepSeek Harness plugins.

Jump to install

Source facts

Repository
cpp285/dsh-plugin-center
Latest update
Aug 14, 2026
Category
Tools & Capabilities
GitHub stars
9
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/cpp285/dsh-plugin-center
Plugin: dsh-plugin-center
Author: cpp285

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

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.