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

@strakelabs/openclaw-strake

v1.0.2

Published

OpenClaw provider plugin — route inference through a Strake encrypted proxy endpoint.

Readme

@strakelabs/openclaw-strake

OpenClaw shouldn't need your real API keys. Now it doesn't.

This plugin registers Strake as a model provider in OpenClaw. Your actual OpenAI, Anthropic, or other API keys stay encrypted in the Strake vault. OpenClaw gets a disposable proxy URL and a bearer token — independently revocable, never stored in plaintext on your machine.


How it works

OpenClaw → Strake endpoint → your real API key → upstream provider
                ↑
        disposable bearer token
        (revoke it anytime without
         touching the real key)

Strake sits in the middle. If the token leaks, rotate it in seconds. The real key never moves.


Install

openclaw plugins install @strakelabs/openclaw-strake

Setup

1. Create a Strake endpoint at app.strake.sh — pick your provider, paste your API key, grab the endpoint URL and bearer token.

2. Set the environment variables:

export STRAKE_BASE_URL=https://abc123.strake.sh
export STRAKE_TOKEN=your-bearer-token

Add these to your shell profile or CI secrets. The token is what you generated in the Strake dashboard — not your real API key.

3. Onboard:

openclaw onboard

Note: Pass STRAKE_TOKEN as an env var rather than --strake-token on the command line — OpenClaw detects it automatically at onboard time. The --strake-token flag isn't available until after the plugin is fully loaded.

4. Run:

openclaw --model strake/gpt-4o
openclaw --model strake/claude-3-5-sonnet-20241022
openclaw --model strake/gemini-2.0-flash

Any model ID your upstream provider accepts works — Strake proxies it through unchanged.


Why bother?

| Without Strake | With Strake | |---|---| | Real key in ~/.openclaw/config | Disposable token only | | Key leak = full account exposure | Token leak = revoke in seconds | | One key, all your tools share it | Per-tool tokens, isolated blast radius | | Rotate key = update every tool | Rotate key = zero config changes |


Environment variables

| Variable | Required | Description | |---|---|---| | STRAKE_BASE_URL | Yes | Your Strake endpoint URL (e.g. https://abc123.strake.sh) | | STRAKE_TOKEN | Yes | Bearer token from your Strake endpoint |

Both are set by the Strake CLI automatically if you use strake run:

strake run my-proxy -- openclaw

No manual env setup needed — the token is minted, injected, and revoked when OpenClaw exits.


Using with the Strake CLI

If you have the Strake CLI installed, the cleanest workflow is:

# One-time setup
strake auth login
strake endpoint create openai

# Every session
strake run my-proxy -- openclaw

strake run mints an ephemeral token, sets STRAKE_BASE_URL and STRAKE_TOKEN, launches OpenClaw, and revokes the token on exit. Nothing lingers.


Links


MIT © Dalton Solutions, LLC