Skip to main content

setup-zoom-websockets

Use when building Zoom WebSockets.

Stars
1,305
Source
openai/plugins
Updated
2026-05-30
Slug
openai--plugins--websockets
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/openai/plugins/HEAD/plugins/zoom/skills/websockets/SKILL.md -o .claude/skills/websockets.md

Drops the SKILL.md into .claude/skills/websockets.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Setup Zoom WebSockets

Use this skill when the integration needs persistent Zoom event delivery instead of HTTP webhook callbacks. If normal webhook retries and delivery are enough, prefer setup-zoom-webhooks.

Workflow

  1. Confirm WebSockets are justified by latency, firewall, connection model, or deployment constraints.
  2. Configure the app and event subscriptions for the required event stream.
  3. Implement connection setup, authentication, heartbeat, reconnect, backoff, and shutdown handling.
  4. Normalize events into the same internal contract used by webhook handlers when both are supported.
  5. Add observability for connection state, reconnect count, event lag, and dropped messages.
  6. Debug by isolating token/auth problems, app subscription settings, network proxies, TLS interception, and reconnect loops.

References