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

@nfshanq/webex

v0.1.0

Published

Standalone Webex channel plugin for OpenClaw

Readme

OpenClaw Webex Plugin

Standalone third-party Webex channel plugin for OpenClaw.

Built on the official webex JavaScript SDK, this plugin runs as a websocket-first Webex bot integration for OpenClaw. It does not require webhook ingress or a public callback URL, which makes local setup and private deployments simpler than channels that depend on externally reachable HTTP endpoints.

For teams already using Webex bots, the setup is also relatively direct: create a bot, copy the bot token, install the plugin, and configure channels.webex. In practice this is often lighter operationally than chat integrations that require separate app manifests, webhook hosting, or public tunnel infrastructure.

AI-First Docs

This repository ships task-oriented docs intended for AI agents that install and configure the plugin.

  • Start with docs/runtime-behavior.md.
  • Load only the page needed for the current task.
  • Use docs/runtime-behavior.md as the primary AI doc for installation, config shape, ready-made snippets, field-by-field config explanations, and runtime semantics.

Install

Install from npm:

openclaw plugins install @nfshanq/webex

Install a local checkout for development:

openclaw plugins install -l /absolute/path/to/openclaw-webex-plugin

For installation details, config shape, target formats, and runtime behavior, use docs/runtime-behavior.md.

Development

Install dependencies:

npm install

Run tests:

npm test

Type-check the plugin:

npm run build

Quick Start

Minimal config:

{
  channels: {
    webex: {
      enabled: true,
      defaultTo: "[email protected]",
      dmPolicy: "allowlist",
      allowFrom: ["[email protected]"],
      groupPolicy: "allowlist",
      requireMention: true,
      groups: {
        "Y2lzY29zcGFyazovL3VzL1JPT00v...": {
          title: "Engineering Chat",
          requireMention: true,
        }
      }
    },
  },
}

Provide the bot token through WEBEX_BOT_TOKEN, or store it in channels.webex.botToken for the default account.

Room config keys under channels.webex.groups must use the exact Webex room ID seen by the runtime. The safest workflow is to resolve or copy the room ID first, then use that value as the map key.

Useful commands:

openclaw channels status --probe
openclaw channels resolve --channel webex --kind user [email protected]
openclaw channels resolve --channel webex --kind group "webex:space:<room-id-or-public-id>"

Features

  • Direct realtime runtime built on [email protected]
  • Multi-account config resolution with default-account env fallback
  • Webex target parsing for webex:user:*, webex:space:*, and email targets
  • Outbound text and file delivery through the Webex REST API
  • Inbound DM and space normalization, mention gating, pairing gating, attachment action routing, and reply dispatch integration
  • Optional receipt reactions and require-mention hinting
  • Automated tests for config, targets, API behavior, runtime adapter, and inbound flow

Repository Layout

  • index.ts registers the plugin with OpenClaw.
  • docs/ contains AI-oriented install, config, and behavior docs.
  • src/ contains channel implementation, runtime adapters, API helpers, and config handling.
  • test/ contains unit and integration coverage.
  • openclaw.plugin.json provides plugin discovery and config validation metadata.

Publishing Notes

  • npm package name: @nfshanq/webex
  • Repository: https://github.com/nfshanq/openclaw-webex-plugin