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

@zhengcankai/deepseek-harness

v0.1.8

Published

Patched DeepSeek Harness CLI runnable through npx

Readme

@zhengcankai/deepseek-harness

Patched DeepSeek Harness CLI, runnable through npx.

Tracks upstream @deepseek-ai/dsh and @deepseek-ai/dsh-llm-deepseek at 0.1.5-rc.2 (bumped from 0.1.1-rc.2 in 0.1.6; all three remaining patches were re-verified against the pristine 0.1.5-rc.2 tarballs).

npx --yes @zhengcankai/deepseek-harness web --port 8080

Both bin names are provided:

npx @zhengcankai/deepseek-harness web
npx dsh-zck web

The wrapper applies three patches at startup (and also via postinstall):

  1. content-visibility on @deepseek-ai/dsh-web-frontend (dist/index.html): injects a style that renders only viewport-near conversation rows, so very long sessions (hundreds of KB of text) stop freezing the browser on every streamed chunk.
  2. content_filter as stop on @deepseek-ai/dsh-llm-deepseek: OpenAI- compatible upstreams legally return finish_reason=content_filter; dsh's default mapping turns unrecognized reasons into an error and aborts the whole turn. This patch maps it to a normal stop so the turn ends cleanly.
  3. connection RPC webServer inject on @deepseek-ai/dsh-client-connection (added in 0.1.7): the RPC registry resolves owner.webServer inside an effect() fiber, which cordis 0.1.5 rejects with cannot get property "webServer" without inject. Any plugin that calls ctx.connection.rpc.handle() (e.g. dsh-funny-wiki panels) therefore failed to load and aborted the whole plugin tree. The patch wraps the registration in ctx.inject(['webServer']) — the same shape the core uses for its own /api route.

Three patches carried by 0.1.5 were dropped because upstream 0.1.5 fixed them natively (verified against the pristine 0.1.5-rc.2 source):

| Dropped patch | Upstream fix in 0.1.5 | |---|---| | empty tool-name overwrite | block.name = acceptIdentity(block.name, call.function?.name) | | privileged-methods loopback-only fence | isTrustedApiRequest(request, this.trustedHosts) | | serializeAssistant missing name field | name: block.name ?? "" |

Note: 0.1.5 requires a browser-session cookie. dsh web prints http://host:port/?token=...; opening that URL once mints an authority-bound signed cookie (30 days by default, cookieMaxAgeDays). Deployments reached through a domain/proxy need one such visit per authority.

Requires Node.js >= 22.19.