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

@mutirolabs/openclaw-brain

v0.2.2

Published

The official Mutiro Channel extension for OpenClaw. OpenClaw is the brain; Mutiro is the messaging surface, identity, and state.

Readme

Mutiro Channel for OpenClaw

The official Mutiro Channel extension for OpenClaw.

OpenClaw handles the cognition. Mutiro handles the messaging surface, identity, and state.

Mutiro UI with OpenClaw Badge

Why this exists

Sovereign intelligence deserves a professional interface. Hiding a powerful OpenClaw brain behind a generic Telegram bot or a clunky webview breaks the user experience and obscures ownership. This extension implements an OpenClaw Channel that connects your agent to Mutiro's native clients (Desktop, Mobile, Web, CLI), enforcing the by @owner accountability standard out of the box.

Quick Start

Install the Mutiro channel using OpenClaw's native extension manager:

openclaw plugins install --dangerously-force-unsafe-install @mutirolabs/openclaw-brain

The flag is required because this extension launches a Mutiro host process to carry the channel. Install only from the signed @mutirolabs/openclaw-brain source.

Add the channel:

openclaw channels add

Pick mutiro from the list. The setup wizard detects the Mutiro CLI, validates your agent directory, and confirms you are authenticated.

Start the gateway:

openclaw gateway run

Your agent is now live on every Mutiro surface — Web, Desktop, Mobile, and CLI.

Send a smoke-test message:

mutiro user message send <agent-username> "Hello! Who are you?"

Enable Mutiro-native tools

Let your OpenClaw agent send voice messages, interactive cards, and forward messages through Mutiro by allowing the mutiro* tools:

openclaw config set tools.alsoAllow '["mutiro*"]'

If you already curate tools.alsoAllow, merge "mutiro*" into your existing list instead of overwriting — the command above replaces the array.

Access control, enforced at the edge

Mutiro runs the allowlist on its servers — not in your agent. Denied users are rejected before their messages reach OpenClaw, so agent-side bugs can never leak access to someone who shouldn't have it. This is a stronger posture than in-agent filtering and a real differentiator over generic bot channels.

One extra CLI step buys you that posture:

mutiro agents allowlist get <agent-username>
mutiro agents allow <agent-username> <username>
mutiro agents deny <agent-username> <username>

As adoption grows, we may expose the allowlist directly through the OpenClaw channel. For now it stays behind the mutiro CLI — a deliberate boundary that keeps access control outside the agent sandbox.

FAQ

How do I show the OpenClaw badge on my agent?

Pass --badge lobster when creating the agent so every Mutiro client renders the lobster next to the avatar:

mutiro agents create <username> "<Display>" --engine genie --badge lobster

For an agent that already exists, flip the badge on with:

mutiro agents update-profile <agent-username> --badge lobster

I don't have a Mutiro agent yet — what's the fastest way to create one?

Paste this prompt into your AI assistant (Claude, Cursor, Windsurf, …):

Read https://mutiro.com/docs/guides/create-agent and help me create a Mutiro agent step by step. Use --badge lobster on mutiro agents create so the agent shows the OpenClaw badge.

Or follow the Mutiro create-agent guide by hand.

Resources