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

@fontdo/5g-message

v1.0.14

Published

OpenClaw 通道插件,用于连接 Fontdo 5G 消息平台

Readme

Fontdo 5G Message Channel Plugin

OpenClaw 通道插件,用于连接5G消息(RCS)通道。

协议支持

  • 传输协议: WebSocket over TLS (wss://)
  • 消息协议: JSON-RPC 2.0
  • 认证方式: Headers 签名认证

安装

方法 1: 使用工具安装(推荐)

使用专门的工具进行安装和配置:

# 一键安装并配置
npx -y @fontdo/5g-message-tools install

# 仅更新插件
npx @fontdo/5g-message-tools update

# 仅配置插件
npx @fontdo/5g-message-tools configure

方法 2: 本地安装

# 将插件复制到 OpenClaw 扩展目录
cp -r . ~/.openclaw/extensions/5g-message

# 或者使用链接方式(开发模式)
openclaw plugins install -l /path/to/5g-message

方法 3: NPM 安装

openclaw plugins install @fontdo/5g-message

# 安装后配置
npx @fontdo/5g-message-tools configure

配置

~/.openclaw/openclaw.json 中添加配置:

{
  "channels": {
    "5g-message": {
      "enabled": true,
      "accounts": {
        "default": {
          "host": "5g.fontdo.com",
          "appId": "your-app-id", //到www.fontdo.com 申请
          "appKey": "your-app-secret", //到www.fontdo.com 申请
          "botName": "OpenClaw Bot", // 单独申请botName请到www.fontdo.com联系
          "enabled": true
        }
      },
      "dmPolicy": "pairing",
      "allowFrom": []
    }
  }
}

配置项说明

| 字段 | 说明 | 必填 | | --------- | ---------------- | ----------------------------------------- | | host | IM 服务器地址(不含协议前缀) | ✅ | | appId | 应用 ID | ✅ | | appKey | 应用密钥 | ✅ | | botName | 机器人显示名称 | ❌ (默认 蜂动Claw) | | enabled | 是否启用该账号 | ❌ (默认 true) |

多账号配置

{
  "channels": {
    "5g-message": {
      "defaultAccount": "prod",
      "accounts": {
        "prod": {
          "host": "5g.fontdo.com",
          "appId": "your-app-id", //到www.fontdo.com 申请
          "appKey": "your-app-secret",  //到www.fontdo.com 申请
          "botName": "Production Bot"// 单独申请botName请到www.fontdo.com联系
        },
        "dev": {
          "host": "test.fontdo.com",
          "appId": "your-app-id", //到www.fontdo.com申请
          "appKey": "your-app-secret",  //到www.fontdo.com申请
          "botName": "Dev Bot" // 单独申请botName请到www.fontdo.com联系
        }
      }
    }
  }
}

注意事项

  • 配置完成后需要重启 OpenClaw 服务以应用配置:openclaw gateway restart
  • 确保网络连接正常,能够访问 Fontdo 5G 消息平台
  • 如需使用 CLI 工具进行安装和配置,请使用 @fontdo/5g-message-tools