Skip to content

chnjames/dsh-plugin-market

30Last commit Aug 16, 2026

dsh-plugin-market DSH plugin

DSH Plugin Market adds a dedicated tab in DeepSeek Harness settings, allowing you to search, inspect, and install community plugins without leaving the app. It also provides a public website for browsing and copying install commands, and exposes agent tools for programmatic access.

How to install the dsh-plugin-market DSH plugin

dsh plugin --profile web add github:chnjames/dsh-plugin-market

Copying does not run this command. Review the repository and version before installing the dsh-plugin-market DSH plugin.

dsh-plugin-market DSH plugin data source

dsh-plugin-market DSH plugin snapshot date: Aug 16, 2026

discovered

What the dsh-plugin-market DSH plugin can do

  • Search and filter plugins by category, keyword, or name within the settings tab
  • Install and uninstall plugins via the official `dsh plugin add/remove` command with confirmation
  • Public directory website with search, sorting, pagination, and dark/light theme
  • Agent tools for searching, viewing details, installing, and listing installed plugins
  • Customizable catalog sources (GitHub, npm) and fallback search
  • Risk level labels based on heuristic classification (e.g., appearance, high permissions)

Where the dsh-plugin-market DSH plugin fits

  • Discover new plugins for DeepSeek Harness without leaving the app
  • Quickly install community plugins using the directory website's copy-paste commands
  • Let conversation agents search and install plugins on your behalf
  • Self-host a custom plugin registry for your team by configuring `catalog.urls`
  • Review plugin metadata and risk level before installing from untrusted sources

Who the dsh-plugin-market DSH plugin is for

  • DeepSeek Harness users who want to extend functionality with community plugins
  • Plugin developers who want to list their plugins in the marketplace for easy discovery

dsh-plugin-market DSH plugin limitations

  • No unit tests; client and host README summary implementations may drift
  • No version update detection – you must uninstall and reinstall to get a newer version
  • About 40% of plugins fall into the 'other' category due to keyword-based heuristic classification
  • Local cache only refreshes after manual sync or restart, so new risk scores may not be immediate

dsh-plugin-market DSH plugin: from the repository README

Quoted from the chnjames/dsh-plugin-market README, the upstream source of the dsh-plugin-market DSH plugin. Copyright remains with the original authors.

在 DeepSeek Harness「设置 → 插件」里发现、确认并安装社区插件;另有公开目录站供浏览与复制安装命令。 [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![Website](https://img.shields.io/badge/Website-dsh--plugin--market.vercel.app-4F46E5)](https://dsh-plugin-market.vercel.app) [![CI](https://github.com/chnjames/dsh-plugin-market/actions/workflows/ci.yml/badge.svg)](https://github.com/chnjames/dsh-plugin-market/actions/workflows/ci.yml) ![设置 → 插件 → 插件市场](website/public/images/settings-market.png) 公开浏览:[https://dsh-plugin-market.vercel.app](https://dsh-plugin-market.vercel.app) ## 功能 - 设置内「插件市场」Tab:搜索、分类、展开说明、确认后安装 / 卸载 - 安装走官方 `dsh plugin add/remove`,不执行第三方安装脚本 - 公开目录站:浏览、⌘K 搜索、中英 / 亮暗主题、复制安装命令 - 对话 Agent 工具:搜索、详情、安装、列出已装插件 ## 安装 ```bash dsh plugin --profile web add github:chnjames/dsh-plugin-market # 或 npx @deepseek-ai/dsh plugin --profile web add github:chnjames/dsh-plugin-market ``` 安装后**重启** `dsh web`,打开 **设置 → 插件 → 插件市场**。 > Web profile 通常关闭配置热重载;改完插件后请重启再强刷页面。 ## 使用 设置内卡片: 1. 标题行:名称 · 星标 · 展开 2. 简介(最多两行) 3. 底栏:已安装 / 作者 / 提示 · **查看仓库** · **安装**(安装前确认) 卸载本市场插件: ```bash dsh plugin --profile web remove dsh-plugin-market ``` ## 公开目录站 线上目录:[https:/

Read the full READMEThe repository declares no license. Check with the authors before using it.

dsh-plugin-market DSH plugin questions

How do I install the DSH Plugin Market itself?

Run `dsh plugin --profile web add github:chnjames/dsh-plugin-market` or `npx @deepseek-ai/dsh plugin --profile web add github:chnjames/dsh-plugin-market` in your terminal. After installation, restart `dsh web` and go to Settings → Plugins → Plugin Market to use it.

How do I uninstall the Plugin Market?

Run `dsh plugin --profile web remove dsh-plugin-market` in your terminal. This will remove the plugin market tab from settings. The directory website is separate and not affected.

Why is the Plugin Market tab not showing in settings?

Make sure you have restarted `dsh web` after installing the plugin. The web profile usually disables configuration hot-reload, so a restart is required. Also check that the package.json has `dsh.client.immediately` set correctly and that `lib/client.js` is built.

Can I use my own plugin registry instead of the default one?

Yes. In the plugin config (`cordis.patch.yml`), set `catalog.urls` to point to your own `registry.json` file. You can also disable fallback search or adjust cache TTL and refresh interval.

How can I submit my plugin to the marketplace?

The marketplace aggregates plugins from GitHub topics `dsh-plugin` and npm keywords `dsh-plugin`. To list your plugin, add the `dsh-plugin` topic to your GitHub repository or the `dsh-plugin` keyword to your npm package. The registry is refreshed periodically by CI.