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

@filiptrivan/openclaw-helmio-chat-probe

v0.0.3

Published

ADR-0008 probe plugin (published under @filiptrivan personal scope as a temporary stand-in for @helmio org): validates SignalR Node client (C1) and OpenClaw plugin install path (C4). Throwaway; not the real @helmio/openclaw-helmio-chat plugin.

Readme

@filiptrivan/openclaw-helmio-chat-probe

ADR-0008 probe plugin. Throwaway. Validates two narrow things:

  • C1@microsoft/signalr Node client survives inside the OpenClaw plugin runtime (long-lived connection, auto-reconnect after pkill -9 node, access-token callback works).
  • C4 — plugin installs cleanly into OpenClaw via openclaw plugins install npm:@filiptrivan/openclaw-helmio-chat-probe@<ver> at cloud-init against the pinned image.

Not the real @helmio/openclaw-helmio-chat plugin. No channel registration, no message routing, no group primitives. Those land in the real plugin once ADR-0008 ratifies. The personal @filiptrivan scope is a temporary stand-in for @helmio org until the org is set up on npm; the install path is identical, only the package name differs.

Build

npm install
npm run build

Publish (one-time setup before C4 can run)

npm login                          # as filiptrivan
npm publish --access public        # public — no NPM_TOKEN needed on probe VMs

Install (from cloud-init, see infrastructure/cloud-init/probe-c4-install.sh)

docker exec openclaw openclaw plugins install npm:@filiptrivan/[email protected]
docker exec openclaw openclaw gateway restart
docker exec openclaw openclaw plugins inspect helmio-chat-probe --runtime --json

Runtime env vars (set on the container, read at registerFull)

  • HELMIO_PROBE_HUB_URL — SignalR hub URL, e.g. https://api.helmio.ai/chat (or whatever probe-c1 branch deploys to).
  • HELMIO_CHAT_BRIDGE_TOKEN_PROBE — static bearer token shared with the hub for the probe run.
  • HELMIO_PROBE_LOG_PATH — optional, defaults to /tmp/helmio-chat-probe.log. ProbeC1.cs reads this file via docker exec ... cat.

If hub URL or token are missing, the plugin loads (C4 still passes) but skips the SignalR connection (C1 will skip).