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

@qihoo/tuitui-openclaw-channel

v1.0.33

Published

TuiTui channel plugin for OpenClaw

Readme

TuiTui Channel for OpenClaw

针对 OpenClaw 的推推机器人 Channel 渠道插件,基于 WebSocket 订阅模式接收消息、基于 HTTP API 发送消息,无需公网 IP。

功能特性

  • WebSocket 订阅模式,无需 Webhook 和公网环境依赖
  • 支持私聊、群聊和 @机器人、团队帖子等
  • 支持文本、图片、语音、视频、文件、帖子
  • 支持多 Agent、多机器人绑定、状态检测同步

文档入口

安装与配置指南

最小兼容版本为 OpenClaw 2026.3.13

龙虾+推推插件配置指南

什么是龙虾推推channel插件

在openclaw上安装推推插件后,可以通过推推与你的openclaw聊天。无需公网ip个人电脑也可以用。

第一步、创建你的专属推推机器人

推推搜索 推推机器人助手,和它私聊。使用 /创建 可自助创建一个机器人,得到appid和secret后用。 另外你也可以对它使用 /改头像 指令。

第二步、安装openclaw 推推插件

openclaw plugins install @qihoo/tuitui-openclaw-channel (如果以前你装过推推插件zip包内测版,需要先把原来的目录删了,不然装不上)

有可能会遇到 clawHub 429 报错、npm install failed Error: package.json missing openclaw.hooks 等。 均为下载环节不稳定导致,可以多试几次或参考下文的“本地源码链接安装”。

第三步、配置插件。

打开龙虾dashboard页面,频道->Tuitui,在appid和secret填入第一步获取的,并找到 Enabled 开启,下方点保存。

第四步、与你的机器人聊天

私聊你的龙虾机器人,会提示配对。复制提示消息末尾的那行指令,龙虾主人在终端执行你复制的那行命令,然后就能聊了。

群聊的话,你把机器人拉到群能力。需要@机器人触发。第一次会提示主人配置群白名单,主人复制群id在dashboard上配置白名单以后就能聊了。

插件升级

后续如果更新,可以用下述命令升级 openclaw plugins update tuitui-openclaw-channel

安全备忘

私聊安全:默认设置下,你的申请的推推机器人是你个人专属机器人,权限只能与你私聊,其他人私聊这个机器人无效;另外推推插件默认模式为配对,即只有配对成功的人才能聊(包括你自己)

群聊安全:默认配置下,插件群聊策略为白名单,即只有白名单的群ID才能聊,不在白名单机器人会提示你加白名单

本地源码链接安装

如需本地开发、调试或联调,可使用源码链接安装:

下载并解压 @qihoo/tuitui-openclaw-channel 到 ./tuitui 目录。
cd ./tuitui
npm install
openclaw plugins install -l .

小建议

安装后建议显式配置 plugins.allow

{
  "plugins": {
    "enabled": true,
    "allow": ["tuitui"]
  }
}