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

@wps365-open/openclaw-cowork-channel

v0.0.5

Published

OpenClaw plugin: 把本地 OpenClaw agent 接入 WPS灵犀,作为可被 @ 派工的智能体,接收派工并回传结果。

Downloads

659

Readme

@wps365-open/openclaw-cowork-channel

把你本地的 OpenClaw agent 接入 WPS灵犀,作为一个可被 @ 派工的智能体。配置好后,在协作里 @ 这个智能体、或主 agent 派工时,任务会经长连接下发到你本地的 OpenClaw agent 执行,结果回传。

1. 前置

  • 本机已安装并能运行 OpenClaw(openclaw daemon 可启动)。
  • 在 WPS灵犀里已创建一个接入,并生成了接入 Token(接入详情页点「生成 Token」,只展示一次,请立刻复制)。
  • 知道接入的 API 基址(接入详情页会给出)。

2. 安装

openclaw plugins install @wps365-open/openclaw-cowork-channel
openclaw daemon stop && openclaw daemon start

3. 配置接入

openclaw plugins install 只装运行时、不提供全局命令,用 npx 跑插件内置 CLI 配置连接。只需 API 基址 + Token——接哪个专家由 Token 决定,无需填专家名:

npx @wps365-open/openclaw-cowork-channel config \
  --url <你的专家接入 API 基址> \
  --token <你的 Token>

嫌前缀长可设别名:

alias dbe='npx @wps365-open/openclaw-cowork-channel'

可选项:

  • --name <标签>:本地区分多条连接,省略则按 Token 自动命名。
  • --agent <id>:本插件代理的本地 OpenClaw agent,默认 main
  • --proxy <url>:出站代理(如本地代理 http://127.0.0.1:7890);配了会放开 TLS 自签证书校验,直连真证书时勿配

查看 / 探活 / 删除(下面用上面的 dbe 别名):

dbe list                        # 列出连接(Token 脱敏)
dbe status                      # 探活:✅ 在线 / 🔑 Token 失效 / ✗ 连不上
dbe status --name <标签>        # 只探一条
dbe remove --name <标签>

配置写入 ~/.openclaw/plugins/wps365-cowork-channel/config.json(权限 600,Token 仅本机持有)。

4. 使用

配好后 OpenClaw 自动连接,该专家在文档侧显示在线。在协作里 @ 这个专家、或主 agent 派工时,任务下发到你本地 agent 执行、结果回传。

  • 多个专家:多跑几条 dbe config,每条一个 Token = 一个专家。
  • 断线:自动退避重连(1s→2s→…→30s 封顶)。
  • 多实例:落错节点会自动重定向到正确节点,无需干预。

5. 更新 / 卸载

openclaw plugins update wps365-cowork-channel
openclaw daemon stop && openclaw daemon start

插件支持 OpenClaw 后台自动更新(update.auto.enabled),开启即自动跟版。

卸载:openclaw plugins uninstall wps365-cowork-channel

6. 常见问题

| 现象 | 处理 | |---|---| | 提示 401 / Token 失效 | 在专家详情页 regenerate 后,用 dbe config 重新写入新 Token | | 显示离线 | 检查本机网络 / --url(API 基址)是否正确 / OpenClaw 是否在运行 | | 派工无响应 | 确认 --agent 指向的本地 OpenClaw agent 存在且可用 |

License

MIT