Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Add Webex Channel

Copies, registers and validates the Cisco Webex adapter for a NanoClaw project via the Chat SDK bridge.

Dev & CodingIntermediate30,47112,865AI score 7/10Last updated: Aug 9, 2026

What it does

  • Pulls the Webex adapter (src/channels/webex.ts) and its registration test from the channels branch into src/channels/.
  • Appends the single self-registration import to src/channels/index.ts (skipped if present).
  • Installs @bitbasti/chat-adapter-webex@0.1.0 at an exact pinned version per the supply-chain policy.
  • Runs pnpm run build and the registration test to prove the adapter is actually in the registry.
  • Prompts for the Bot Access Token and webhook secret, writes them to .env only 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

  1. "Add the Webex channel" → adapter copied, import added, dependency pinned, build + test run in one pass.
  2. Sends failing with 401 → check whether the 12-hour personal token was used instead of the Bot Access Token, then refresh WEBEX_BOT_TOKEN.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/nanocoai/nanoclaw.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r nanoclaw/.claude/skills/add-webex ~/.claude/skills/
  5. Start Claude Code from inside your NanoClaw project directory (the skill only makes sense there).
  6. Confirm pnpm is available (pnpm -v).
  7. Ask Claude: "use the add-webex skill to add the Webex channel".
  8. Follow the prompts: create a bot at developer.webex.com and paste the Bot Access Token plus webhook secret.
  9. If running locally, expose port 3000 (ngrok, Cloudflare Tunnel or a reverse proxy) and register the webhook at https://your-domain/webhook/webex.