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

@anjieyang/uncommon-route

v0.3.0

Published

OpenClaw plugin for UncommonRoute, the local LLM router that cuts premium-model spend

Readme

@anjieyang/uncommon-route

OpenClaw plugin for UncommonRoute, the local LLM router that sends easy requests to cheaper models and saves stronger models for harder work.

If you use OpenClaw and want one local endpoint with smart routing behind it, this plugin is the shortest path.

Mental Model

OpenClaw -> UncommonRoute -> your upstream API

This plugin:

  • installs the Python uncommon-route package if needed
  • starts uncommon-route serve
  • registers the local provider with OpenClaw
  • exposes the virtual routing modes like uncommon-route/auto

Install

openclaw plugins install @anjieyang/uncommon-route
openclaw gateway restart

That is enough to install the plugin.

For real responses, you still need to configure an upstream model API.

Configure An Upstream

UncommonRoute does not host models. It routes to an upstream OpenAI-compatible API.

Example plugin config:

plugins:
  entries:
    "@anjieyang/uncommon-route":
      port: 8403
      upstream: "https://api.commonstack.ai/v1"
      spendLimits:
        hourly: 5.00
        daily: 20.00

Common upstream choices:

| Provider | URL | | --- | --- | | Parallax | http://127.0.0.1:3001/v1 | | Commonstack | https://api.commonstack.ai/v1 | | OpenAI | https://api.openai.com/v1 | | Local Ollama / vLLM | http://127.0.0.1:11434/v1 |

If your upstream needs a key, set UNCOMMON_ROUTE_API_KEY in the environment where OpenClaw runs.

Parallax is best treated as an experimental local upstream for now: its public docs show POST /v1/chat/completions, but UncommonRoute model discovery may be limited because a public /v1/models route was not obvious in the repo.

What You Get

  • a local OpenClaw provider backed by http://127.0.0.1:8403/v1
  • uncommon-route/auto for balanced smart routing
  • hardcoded additional virtual modes: uncommon-route/fast and uncommon-route/best

The router also keeps a fallback chain, records local feedback, and exposes a local dashboard at http://127.0.0.1:8403/dashboard/.

OpenClaw Commands

| Command | Description | | --- | --- | | /route <prompt> | Preview which model the router would pick | | /spend status | Show current spending and limits | | /spend set hourly 5.00 | Set an hourly spend limit | | /feedback <signal> | Use ok, weak, strong, status, or rollback to rate the last routing decision or inspect feedback state |

Troubleshooting

If the plugin is installed but responses are failing:

  1. Make sure your upstream URL is configured.
  2. Make sure UNCOMMON_ROUTE_API_KEY is set if your provider requires one.
  3. Open http://127.0.0.1:8403/health.
  4. Open http://127.0.0.1:8403/dashboard/.

Benchmarks

Current repo benchmarks:

  • 92.3% held-out routing accuracy
  • ~0.5ms average routing latency
  • 67% lower simulated cost than always using Claude Opus in a coding session

Links

License

MIT