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-fullweb

v0.1.3

Published

Key-free internet access for the DeepSeek Harness: anonymous DDG/Bing web_search and a guarded public HTTP(S) web_fetch, plus the Code + full web agent preset. Installs as a dsh profile bundle.

Readme

dsh-fullweb

Key-free internet access for the DeepSeek Harness (run as npx @deepseek-ai/dsh web):

  • web_search — anonymous DuckDuckGo HTML search with a Bing fallback. No API key, no vendor billing endpoint.
  • web_fetch — public HTTP(S) retrieval with SSRF protection (loopback, private ranges, link-local, and file:// are blocked; every redirect hop is re-validated), size/char caps, and HTML→markdown handled by dsh itself.
  • "Code + full web" agent preset (code-fullweb) — the shipped code preset with web_fetch enabled. It installs itself into your preset root (~/.dsh/.agent-presets/) on first boot and stays in sync when you update this package (a version stamp marks managed copies).

Everything runs locally through Node's fetch. The deployment's own search provider (e.g. DeepSeek) stays registered but is never selected, so no web traffic touches a paid endpoint.

Requirements

  • Node 20+ with npx, and the harness available as npx @deepseek-ai/dsh (any launcher: web, TUI, headless).
  • pnpm on PATH (npm install -g pnpm) — plugin installs are forwarded to it.

Install

One command per profile you want web access in (usually just web for the browser UI):

# from npm:
npx @deepseek-ai/dsh plugin --profile web add dsh-fullweb

# or straight from git (no registry needed):
npx @deepseek-ai/dsh plugin --profile web add git+https://github.com/arialp/dsh-fullweb.git#main

What happens: pnpm installs the package into your profile, and dsh automatically appends it to the profile's bundle stack — its patch layer then selects the local providers on the host web row. On the next boot the plugin also copies the shipped preset into ~/.dsh/.agent-presets/code-fullweb/ (idempotent; a .dsh-fullweb-version stamp marks it as managed).

To stop the preset from installing at all while keeping the web tools, create an opt-out marker: touch ~/.dsh/.agent-presets/.dsh-fullweb-absent.

Enable the preset

The provider side is active for the whole profile immediately. The model-facing tools appear in sessions that run a preset with web_fetch enabled:

  • New chats: Settings → General → agent preset → pick "Code + full web", or make it the default there so every new chat gets both tools.

  • Or set it per user document (~/.dsh/settings.yaml):

    agent-presets:
      default: code-fullweb

Existing sessions keep the preset they were created with; a session that has not produced anything yet can switch presets from its controls.

Uninstall / update

npx @deepseek-ai/dsh plugin --profile web remove dsh-fullweb     # or <git spec> if installed from git
npx @deepseek-ai/dsh plugin --profile web update                 # bump to the newest published version

remove takes the providers and the profile layer out of that profile. The preset copy in ~/.dsh/.agent-presets/ is left behind (it is yours now); delete the directory if you want it gone — while the package is still installed, add .dsh-fullweb-absent first so boot does not restore it on the next start. If you had set code-fullweb as your default preset, clear that setting (or pick another) before removing.

Configuration

The provider entry (id: web-local) accepts optional config; override it with your own patch layer in ~/.dsh/profiles/web/cordis.patch.yml:

- id: web-local
  config:
    userAgent: "MyAgent/1.0"     # browser-like UA is the default (engines 403 the Node client)
    fetchTimeoutMs: 45000        # per-request backstop; the tool layer's own budget still applies
    maxRedirects: 5              # redirect hops allowed before WEB_LOCAL_TOO_MANY_REDIRECTS
    downloadCapBytes: 25000000   # stop downloading past this (result is flagged truncated)
    bodyCapChars: 100000         # decoded-body cap handed to the tool layer (truncated flag set)

All keys are optional; defaults suit normal web use.

Notes & limits

  • Search scrapes public HTML endpoints, so results are only as good as DuckDuckGo/Bing's anonymous tier and both engines can rate-limit heavy usage (the provider tries Bing automatically when DDG fails).
  • The preset is the code (Code Mode) preset: it expects a profile that composes a TypeScript runtime (dsh-web-app does). Install into other profiles only if they provide one.
  • The fetch guard validates the target before connecting and on each redirect, but DNS can still change between check and connect; treat it as a local-tool guardrail, not a security boundary.

License

MIT — see LICENSE.