- Register Zoom in CHAT_CHANNEL_ORDER and CHAT_CHANNEL_META (core channel) - Add Zoom to channel dock with config/capabilities - Fix wrong default apiHost: https://api.zoom.us (was https://zoom.us) - Create normalize helpers (normalizeZoomMessagingTarget, looksLikeZoomTargetId) - Export normalize helpers from plugin-sdk - Update channel.ts to use normalize helpers from SDK - Fix version mismatch (2026.1.26 across all packages) Docs improvements: - Convert all config examples from YAML to JSON5 (matches Moltbot format) - Fix config path references (moltbot.yaml → ~/.clawdbot/moltbot.json) - Make LLM provider reference generic (not hardcoded to Anthropic) - Correct Zoom app setup: General App (not Team Chat App) - Add detailed steps: Production tab OAuth, Features tab Team Chat setup - Update onboarding wizard instructions to match actual Zoom UI flow
26 lines
606 B
JSON
26 lines
606 B
JSON
{
|
|
"name": "@moltbot/zoom",
|
|
"version": "2026.1.26",
|
|
"type": "module",
|
|
"description": "Moltbot Zoom Team Chat channel plugin",
|
|
"moltbot": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"channel": {
|
|
"id": "zoom",
|
|
"label": "Zoom",
|
|
"selectionLabel": "Zoom Team Chat",
|
|
"docsPath": "/channels/zoom",
|
|
"docsLabel": "zoom",
|
|
"blurb": "Zoom Team Chat via Team Chat Bot API.",
|
|
"order": 45,
|
|
"quickstartAllowFrom": true
|
|
},
|
|
"install": {
|
|
"npmSpec": "@moltbot/zoom",
|
|
"localPath": "extensions/zoom",
|
|
"defaultChoice": "local"
|
|
}
|
|
}
|
|
} |