add-webex

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

2|Updated Jan 14, 2026
One-click install
npx skills add https://github.com/RADHA0-max/selfhealbackend --skill add-webex-radha0-max
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-webex
Source: https://github.com/RADHA0-max/selfhealbackend/tree/main/nanoclaw/.claude/skills/add-webex
Command: npx skills add https://github.com/RADHA0-max/selfhealbackend --skill add-webex-radha0-max

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 a Cisco Webex bot requires manually copying adapter code, registering it, installing the package, and configuring credentials. This Skill automates that entire idempotent setup workflow. ## Core Features & Use Cases - Adapter Installation: Fetches the Webex adapter and its registration test from the channels branch and wires the self-registration import into the channel barrel. - Pinned Dependency & Validation: Installs @bitbasti/[email protected] and verifies the build plus a registration integration test before proceeding. - 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 Webex space; this Skill installs the adapter, validates registration, and prepares credentials so the channel can be wired to an agent group. ## Quick Start Ask the assistant to add the Webex channel integration to NanoClaw and configure the bot token and webhook secret.

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 integration to NanoClaw?

Fetch the channels branch, copy src/channels/webex.ts and its registration test, add the self-registration import to the channel barrel, install @bitbasti/[email protected], then run the build and registration test to validate.

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 pointing to your /webhook/webex endpoint and set a secret for signature verification, storing both in the .env file.

Is the Webex adapter installation idempotent and safe to re-run?

Yes, every step is idempotent. The pre-flight checklist lets you skip steps already in place, such as an existing adapter file, registration import, or installed dependency.

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 build and pnpm install to fix it.

How do I remove the Webex channel integration?

Delete the self-registration import, remove the adapter and test files, uninstall the package with pnpm, remove the Webex credentials from .env, then rebuild and restart the service.