openclaw/extensions/webex/package.json
Xiao Wang a915ed241a feat: add Webex channel integration
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>
2026-01-28 05:37:31 +00:00

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
}