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

@deemwario/agent-proxy

v0.1.1

Published

Local MITM proxy that masks secrets before they leave your machine — install for the AgentProxy CLI + agent wrappers.

Readme

@deemwario/agent-proxy

npm license platforms

A local proxy that masks secrets before they leave your machine.

AgentProxy sits between your AI coding agents (Claude, Codex, Copilot, opencode, Devin) and their remote APIs. It scans outbound traffic, replaces any secret it finds with a shape-preserving surrogate, and restores the original in the response — so the agent works exactly as normal and your secrets never hit the wire.

Zero cloud dependency. Runs entirely on your machine. No changes to your agents.

Before:  Claude → api.anthropic.com               (prompt contains sk-ant-api03-abc123…)
After:   Claude → AgentProxy → api.anthropic.com   (prompt contains sk-ant-api03-rda120…)

The response comes back with the real value restored, so the agent sees what it expects.


Install

npm install -g @deemwario/agent-proxy
agentproxy version

No Go toolchain required — postinstall downloads the prebuilt binary for your platform from the GitHub release, verifies its SHA256 against the release checksums.txt, and extracts the agentproxy binary plus the agent wrappers onto your PATH.

Other install paths (all fetch the same SHA256-verified binary):

# curl-pipe (macOS / Linux)
curl -fsSL https://agentproxy.deemwar.com/install.sh | bash

# Homebrew (macOS)
brew install deemwar-products/agent-proxy/agentproxy

# Scoop (Windows)
scoop bucket add agent-proxy https://github.com/deemwar-products/scoop-agent-proxy
scoop install agentproxy

Supported: macOS / Linux (x64, arm64), Windows (x64).


Quick start

agentproxy setup --open      # trust the local CA, start the proxy + dashboard (idempotent)

Then run your agents through the proxy — one wrapper per agent, installed alongside the binary:

claudeproxy    "summarise this codebase"
codexproxy     "fix the failing test"
copilotproxy   suggest "list files by size"
opencodeproxy  "add a test for the parser"
devinproxy     "triage this bug"

Each wrapper routes an agent through the proxy — it does not install the agent. The agent's own CLI (claude, codex, the GitHub Copilot CLI, opencode, devin) must already be installed and authenticated. A wrapper prints the exact install command if its CLI is missing.

Transparent mode (no wrapper)

Prefer plain claude / codex? Enable transparent mode once and every new shell routes through AgentProxy automatically:

agentproxy shell enable      # persists proxy + CA env into ~/.zshrc / ~/.bashrc (reversible)

Run as a background service

agentproxy service install    # auto-start at login (launchd / systemd --user / Task Scheduler)

What gets masked

API keys, connection strings, JWTs, .env contents, and private keys — detected by regex patterns, including secrets buried inside gzip / base64 / hex / URL-encoded bodies. Surrogates are random-looking and shape-preserving, and restoration works even across streamed (SSE / WebSocket) response chunks.

Privacy

  • Everything is local — no account, no telemetry, no cloud.
  • Originals never touch disk — surrogate↔original mappings live in memory only.
  • Binaries are verified — every install path checks the archive SHA256 before extracting.

📖 Full docs & dashboard: agentproxy.deemwar.com · MIT licensed