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

@byoky/openclaw-plugin

v0.4.18

Published

Byoky wallet provider plugin for OpenClaw — manage AI API keys from your browser wallet

Downloads

1,670

Readme

@byoky/openclaw-plugin

OpenClaw provider plugin that routes LLM API calls through your Byoky browser wallet. Keys never leave the extension.

OpenClaw → HTTP → Bridge (localhost) → Native Messaging → Extension → LLM API

Setup

1. Install the bridge (one-time):

npm install -g @byoky/bridge
byoky-bridge install

2. Install the plugin:

npm install -g @byoky/openclaw-plugin

3. Connect your wallet:

openclaw models auth login --provider byoky-anthropic

This opens your browser. Unlock your Byoky wallet and approve the connection. The bridge starts automatically.

4. Done. OpenClaw now routes API calls through your wallet:

# Verify the bridge is running
curl http://127.0.0.1:19280/health
# → {"status":"ok","providers":["anthropic"]}

Available Providers

The plugin registers all 15 Byoky providers with OpenClaw:

| Provider | OpenClaw ID | Models | |----------|-------------|--------| | Anthropic | byoky-anthropic | Claude Opus 4, Sonnet 4, Haiku 4.5 | | OpenAI | byoky-openai | GPT-4.1, o3, o4-mini, GPT-4.1 Mini | | Google Gemini | byoky-gemini | Gemini 2.5 Pro, 2.5 Flash | | xAI | byoky-xai | Grok 3, Grok 3 Mini | | DeepSeek | byoky-deepseek | DeepSeek V3, R1 | | Mistral | byoky-mistral | Mistral Large | | Groq | byoky-groq | Llama 3.3 70B | | Cohere | byoky-cohere | Set model manually | | Perplexity | byoky-perplexity | Set model manually | | Together AI | byoky-together | Set model manually | | Fireworks AI | byoky-fireworks | Set model manually | | OpenRouter | byoky-openrouter | Set model manually | | Replicate | byoky-replicate | Set model manually | | Hugging Face | byoky-huggingface | Set model manually | | Azure OpenAI | byoky-azure_openai | Set model manually |

To connect a different provider:

openclaw models auth login --provider byoky-openai
openclaw models auth login --provider byoky-gemini

Commands

The plugin adds an OpenClaw command:

/byoky    Show bridge status and connected providers

How it works

  1. The plugin registers Byoky providers in OpenClaw, each pointing to http://127.0.0.1:19280/<provider>
  2. When OpenClaw makes an API call, the request hits the local Byoky Bridge
  3. The bridge relays the request to the Byoky extension via native messaging
  4. The extension injects the real API key and calls the provider API
  5. The response streams back through the same path

Your API keys exist only inside the extension's encrypted vault.

License

MIT