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

chrome-openclaw-sider

v1.0.2

Published

Official Chrome channel plugin for connecting OpenClaw in Sider Chrome extension

Downloads

392

Readme

chrome-openclaw-sider

OpenClaw 官方 Sider 渠道插件,用于在 Sider 中连接 OpenClaw。

它支持 OpenClaw 标准登录配对流程、一次性 setup token 换取长期 token,以及直接写入 relay token 这三种接入方式。

兼容性

  • openclaw >= 2026.3.22

推荐安装方式

大多数用户建议直接使用配套 CLI:

npx -y @sider-ai/chrome-openclaw-sider-cli install

它会自动安装或更新插件,并立即进入终端配对流程。

手动安装

安装插件:

openclaw plugins install chrome-openclaw-sider

如果本地已经安装过,可改为更新:

openclaw plugins update chrome-openclaw-sider

发起配对:

openclaw channels login --channel chrome-openclaw-sider

终端会显示一条短期 pairing code。用户在 Sider 浏览器扩展中输入这条 code 后,插件会把长期 token 自动写回 channels.chrome-openclaw-sider

配置方式

插件支持三种常见初始化方式。

终端配对

直接使用 OpenClaw 自带登录流程:

openclaw channels login --channel chrome-openclaw-sider

Setup Token

把一次性 token 写入 channels.chrome-openclaw-sider.setupToken

{
  "channels": {
    "chrome-openclaw-sider": {
      "enabled": true,
      "setupToken": "<one-time-token>"
    }
  }
}

插件启动后会自动把 setupToken 换成长期 token,写回配置,并删除 setupToken

直接写入 Relay Token

直接写入长期 relay token:

{
  "channels": {
    "chrome-openclaw-sider": {
      "enabled": true,
      "token": "<relay-token>"
    }
  }
}

命名账号可写在 channels.chrome-openclaw-sider.accounts.<id> 下。

如果是手动改配置,完成后需要重启 gateway:

openclaw gateway restart

运行时选项

  • SIDER_BASE_URL:覆盖默认 API base(https://selfclaw.apps.wisebox.ai
  • SIDER_SETUP_TOKEN:默认账号的 setup token 环境变量 fallback
  • SIDER_SETUP_TOKEN_<ACCOUNT_ID>:命名账号的 setup token 环境变量 fallback
  • channels.chrome-openclaw-sider.relayId:可选自定义 relay ID,默认是 openclaw-<accountId>
  • channels.chrome-openclaw-sider.subscribeSessionIds:可选的入站 session 过滤列表

说明

  • 同一账号下不要混用 setupTokentoken
  • 对大多数用户来说,终端配对是最简单的初始化方式。