Add Webex bot integration as a channel plugin supporting: - Bot token authentication via Webex Developer Portal - Webhook-based message receiving (messages:created events) - HMAC-SHA1 signature verification for webhook security - Direct message and group/space messaging - Media attachment support (images, files) - Pairing mode for DM authorization - Multi-account support Includes: - Full onboarding wizard for bot configuration - Probe functionality for connection testing - Channel status reporting - Documentation at docs/channels/webex.md - GitHub labeler configuration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
738 B
JSON
35 lines
738 B
JSON
{
|
|
"name": "@moltbot/webex",
|
|
"version": "2026.1.27",
|
|
"description": "Moltbot Webex channel plugin",
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"exports": {
|
|
".": "./index.ts"
|
|
},
|
|
"moltbot": {
|
|
"extensions": ["./index.ts"],
|
|
"channel": {
|
|
"id": "webex",
|
|
"label": "Webex (Bot Framework)",
|
|
"docsPath": "/channels/webex",
|
|
"order": 65,
|
|
"aliases": ["cisco-webex", "spark"]
|
|
},
|
|
"install": {
|
|
"npmSpec": "@moltbot/webex",
|
|
"localPath": "extensions/webex",
|
|
"defaultChoice": "local"
|
|
}
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"moltbot": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"moltbot": ">=2026.1.26"
|
|
},
|
|
"license": "UNLICENSED",
|
|
"private": true
|
|
}
|