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

@or3/openclaw

v0.1.0

Published

Minimal Sessions/Runs bridge from OR3 Chat to OpenClaw

Readme

OR3 Runs for OpenClaw

This plugin exposes OpenClaw's normal agent lifecycle to OR3 Chat at the Gateway's /or3/ URL. It can reuse the Gateway bearer token or use a dedicated OR3 bearer token while retaining the Gateway token for internal RPCs.

Install

openclaw plugins install ./packages/openclaw-or3
openclaw plugins enable or3-runs
openclaw config set plugins.entries.or3-runs.config.allowedOrigins '["http://localhost:3000"]'
openclaw gateway restart

If plugins.allow is configured, add or3-runs to its existing array. Do not replace the array, because doing so disables every plugin ID you omit.

After this package is published, the first command can instead be openclaw plugins install npm:@or3/[email protected] --pin.

In OR3 Chat, open Agents → Connection settings → Advanced, then enter:

  • URL: http://127.0.0.1:18789/or3/ (replace the host when remote)
  • Token: the existing OpenClaw Gateway bearer token

OR3 detects OpenClaw automatically. The plugin reuses a string-valued Gateway token from gateway.auth.token (or OPENCLAW_GATEWAY_TOKEN). If the Gateway uses a password, CLI-only token, or SecretRef, set the same bearer value at plugins.entries.or3-runs.config.token and the internal Gateway bearer at plugins.entries.or3-runs.config.gatewayToken.

The connection uses OpenClaw's configured model catalog and thinking levels, and reads the live built-in/plugin/skill command catalog from the Gateway. Commands with known options render safe follow-up buttons. /models uses a provider picker followed by a paginated model picker; selecting a model sends OpenClaw's normal /model <provider/model> command. The existing OR3 attachment picker sends images, documents, audio, and video directly to OpenClaw with the message. Attachment bytes are held only until the authenticated request is dispatched; they are not uploaded to or stored by an OR3 relay. Attachments can total up to 20 MB per message. Mode, isolation, and workspace controls remain hidden because this channel bridge does not implement those per-message settings. Restart the Gateway after upgrading the plugin so streaming and discovery code is reloaded.

Replace http://localhost:3000 with OR3's exact browser origin. The origin can be configured in either gateway.controlUi.allowedOrigins or plugins.entries.or3-runs.config.allowedOrigins. Wildcard origins are not accepted. Keep the Gateway behind HTTPS or a trusted private network when it is not bound to loopback.

The package is tested against OpenClaw 2026.7.1-2 and declares compatibility only with the 2026.7.x line.