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

@kagura-agent/openclaw-zulip

v0.1.0

Published

OpenClaw Zulip channel plugin — topic threading, metadata DB, bot commands

Readme

openclaw-zulip

OpenClaw channel plugin for Zulip — connect your OpenClaw agent to Zulip with native topic threading, stream organization, and metadata management.

Features

  • Stream & topic routing — messages route through Zulip's stream/topic hierarchy
  • DM support — direct messages with configurable DM policy and allowlists
  • Topic threading — replies stay in the correct topic automatically
  • Metadata DB — SQLite-backed per-topic metadata (status, priority, assignee, labels) via /meta bot commands
  • Real-time gateway — long-polling event queue for instant message reception
  • Rate limit handling — automatic retry with backoff on Zulip API rate limits

Installation

openclaw plugins install @kagura-agent/openclaw-zulip

Or via npm:

npm install @kagura-agent/openclaw-zulip

Configuration

Add to your openclaw.json:

{
  "channels": {
    "zulip": {
      "realm": "https://your-org.zulipchat.com",
      "email": "[email protected]",
      "apiKey": "your-bot-api-key",
      "streams": ["general", "dev"],
      "defaultStream": "general",
      "defaultTopic": "agent",
      "dmPolicy": "pairing",
      "allowFrom": []
    }
  }
}

Configuration Options

| Option | Type | Description | |---|---|---| | realm | string | Zulip server URL | | email | string | Bot email address | | apiKey | string | Bot API key (from Zulip settings) | | streams | string[] | Streams to listen on | | defaultStream | string | Default stream for outbound messages | | defaultTopic | string | Default topic for outbound messages | | dmPolicy | string | DM policy: "pairing", "open", or "closed" | | allowFrom | array | Allowed sender emails or user IDs for DMs |

Bot Commands

In any Zulip topic, send /meta commands to manage topic metadata:

  • /meta — show current topic metadata
  • /meta set status=open priority=high assignee=alice — set metadata fields
  • /meta label add bug — add a label
  • /meta label rm bug — remove a label
  • /meta list — list all topics with metadata in the stream
  • /meta list status=open — filter by field
  • /meta clear — clear all metadata for the topic

Development

npm install
npm test          # vitest (74 tests)
npm run test:node # node:test metadata suite (61 tests)
npm run test:all  # both suites (135 tests total)
npm run typecheck # tsc --noEmit

License

MIT