npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@snowsalt/dsh-manager

v0.3.0

Published

ComfyUI-Manager-style plugin marketplace for DeepSeek Harness: browse, install, update, and remove dsh plugins. Download and use — no special build needed.

Readme

@snowsalt/dsh-manager

ComfyUI-Manager-style plugin marketplace for DeepSeek Harness.

Download and use — no special build needed. Install as a standard dsh profile plugin, then open the marketplace page to browse, install, update, and remove dsh plugins from a community registry plus a live npm search.

Features

  • Plugin marketplace: browse installable dsh plugins (official + npm search + community registry).
  • One-click install / uninstall / update via the dsh plugin CLI.
  • Community registry (ComfyUI-style): a hosted JSON index that anyone can extend by PR.
  • Live npm search: discovers @deepseek-ai/dsh-* and dsh-plugin-tagged packages automatically.
  • Standalone page: served by the harness webserver at /dsh-manager — works in any browser.

Install

# 1. Add the plugin to the web profile
dsh plugin --profile web add @snowsalt/dsh-manager

# 2. Start the harness web UI
dsh web

# 3. Open the marketplace
#    http://127.0.0.1:3080/dsh-manager

For a pre-release / git source:

dsh plugin --profile web add git+https://github.com/KYZHXL/dsh-manager.git

How it works

The bundle patch (cordis.patch.yml) inserts a host plugin that registers HTTP routes on the harness webserver:

| Route | Purpose | |---|---| | GET /dsh-manager | The standalone marketplace page (self-contained HTML/JS). | | GET /api/dsh-manager/snapshot | Merged catalog: npm search + community registry + installed state. | | POST /api/dsh-manager/install | dsh plugin add <source> for one entry. | | POST /api/dsh-manager/uninstall | dsh plugin remove <source>. | | POST /api/dsh-manager/update | dsh plugin update all. |

It depends only on @deepseek-ai/cordis and @deepseek-ai/dsh-host-webserver (peer dependencies), so it works on any stock DeepSeek Harness.

Community registry

The default registry is hosted at KYZHXL/dsh-plugin-registry (plugins.json). To add your plugin, open a PR adding one entry:

{
  "id": "my-plugin",
  "title": "My Plugin",
  "author": "You",
  "description": "What it does.",
  "source": "git+https://github.com/you/my-plugin.git",
  "reference": "https://github.com/you/my-plugin"
}

source may be an npm package name or a pnpm-installable git URL.

Development

npm install
npm run build     # tsc + copy market.html into lib/web
npm pack          # build the installable tarball

License

MIT