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

dsh-plugin-check

v0.1.0

Published

Check the dsh plugins you already installed against a registry of verified packages: which ship a broken package, which are pinned to a dsh version that no longer exists, and which run code on your machine at install time. Drafts the issue that fixes each

Readme

dsh-plugin-check

Check the DeepSeek Harness plugins you already installed, and draft the issue that fixes each problem.

Every plugin marketplace answers what could I install. None of them answers is what I installed still working — which is the question that decays: dsh went 0.0.1-rc.10.1.0-rc.6 in its first five days, so a plugin that installed cleanly last week can be pinned to a range that no longer resolves.

Install

dsh plugin --profile web add dsh-plugin-check

Use

Ask the agent to check your plugins. It calls the plugin_check tool, which reads the profiles under $DSH_HOME, asks dshplugins.co what it knows about each installed package, and reports the difference.

Checked 6 installed plugin(s): 4 with problems, 0 not in the registry.

[web] @nanmicoder/dsh-agent-teams
  error: depends on @deepseek-ai/dsh-llm@^0.0.1-rc.1, but npm now ships 0.1.0-rc.6

[web] @a834063245/hologram-dsh
  error: rows-resolvable: 1 row(s) name something an install cannot resolve

Pass draftReports: true and it also writes an issue body per problem plugin, naming the exact edit that fixes it, ready to file against that plugin's repository.

What it reports

| Finding | Meaning | |---|---| | patch-shipped | The declared cordis.patch.yml never shipped — the plugin installs and the layer is not there | | rows-resolvable | A patch row names something an install cannot resolve, usually the package's pre-publish name | | client-half-shipped | A declared browser half is missing — it boots fine and the UI never appears | | prebuilt | Source only, so installing runs its build script on your machine | | stale range | Its dsh dependency range excludes the version npm ships today |

It is read-only

It never installs, upgrades, or removes anything. Most of what it finds can only be fixed by the plugin's author, which is why it drafts the report rather than pretending to repair.

It reads packaging, not code: a plugin with nothing reported can still be malicious or useless. Treat it as a dead-on-arrival filter, not a safety endorsement — a plugin runs inside the dsh process with everything dsh can reach.

Configuration

- id: plugin-check
  name: dsh-plugin-check
  config:
    registry: https://dshplugins.co   # any host serving the same /api/v1 shape
    timeoutMs: 8000

Data comes from the free dshplugins.co API (CC BY 4.0), which downloads every published tarball daily and checks it against what its manifest claims.

MIT