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

openclaw-zulip

v0.2.6

Published

OpenClaw channel plugin for Zulip — clean-room implementation with ACP topic bindings

Readme

openclaw-zulip

A clean-room OpenClaw channel plugin for Zulip, built from scratch with the OpenClaw Plugin SDK.

Features

  • Full Zulip messaging — Streams, topics, DMs, reactions, media, edits, unsend
  • ACP topic bindings — Bind ACP agent sessions to specific Zulip topics
  • Dual account modes — Run as a bot or impersonate a user account
  • Stream-level controls — Per-stream config (require mention, enable/disable)
  • Security — DM policy enforcement, allow-from lists
  • Actions — Channel list, channel info, member info queries

Installation

openclaw plugins install openclaw-zulip

Configuration

Add a channels.zulip section to your OpenClaw config:

channels:
  zulip:
    serverUrl: https://your-org.zulipchat.com
    email: [email protected]
    apiKey: your-bot-api-key
    mode: bot  # or "user"

    # Optional: per-stream overrides
    streams:
      general:
        requireMention: true
      private-ops:
        enabled: false

    # Optional: multi-account setup
    accounts:
      work-bot:
        serverUrl: https://work.zulipchat.com
        email: [email protected]
        apiKey: ...

Account modes

| Mode | Description | |------|-------------| | bot | Connects as a Zulip bot (default). Messages appear from the bot identity. | | user | Connects as a regular Zulip user. Messages appear from that user's identity. |

Configuration fields

| Field | Required | Description | |-------|----------|-------------| | serverUrl | Yes | Zulip server URL | | email | Yes | Bot or user email address | | apiKey | Yes | Zulip API key | | mode | No | bot (default) or user | | streams | No | Per-stream config overrides | | dmPolicy | No | DM handling policy | | allowFrom | No | Allowed user IDs or emails | | replyToMode | No | Reply targeting behavior |

Capabilities

| Feature | Supported | |---------|-----------| | Direct messages | Yes | | Group conversations (streams) | Yes | | Threads (topics) | Yes | | Reactions | Yes | | Message editing | Yes | | Unsend | Yes | | Reply | Yes | | Media | Yes | | ACP topic bindings | Yes | | Native commands | No | | Polls | No |

Migrating from openclaw-channel-zulip

If you're replacing the old openclaw-channel-zulip plugin, note these config changes:

Config field renames

| Old field | New field | |-----------|-----------| | url | serverUrl |

Streams format change

The old plugin used an array of stream names:

streams:
  - "AI System"
  - "Homelab"

The new plugin uses an object with per-stream config:

streams:
  AI System:
    requireMention: true
  Homelab:
    enabled: true

To migrate, convert each stream name to a key with {} (empty config) or add per-stream settings as needed.

Development

git clone https://github.com/whizzlelabs/openclaw-zulip.git
cd openclaw-zulip
npm install
npm run build
npm test

See CONTRIBUTING.md for the full development workflow.

License

MIT