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

claude-max-proxy

v1.0.0

Published

Drop-in fix for OpenClaw — route agents through Claude Code CLI on your Max subscription

Readme

claude-max-proxy

Drop-in fix for OpenClaw when Anthropic blocks your Max subscription from the gateway.

Reads your openclaw.json, loads all your agents and skills, and routes everything through the Claude Agent SDK instead of the gateway. Works with all OpenClaw channels — Telegram, WhatsApp, Slack, Discord, Signal, iMessage, Teams, Matrix, IRC, and 20+ more.

Before (blocked):
  Any channel → OpenClaw Gateway → Claude API  ← BLOCKED

After (this script):
  Any channel → OpenClaw Gateway → claude-max-proxy → Claude Code CLI → Max sub  ← WORKS

Install & Run

Pick one. Node.js and Python are two ways to run the exact same proxy — choose whichever you already have installed. You do not need both.

Option A — Node.js (npm)

Requires Node.js 18+.

npx claude-max-proxy

Or install globally:

npm i -g claude-max-proxy
claude-max-proxy

Option B — Python (pip)

Requires Python 3.10+.

git clone https://github.com/nmarijane/claude-max-proxy
cd claude-max-proxy
pip install .
claude-max-proxy

Output

$ claude-max-proxy

  claude-max-proxy — 3 agents loaded

  🤖 Agent-1           model=claude-sonnet-4-6
  🤖 Agent-2           model=claude-opus-4-6
  🤖 Agent-3           model=claude-sonnet-4-6

[08:31:42] [proxy] listening on http://0.0.0.0:3777
[08:31:42] [proxy]   POST /v1/agent/{agent_id}
[08:31:42] [proxy]   GET  /v1/agents
[08:31:42] [proxy]   GET  /health

How It Works

┌──────────────────────────────────────────────────────────────────┐
│                       Your machine                               │
│                                                                  │
│  ┌──────────────┐                                               │
│  │   OpenClaw    │                                               │
│  │   Gateway     │──POST /v1/agent/{id}──┐                      │
│  │               │                        │                      │
│  │  Telegram ──┤ │                        ▼                      │
│  │  WhatsApp ──┤ │              ┌──────────────────┐             │
│  │  Slack    ──┤ │              │ claude-max-proxy │             │
│  │  Discord  ──┤ │              │                  │             │
│  │  Signal   ──┤ │              │  Loads agent     │             │
│  │  iMessage ──┤ │              │  workspace →     │             │
│  │  Teams    ──┤ │              │  system prompt → │             │
│  │  Matrix   ──┤ │              │  Agent SDK →     │             │
│  │  20+ more ──┤ │              │  Claude Code CLI │             │
│  └──────────────┘              └────────┬─────────┘             │
│                                          │                      │
│                                          ▼                      │
│                             ┌────────────────────────┐          │
│                             │   Claude Code CLI      │          │
│                             │   (Max subscription)   │          │
│                             │   $0 per token         │          │
│                             └────────────────────────┘          │
└──────────────────────────────────────────────────────────────────┘

Config

Reads your existing openclaw.json — no extra config needed.

claude-max-proxy                                # auto-detect ~/.openclaw/openclaw.json
claude-max-proxy /path/to/openclaw.json         # explicit path
claude-max-proxy --port 8080                    # custom port
OPENCLAW_CONFIG=/path/to/config claude-max-proxy

Requirements

  • Claude Code CLI installed and authenticated
  • Claude Max subscription
  • OpenClaw with openclaw.json
  • Node.js 18+ or Python 3.10+ (one of the two, see Install above)

Limitations

  • Same quota as Claude Code — Max plan rate limits apply
  • Sequential per agent — one message at a time per agent
  • No streaming — replies sent after full response

License

MIT