Add Webex Channel
Copies, registers and validates the Cisco Webex adapter for a NanoClaw project via the Chat SDK bridge.
Dev & CodingIntermediate★ 30,471⑂ 12,865AI score 7/10Last updated: Aug 9, 2026
What it does
- Pulls the Webex adapter (
src/channels/webex.ts) and its registration test from thechannelsbranch intosrc/channels/. - Appends the single self-registration import to
src/channels/index.ts(skipped if present). - Installs
@bitbasti/chat-adapter-webex@0.1.0at an exact pinned version per the supply-chain policy. - Runs
pnpm run buildand the registration test to prove the adapter is actually in the registry. - Prompts for the Bot Access Token and webhook secret, writes them to
.envonly if unset, and explains exposing the shared webhook server (port 3000,/webhook/webex).
Who it's for
- Teams running NanoClaw whose chat tool of choice is Cisco Webex.
- Anyone who wants agents reachable from Webex spaces or 1:1 DMs.
- Operators who prefer idempotent, re-runnable channel setup over manual edits.
Examples
- "Add the Webex channel" → adapter copied, import added, dependency pinned, build + test run in one pass.
- Sends failing with 401 → check whether the 12-hour personal token was used instead of the Bot Access Token, then refresh
WEBEX_BOT_TOKEN. - No events arriving locally → expose port 3000 with
ngrok http 3000, recreate the webhook at the public URL and match the secret in.env.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/.claude/skills/add-webex/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/add-webex folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/add-webex/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git && mkdir -p ~/.claude/skills && cp -r nanoclaw/.claude/skills/add-webex ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/nanocoai/nanoclaw.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r nanoclaw/.claude/skills/add-webex ~/.claude/skills/ - Start Claude Code from inside your NanoClaw project directory (the skill only makes sense there).
- Confirm pnpm is available (
pnpm -v). - Ask Claude: "use the add-webex skill to add the Webex channel".
- Follow the prompts: create a bot at developer.webex.com and paste the Bot Access Token plus webhook secret.
- If running locally, expose port 3000 (ngrok, Cloudflare Tunnel or a reverse proxy) and register the webhook at
https://your-domain/webhook/webex.
View source on GitHub ↗License: MIT