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

@creait/dsh-web-search-searxng

v0.1.0

Published

SearXNG-backed search provider for the DeepSeek Harness web capability seam (ctx.web)

Readme

@creait/dsh-web-search-searxng

SearXNG-backed search provider for the DeepSeek Harness ctx.web capability seam. It replaces the stock DeepSeek search route, so the model-facing web_search tool queries a self-hosted SearXNG instance instead.

Install

dsh plugin --profile web add @creait/dsh-web-search-searxng

That mounts the provider — and mounting it changes nothing yet. baseURL has no default, so an unconfigured row reports itself unavailable and ctx.web goes on selecting the shipped DeepSeek provider exactly as it did before. Two keys switch the search over, in your profile patch — $DSH_HOME/profiles/<profile>/cordis.patch.yml, where $DSH_HOME defaults to ~/.dsh:

- id: web
  config:
    searchProvider: searxng

- id: web-search-searxng
  config:
    baseURL: http://localhost:8080   # your SearXNG instance
    maxResults: 10
    engines: bing,google,wikipedia

Both are required, and they fail differently. Without baseURL the provider stays unavailable, so naming it costs you every search with WEB_PROVIDER_CONFIGURED_UNAVAILABLE. Without searchProvider two usable providers are registered and nothing chose between them, which is WEB_PROVIDER_AMBIGUOUS.

Disabling the shipped provider is a separate decision: naming one in searchProvider is what resolves the ambiguity, so web-search-deepseek can stay mounted as a fallback you can switch back to by editing one line.

- id: web-search-deepseek
  disabled: true

If you installed this before it shipped a bundle patch, your profile patch inserts the row by hand. Drop that - insert: block and keep the - id: web-search-searxng config override above: insert appends unconditionally, and a second row would register the same provider id twice, which ctx.web rejects with WEB_DUPLICATE_PROVIDER.

How the peers resolve

The plugin imports @deepseek-ai/dsh-web, @deepseek-ai/cordis and @deepseek-ai/schemastery as bare specifiers, and nothing installs them beside it. They resolve by Node's parent-directory walk from the package's realpath into $DSH_HOME/profiles/node_modules — the flat closure dsh maintains (one symlink per package in the installation's dependency graph, re-pointed on every boot by healProfilesModuleFallback).

Node resolves a symlinked package from its real location, not from the link, so that walk starts wherever the package really lives. Installing from the registry puts it under the profile and the walk lands where it should. Running a checkout instead — a link: into a working tree outside $DSH_HOME — means the walk starts in that tree, so the tree needs the peers reachable from it; the repo root README has the symlink shim that arranges exactly that.

Installing the peers locally instead is not a fix: a second copy of @deepseek-ai/dsh-web means a second WebError class and a second ctx.web service identity. That is what peerDependencies is preventing.

Config

| Key | Default | Meaning | | --- | --- | --- | | baseURL | none | SearXNG instance, trailing slashes stripped. Empty means unavailable: the row mounts, the seam ignores it | | maxResults | 10 | Sources returned; reached by paging, see below | | maxPages | 3 | Ceiling on result pages fetched for one search | | engines | '' | Comma-separated engine pin, e.g. bing,google | | timeRange | '' | day | week | month | year — freshness window | | categories | '' | e.g. news, science | | language | '' | e.g. en | | userAgent | deepseek-harness/0.0.1 (searxng search) | Sent on every request |

maxResults costs round-trips

SearXNG has no result-count parameter. It accepts count and silently ignores it — a request for three results still returns ten. The only lever is pageno, so maxResults above one page's worth is reached by paging, bounded by maxPages. A page that contributes nothing new ends the loop rather than paging into repeats, and the common case (maxResults ≤ one page) costs exactly one request.

timeRange needs an engine that implements it

A general-web engine that does not support time filtering returns nothing for a filtered query rather than ignoring the filter — and does not report itself unresponsive. bing gives ten results for nvidia gpu and zero for the same query with time_range=week. Freshness works in the news category, whose engines implement it and populate publishedDate:

config:
  categories: news
  timeRange: week

When a windowed search comes back empty the provider says so in content, rather than letting a filter artefact read as an empty web.

When a search returns nothing

A public-engine SearXNG instance degrades quietly. Engines get CAPTCHA'd, rate-limited and suspended individually, and SearXNG answers with an empty results array plus an unresponsive_engines list that the seam has nowhere to put. The search tool renders that as No results found. — which the model reads as the web holds nothing, and it is nothing of the kind.

On 2026-08-23 every engine in one instance's enabled general category was down at once (duckduckgo and startpage on CAPTCHA, brave suspended for too many requests, google returning nothing while not even reporting itself unresponsive). Every general web search on it returned zero results, silently.

So this provider distinguishes the two:

  • No results, no failed engines → an empty result. A genuine no-hit.
  • No results, some failed enginesWEB_PROVIDER_ERROR naming them. The provider cannot tell an empty web from a broken search, and says so rather than letting the model conclude the stronger thing.
  • Some results, some failed engines → the results, led by a degraded-coverage warning naming the failed engines.

engines is the lever: pin the ones your instance can actually reach, and add others back as they recover.

The content block

WebSearchResult.content is rendered by the web tool above the source list, which makes it the only channel a provider has for saying something about the search rather than about one result. Every line is conditional, because it is paid for on every call:

  • an answer SearXNG resolved outright, when there is one;
  • the degraded-coverage warning above;
  • the escalation to web_fetch — snippets are index summaries, and a question about live state (a price, availability, a count, a status) cannot be answered from them. web_search's own guidance says this only when web_fetch is mounted in the same composition, which is false on the web surface, where the search tool is per-preset and the fetch half is host-plane;
  • spelling corrections and query suggestions, only when nothing was found.

Verify

scripts/smoke.sh in the repo checkout (it is not in the published tarball) drives the real provider class against a real instance and checks that all three patch rows survived composition:

DSH_PROFILE=web SEARXNG_URL=http://localhost:8080 ./scripts/smoke.sh

What breaks this

The seam this binds to (ctx.web.registerSearchProvider, WebError with WEB_PROVIDER_ERROR / WEB_ABORTED, search() -> { content?, sources, truncated }) is a pre-1.0 internal API with no compatibility guarantee. peerDependencies pins @deepseek-ai/dsh-web to ^0.1.0-rc.7, but the profile sets autoInstallPeers: false, so a mismatch is a pnpm warning, not a guard — at runtime the plugin resolves whatever $DSH_HOME/profiles/node_modules points at and loads against it. Treat that warning as the canary and run the smoke test after every dsh update.

Note that dsh's own dependencies float on ^0.1.0-rc.N ranges, so a fresh npm i -g @deepseek-ai/dsh can pull newer internals than the CLI's own version suggests. Verified working against dsh CLI 0.1.0-rc.7 with rc.8 internals.