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

aquaman-proxy

v0.11.2

Published

API key protection proxy for OpenClaw — credentials stay in your vault, never in the agent's memory

Readme

aquaman-proxy

The proxy daemon and CLI for aquaman — API key protection for OpenClaw. Credentials stay in your vault, never in the agent's memory.

Agent / OpenClaw Gateway              Aquaman Proxy
┌──────────────────────┐              ┌──────────────────────┐
│                      │              │                      │
│  ANTHROPIC_BASE_URL  │══ Unix ═════>│  Keychain / 1Pass /  │
│  = aquaman.local     │   Domain     │  Vault / Encrypted   │
│                      │<═ Socket ════│                      │
│  fetch() interceptor │══ (UDS) ════>│  + Policy enforced   │
│  redirects channel   │              │  + Auth injected:    │
│  API traffic         │              │    header / url-path │
│                      │              │    basic / oauth     │
│                      │              │                      │
│  No credentials.     │  ~/.aquaman/ │                      │
│  No open ports.      │  proxy.sock  │                      │
│  Nothing to steal.   │  (chmod 600) │                      │
└──────────────────────┘              └───┬──────────┬───────┘
                                         │          │
                                         │          ▼
                                         │  ~/.aquaman/audit/
                                         │  (hash-chained log)
                                         ▼
                               api.anthropic.com
                               api.mistral.ai
                               api.telegram.org
                               slack.com/api  ...

This package is the right side — a reverse proxy on a Unix domain socket that stores credentials in secure backends, enforces request policies, injects auth headers, and logs every access. The agent never sees a key.

Quick Start

npm install -g aquaman-proxy              # 1. install the proxy CLI
aquaman setup                             # 2. store your API keys, install plugin
openclaw                                  # 3. done — proxy starts automatically

Installed via ClawHub? The proxy is already bundled with the plugin. Run openclaw aquaman setup to store your keys.

Troubleshooting: aquaman doctor

CLI

| Command | Description | |---------|-------------| | aquaman setup | Guided onboarding (stores keys, installs plugin, applies policy defaults) | | aquaman doctor | Diagnose issues with actionable fixes | | aquaman credentials add <svc> <key> | Store a credential | | aquaman credentials list | List stored credentials | | aquaman migrate openclaw --auto | Migrate plaintext secrets to secure store | | aquaman daemon | Run proxy in foreground | | aquaman start | Start proxy + launch OpenClaw | | aquaman stop | Stop running proxy | | aquaman status | Show config and proxy status | | aquaman policy list | List configured policy rules | | aquaman policy test <svc> <method> <path> | Dry-run a request against policy rules | | aquaman audit tail | Recent audit entries | | aquaman audit verify | Verify hash chain integrity |

25 Builtin Services

| Category | Services | |----------|----------| | Providers | Anthropic, OpenAI, GitHub, xAI, Cloudflare AI Gateway, Mistral, Hugging Face, ElevenLabs | | Channels (header) | Slack, Discord, Matrix, Mattermost, LINE, Twitch, Telnyx, Zalo | | Channels (URL-path) | Telegram | | Channels (basic) | Twilio, BlueBubbles, Nextcloud Talk | | Channels (OAuth) | MS Teams, Feishu, Google Chat | | At-rest only | Nostr, Tlon |

Security

The proxy enforces four layers of protection:

  • Process isolation — credentials in a separate address space, connected via UDS (chmod 600)
  • Service allowlistingproxiedServices controls which APIs the agent can reach
  • Request policies — method + path rules per service, checked before credential injection (details)
  • Audit trail — SHA-256 hash-chained logs of every credential use

7 credential backends: Keychain, 1Password, Vault, Bitwarden, KeePassXC, systemd-creds, encrypted-file.

Documentation

See the main README for the full security model, request policy config, Docker deployment, and architecture diagrams.

License

MIT