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

@w3osc/openclaw-conduit

v1.0.13

Published

OpenClaw channel plugin that connects Conduit as a native messaging channel

Readme

@w3osc/openclaw-conduit

An OpenClaw channel plugin that connects Conduit as a native messaging channel.

Conduit is a self-hosted personal communications hub that aggregates Slack, Discord, Telegram, Gmail, Google Calendar, and Twitter/X into a unified local server. This plugin lets the OpenClaw agent receive messages from the Conduit AI chat UI and stream replies back in real time.


Requirements

  • OpenClaw >=2026.3.24-beta.2
  • A running Conduit instance (self-hosted)
  • A Conduit API key (generated in Settings → Permissions)

Installation

openclaw plugins install @w3osc/openclaw-conduit

Configuration

Add a conduit section under channels in your ~/.openclaw/openclaw.json:

{
  "channels": {
    "conduit": {
      "baseUrl": "http://localhost:3101",
      "apiKey": "sk-arb-...",
      "allowFrom": [],
      "webhookSecret": "optional-secret"
    }
  }
}

| Field | Required | Description | |---|---|---| | baseUrl | Yes | Base URL of your Conduit server | | apiKey | Yes | Conduit API key — generate one in Settings → Permissions | | allowFrom | No | List of OpenClaw user identifiers allowed to receive Conduit messages. Leave empty to allow all. | | webhookSecret | No | If set, Conduit must send Authorization: Bearer <secret> on each inbound request |


Connecting Conduit to OpenClaw

After installing and configuring the plugin, restart the OpenClaw Gateway:

openclaw gateway

Then in Conduit, go to Settings → AI → OpenClaw Channel and enter the inbound webhook URL:

http://<your-openclaw-host>:18789/channels/conduit/inbound

Messages sent to the Conduit AI chat will now be routed to the OpenClaw agent, and replies will stream back to the Conduit UI.


How it works

  1. Conduit POSTs an inbound message to the OpenClaw Gateway at /channels/conduit/inbound
  2. The plugin verifies the optional webhook secret, then dispatches the message to the OpenClaw agent
  3. The agent reply is streamed back to Conduit's session stream endpoint in real time
  4. The Conduit AI chat UI renders the streaming response

Outbound sends (when OpenClaw proactively sends a message) are delivered via Conduit's streaming API using the API key.


License

MIT