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

@seekrit/proxy

v0.10.2

Published

npx-able launcher for seekrit-proxy — swap {{seekrit:NAME}} placeholders in outbound requests for decrypted secrets, so an agent never holds the key.

Readme

@seekrit/proxy

An npx-able launcher for seekrit-proxy, seekrit's egress proxy for untrusted workloads: the workload sends {{seekrit:NAME}} placeholders, the proxy swaps in the real decrypted value on the way to an allowlisted upstream. The agent never holds the key.

SEEKRIT_TOKEN=skt_… npx -y @seekrit/proxy --config seekrit-proxy.toml

The proxy itself is a Rust binary. This package downloads the released build for your platform, verifies its SHA-256 against the checksum published beside it, and runs it with the arguments you passed. It interprets no flags of its own — --help shows the proxy's help — and adds no defaults.

Don't have a config yet?

The seekrit CLI generates one, and can run the proxy in one step without writing a file:

npx -y @seekrit/cli proxy run --preset openai      # nothing written
npx -y @seekrit/cli proxy init --preset openai     # a reviewable seekrit-proxy.toml
npx -y @seekrit/cli proxy init --agent nova        # from published policy

Environment

| Variable | Default | Purpose | | --- | --- | --- | | SEEKRIT_TOKEN | — | Service token the proxy resolves with. Required — it fails closed without one. | | SEEKRIT_PROXY_BIN | — | Path to a binary you already have. Skips the download entirely. | | SEEKRIT_PROXY_VERSION | this package's version | Binary version to fetch. | | SEEKRIT_PROXY_BASE_URL | https://proxy.seekrit.dev | Where artifacts are fetched from. |

Downloads are cached under $XDG_CACHE_HOME/seekrit/proxy (or ~/.cache/seekrit/proxy), keyed by version and target, so the fetch happens once per version.

The package version tracks the binary version it fetches, so npx @seekrit/[email protected] runs proxy 0.7.0.

Other ways to install

  • A binary on your PATHcurl -fsSL https://proxy.seekrit.dev/install.sh | sh
  • A containerdocker run seekritdev/proxy (multi-arch, static musl on scratch)
  • From sourcecargo build --release in apps/proxy

Security

SEEKRIT_TOKEN must not be readable by the workload the proxy exists to constrain: anything that can read it can call /v1/resolve itself and skip the proxy. Run the proxy as a separate OS user, or in its own container. See the guide's honest limits for the full discussion.