add-webex

Installs and configures a Cisco Webex channel adapter via the Chat SDK bridge.

1|Updated May 22, 2026
One-click install
npx skills add https://github.com/roseDwayane/LocalizeAgenticSys --skill add-webex-rosedwayane
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-webex
Source: https://github.com/roseDwayane/LocalizeAgenticSys/tree/main/nanoclaw/.claude/skills/add-webex
Command: npx skills add https://github.com/roseDwayane/LocalizeAgenticSys --skill add-webex-rosedwayane

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @bitbasti/chat-adapter-webex.

What problem does it solve? NanoClaw does not ship channel integrations in its trunk, so connecting an agent to Cisco Webex requires manually copying adapter code, registering it, installing the package, and wiring credentials. This Skill automates that entire setup flow with idempotent, re-runnable steps. ## Core Features & Use Cases - Adapter Installation: Fetches the Webex adapter and its registration test from the channels branch and appends the self-registration import to the channel barrel. - Build Validation: Runs the TypeScript build and a registration integration test to confirm the adapter is installed, registered, and typed correctly against the core Chat SDK bridge API. - Credential Configuration: Guides creation of a Webex bot, webhook setup with signature secret, and syncing WEBEX_BOT_TOKEN and WEBEX_WEBHOOK_SECRET into the container environment. - Use Case: A team wants their NanoClaw agent reachable in a Cisco Webex space; this Skill installs the adapter, validates the build, and walks through bot token and webhook configuration. ## Quick Start Ask the assistant to add the Webex channel to your NanoClaw installation and provide your Webex bot token and webhook secret when prompted.

Frequently Asked Questions about add-webex

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a Webex channel to NanoClaw?

Run this Skill to copy the Webex adapter from the channels branch, append the self-registration import to src/channels/index.ts, install @bitbasti/chat-adapter-webex, then build and run the registration test. Finally configure the bot token and webhook secret in .env.

How do I get a Webex bot token and webhook secret?

Create a bot at developer.webex.com and copy the Bot Access Token. Then create a webhook via the Webex API or Developer Portal pointing to your /webhook/webex endpoint, and set a secret for signature verification.

Does the Webex adapter support threads and spaces?

Yes, the adapter supports threads. Webex organizes conversations as spaces, which can be group conversations or 1:1 direct messages with the bot, and space IDs are found in space settings or via the GET /rooms API.

Why does the Webex registration test fail after installation?

The test fails if the import './webex.js' line is missing from the channel barrel, if the barrel fails to evaluate, or if @bitbasti/chat-adapter-webex is not installed. Re-run the install steps and pnpm run build to diagnose.

How do I remove the Webex channel from NanoClaw?

Delete the self-registration import, remove src/channels/webex.ts and its test, uninstall @bitbasti/chat-adapter-webex, remove the Webex credentials from .env, then rebuild and restart the service. All removal steps are idempotent.