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

@openclawline/clawline

v0.4.3

Published

ClawLine Channel Plugin for OpenClaw - connect your OpenClaw instance to ClawLine mobile app

Readme

@openclawline/clawline

ClawLine Channel Plugin for OpenClaw — 将你的 OpenClaw AI 实例接入 ClawLine 移动端应用。

功能

  • 通过 WebSocket 长连接将 OpenClaw 实例与 ClawLine App 配对
  • 支持流式消息(Server-Sent Events → WebSocket chunk 帧)
  • 断线自动重连(指数退避 + 心跳探活)
  • 定时上报实例运行状态(model、skills、agents、uptime)
  • 提供 OpenClaw Skill,允许 AI 主动发起配对流程

安装

npm install @openclawline/clawline

Node.js 要求: >=18.0.0

CLI 快速使用

# 通过扫码/链接获得的 UUID 完成首次配对
npx @openclawline/clawline <PAIRING_UUID>

# 查看当前连接状态
npx @openclawline/clawline --status

# 重置配对(清除本地凭证)
npx @openclawline/clawline --reset

SDK 集成

import ClawLineChannel from '@openclawline/clawline';

const channel = new ClawLineChannel({
  serverUrl: 'wss://ws.openclawline.com',
  instanceId: 'my-openclaw-instance',
});

// 挂载到 OpenClaw 实例
openclaw.use(channel);

配置文件

本地配置存储于 ~/.openclaw/channels/clawline.json

{
  "serverUrl": "wss://ws.openclawline.com",
  "instanceId": "...",
  "credentials": {
    "token": "..."
  }
}

Peer Dependency

本插件可选依赖 @openclaw/sdk >=1.0.0。若使用 OpenClaw SDK 模式集成,请确保已安装该包;通过 CLI 单独使用时无需安装。

License

MIT