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.53

Published

TuiTui channel plugin for OpenClaw

Readme

TuiTui Channel for OpenClaw

OpenClaw 的推推机器人 Channel 渠道插件

功能特性

  • 支持私聊、群聊和 @机器人、团队帖子等
  • 支持文本、图片、语音、视频、文件、频道帖子
  • 支持多 Agent + 多机器人绑定
  • 支持安全控制(私聊模式与白名单、群聊模式与白名单)
  • WebSocket 订阅模式,个人电脑可用,无需 Webhook 和公网ip依赖

安装与配置指南

最小兼容版本为 OpenClaw 2026.3.8

龙虾+推推插件配置指南

什么是龙虾推推channel插件

在openclaw上安装推推插件后,可以通过推推与你的openclaw聊天。

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

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

第二步、安装openclaw 推推插件

在终端命令行运行命令

openclaw plugins install @qihoo/tuitui-openclaw-channel

如果遇到 clawHub 429 报错、npm install failed Error: package.json missing openclaw.hooks 等。 均为下载连接npm仓库不稳定导致,可以多试几次。

第三步、配置插件。

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

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

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

如果不想配对,可以在dashboard中把Dm Policy切换为allowlist,然后从Allow From为你的账号添加白名单。

群聊的话,你把机器人拉到群里。需要@机器人触发。主人可以直接使用。其他人@机器人会提示让主人配置白名单,主人复制群id在dashboard上配置白名单以后就能聊了。

插件升级

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

安全备忘

推推机器人权限:用【推推机器人助手】自助创建的推推机器人,无论新老,默认私聊权限范围均调整为allstaff。因此你的机器人可以给本组织内任何人双向发消息。

私聊安全:推推插件还有一层私聊策略(Dm Policy),默认为配对,即只有配对成功的人才能聊(包括你自己),因此不影响安全性。

群聊安全:默认配置下,插件群聊策略(Group Policy)为白名单,即只有把群ID加白后才能聊,不在白名单机器人会提示你加白名单。另外私聊权限会继承到群聊,即如果你具备私聊权限,那么你自己在群里即使不加白也可以聊。

4月份版本注意

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

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

从3、4月份龙虾升级到5月份之后版本注意

plugins 字段参考配置如下,需要删除 plugins.installs,以及修改原来的 plugins.allow 以及 plugins.entries

  "plugins": {
    "allow": [
      "tuitui-openclaw-channel"
    ],    
    "entries": {
      "tuitui-openclaw-channel": {
        "enabled": true,
        "config": {},
        "hooks": {
          "allowConversationAccess": true
        }
      }
    }
  }

参考文档