Skip to content

ihuajiu/dsh-plugin-finder

30Last commit Aug 16, 2026

dsh-plugin-finder DSH plugin

The plugin registers a single agent tool, `find_plugin`, which searches the dsh.so plugin index based on a user's natural language query. It returns ranked results including name, GitHub stars, topics, description, verification level, security status, and an install command. This helps users discover and evaluate plugins without leaving the DSH agent session.

How to install the dsh-plugin-finder DSH plugin

dsh plugin --profile web add dsh-plugins-finder

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

dsh-plugin-finder DSH plugin data source

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

discovered

What the dsh-plugin-finder DSH plugin can do

  • Search the dsh.so plugin index using natural language queries (English and Chinese supported).
  • Return detailed information for each matching plugin: name, stars, topics, description, verification level (L1–L5), security status/risk, install command, and detail link.
  • Configurable search parameters: maxResults, cacheTtlMs, timeoutMs, and indexUrl.

Where the dsh-plugin-finder DSH plugin fits

  • Quickly find a DSH plugin for a specific task (e.g., OCR, terminal TUI, memory) during an agent session.
  • Evaluate a plugin's security status and verification level before deciding to install it.
  • Compare multiple similar plugins by their stars, topics, and descriptions to choose the best fit.

Who the dsh-plugin-finder DSH plugin is for

  • DeepSeek Harness users who want to extend agent capabilities with community plugins.
  • DSH plugin developers or administrators who need to manage and discover plugins from the registry.

dsh-plugin-finder DSH plugin limitations

  • Search relies on keyword scoring (name/topic/description hits), not AI semantic understanding; phrasing may affect results.
  • Requires network access to the dsh.so registry; does not work offline.

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

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

Find DeepSeek Harness plugins from the [dsh.so](https://dsh.so) registry — like *find-skill*, but for dsh plugins. This plugin registers one agent tool, **`find_plugin`**: describe a need in natural language, and it searches the dsh.so plugin index for the best-matching plugins, returning name, GitHub stars, topics, description, **verification level (L1–L5)**, **security status & risk**, an **install command**, and a detail link. <p align="center"> <a href="https://www.dsh.so" rel="dofollow"> <img src="https://raw.githubusercontent.com/ihuajiu/dsh-plugins-finder/main/assets/dsh-so-logo.svg" alt="dsh.so logo" width="72"> </a> <br> <strong>Powered by <a href="https://www.dsh.so" rel="dofollow">dsh.so</a></strong> <br> <em>the DeepSeek Harness plugin registry — discover, compare and install plugins · 发现、对比并安装 DSH 插件</em> </p> **中文版**: [README.zh.md](https://github.com/ihuajiu/dsh-plugins-finder/blob/main/README.zh.md) ## Table of Contents 1. [Install](#1-install) 2. [Peer Dependency Warnings (Important)](#2-peer-dependency-warnings-important) 3. [Usage](#3-usage) 4. [Output Format](#4-output-format) 5. [Search Tips](#5-search-tips) 6. [Configuration](#6-configurat

Read the full READMERepository license: Apache-2.0

dsh-plugin-finder DSH plugin questions

How do I install dsh-plugin-finder?

Run `dsh plugin --profile web add dsh-plugins-finder` and then restart the web profile with `dsh web`. You can also use other profiles by changing the profile name in the command.

Can I use Chinese queries for searching?

Yes, Chinese queries work, but English keywords tend to match better because the scoring is based on word tokenization. For best results, use English keywords like 'ocr', 'tui', or 'memory'.

Why do I see peer dependency warnings during installation?

Those warnings are benign false positives. The plugin relies on host-managed packages that pnpm cannot see in the profile directory. No action is needed; the plugin works normally.

How can I configure the number of results returned?

You can set `maxResults` in the plugin configuration (e.g., in cordis.yml). The default is 5, and the maximum is 10. You can also adjust cacheTtlMs and timeoutMs.

What data source does the plugin search?

It searches the dsh.so plugin index (https://www.dsh.so/plugins-index.json). This index is maintained by the dsh.so registry and includes most publicly available DSH plugins.