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

@mesibo/openclaw-channel

v1.0.13

Published

Mesibo real-time messaging channel plugin for OpenClaw

Readme

OpenClaw Mesibo Channel Plugin

Connects OpenClaw to the Mesibo real-time messaging platform. Once installed, your OpenClaw AI agent can receive and reply to messages sent via Mesibo — with full support for typing indicators, read receipts, and presence events.

Package: @mesibo/openclaw-channel
Channel ID: mesibo


How it works

The plugin bridges Mesibo and OpenClaw:

  1. It authenticates to Mesibo using your User Access Token.
  2. Incoming messages from authorised Mesibo addresses are forwarded to your OpenClaw agent.
  3. The agent's reply is sent back to the original sender via Mesibo.

Only direct messages (DMs) are supported. Group/channel messaging is not available in this version.


Prerequisites

  • An OpenClaw instance (self-hosted or cloud).
  • A Mesibo account with an application and a bot/service user created.
  • The User Access Token and App ID for that user, obtained from the Mesibo console.

New to Mesibo? Follow the official get-started tutorial to create your app and generate a token:
https://docs.mesibo.com/tutorials/get-started/


Uninstall a previous version

If you have an older version of this plugin installed, remove it before installing again.

# From your OpenClaw root directory
openclaw plugin uninstall mesibo --force

Then verify it is gone:

openclaw plugins list

mesibo should no longer appear in the list. You can also remove any leftover configuration:

Install

Install the plugin from the npm registry into your OpenClaw instance:

openclaw plugin install @mesibo/openclaw-channel

Or, if you are working from source inside this repository:

# Install Node dependencies
npm install

# Register the local plugin with OpenClaw (path to this directory)
openclaw plugin install . -l

Confirm the plugin loaded:

openclaw plugins list
# mesibo   @mesibo/openclaw-channel   v1.0.12   enabled

Configure

openclaw configure --section channels

The wizard will prompt you for:

| Prompt | What to enter | |--------|--------------| | Mesibo User Access Token | Token from console.mesibo.com → your app → Users | | App ID | The App ID used when creating the token (e.g. com.example.myapp) | | Authorized users | Comma-separated Mesibo addresses that may message the bot; leave blank to allow everyone |

Verify the connection

Restart OpenClaw after configuration, then check the logs:

openclaw gateway
# Expected log lines:
# [mesibo] startAccount called for accountId=default
# [mesibo] connecting (appId=com.example.myapp)
# [mesibo] connection status: ONLINE
# [mesibo] connected, listening for messages

Send a test message from a Mesibo client to the bot's address. You should see:

[mesibo] inbound message from=<your-address> id=<msg-id>

and receive a reply from your OpenClaw agent.


Security

  • accessToken is sensitive. Use environment variable substitution or your secrets manager rather than hard-coding it in plain text.
  • Set dmPolicy: "allowlist" and populate allowFrom to restrict which Mesibo users can trigger the agent in production.
  • The authorizedUsers field provides a secondary filter at the plugin level, independent of the OpenClaw DM policy.

Tutorials and documentation

| Resource | URL | |----------|-----| | Mesibo get-started tutorial | https://docs.mesibo.com/tutorials/get-started/ | | Mesibo console (tokens & apps) | https://console.mesibo.com |


Development

# Run tests
npm test

# TypeScript type-check
npx tsc --noEmit

The plugin entry points are:

  • index.ts — runtime channel entry (loaded by OpenClaw at startup).
  • setup-entry.ts — setup wizard entry (loaded during openclaw channel setup).
  • src/channel.ts — channel plugin definition (routing, config, pairing, outbound).
  • src/client.ts — thin wrapper around @mesibo/core (connect, send, disconnect).

License

See the LICENSE file in the root of this repository.