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

@art_style666/hi-light

v2.0.4

Published

HiLight WebSocket bridge channel plugin for OpenClaw

Readme

HiLight 安装说明

OpenClaw 安装:https://github.com/openclaw/openclaw#install-recommended

npm 包地址:https://www.npmjs.com/package/@art_style666/hi-light

安装前准备

先确认电脑里有这两个工具:

  • Node.js(建议 22 或更高)
  • OpenClaw

在终端里输入下面两行,能看到版本号就说明已经装好:

node -v
openclaw --version

安装方式

1. npm 安装(推荐)

npm i @art_style666/hi-light
openclaw plugins install @art_style666/hi-light

2. ClawHub Skill 安装(适合想一步配置的用户)

先安装 skill:

npx clawhub@latest install hi-light-openclaw

安装后,在 OpenClaw 里直接这样使用:

用 $hi-light-openclaw 帮我安装 HiLight,我的 API Key 是 xxx

如果你有自定义 ws 地址:

用 $hi-light-openclaw 帮我安装 HiLight,我的 API Key 是 xxx,ws 地址是 wss://example/path

默认会使用官方 HiLight ws 地址;不填也可以。

3. 源码安装(开发调试)

git clone [email protected]:Gongcong/hi-light-plugin.git
cd hi-light-plugin
npm install
npm run build
openclaw plugins install --link /绝对路径/hi-light-plugin

手动配置(方式一和方式三需要)

如果你使用方式二,skill 会在第一次调用时帮你安装插件并写入配置。 如果你使用方式一或方式三,请手动编辑:

编辑文件:~/.openclaw/openclaw.json

把下面这段加到 channels 里(没有就新建):

"channels": {
  "hi-light": {
    "enabled": true,
    "wsUrl": "wss://open.guangfan.com/open-apis/device-agent/v1/websocket",
    "authToken": "你的API KEY",
    // 2.22 版本 需要加上下面的配置
    "dmPolicy": "open",
    "allowFrom": [
        "*"
      ]
  }
}

API KEY 获取方式: 各大应用商店下载 HiLight App,点击设置 -> 帐号管理 -> 获取 API KEY。

让配置生效

openclaw gateway restart

安装完成怎么检查

重启后如果没有报错,基本就安装成功了。 如果想更稳妥,可以看网关日志里是否出现 hi-light 连接成功的信息。