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

@ozaiya/openclaw-channel

v0.10.8

Published

OpenClaw channel plugin for Ozaiya Chat

Downloads

4,543

Readme

@ozaiya/openclaw-channel

OpenClaw channel plugin for Ozaiya E2E encrypted group chat.

Overview

Enables OpenClaw AI agents to participate in Ozaiya chat groups — receiving messages, processing them through the agent pipeline, and sending encrypted responses back.

All messages are end-to-end encrypted using libsodium.

Installation

# Install via OpenClaw plugin manager
openclaw plugins install @ozaiya/openclaw-channel

Configuration

Add the Ozaiya channel in your OpenClaw config. No additional configuration is required — the channel authenticates using your Ozaiya account credentials managed by OpenClaw.

Optional STT

Inbound voice messages can be auto-transcribed on the OpenClaw host before they are dispatched to the agent. This does not use ozaiya-server, and transcripts are not cached by the plugin.

Available modes:

  • disabled: default
  • openai: uploads the staged audio file directly from the OpenClaw host to OpenAI STT
  • local-command: runs a local command and expects the transcript on stdout

Example:

{
  "channels": {
    "ozaiya": {
      "stt": {
        "mode": "local-command",
        "timeoutMs": 20000,
        "maxDurationSeconds": 180,
        "localCommand": {
          "command": "/usr/local/bin/whisper-cli",
          "args": ["--output-txt", "--stdout", "{input}"]
        }
      }
    }
  }
}

OpenAI mode example:

{
  "channels": {
    "ozaiya": {
      "stt": {
        "mode": "openai",
        "openai": {
          "model": "gpt-4o-mini-transcribe"
        }
      }
    }
  }
}

Notes:

  • Auto-transcription only runs for inbound audio messages that do not already contain text.
  • The first staged audio attachment is used.
  • Messages longer than maxDurationSeconds are skipped.
  • openai.apiKey can be set directly or inherited from OPENAI_API_KEY.
  • local-command.args supports {input}, {filename}, {mime}, and {url} placeholders. If {input} is omitted, the staged file path is appended automatically.

Bot Output Guide

  • Use plain text for normal prose, code blocks, markdown tables, and Mermaid. chat-v2 already renders those directly.
  • Use options for simple one-choice-per-row questions such as approvals, next-step prompts, and short menus.
  • Use buttons only when you need custom callbackData values or multiple buttons in the same row.
  • Use attachments in send_rich_message when the bot is intentionally sending generated files, images, video, audio, or PDFs.
  • Plain text replies also auto-upgrade some media cases: standalone file/media URLs, markdown images, and markdown attachment links are uploaded as chat attachments automatically.

Requirements

License

MIT