Skip to main content
Generalopenai

build-zoom-bot

Use when building bots.

Stars
1,305
Source
openai/plugins
Updated
2026-05-30
Slug
openai--plugins--build-zoom-bot
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/build-zoom-bot/SKILL.md -o .claude/skills/build-zoom-bot.md

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

/build-zoom-bot

Use this skill for automation that joins meetings, captures media, or reacts to live session data.

Covers

  • Bot architecture
  • Meeting join strategy
  • Real-time media and transcript handling
  • Backend orchestration
  • Storage, post-processing, and event flow design

Workflow

  1. Clarify whether the bot needs to join, observe, transcribe, summarize, or act.
  2. Route to Meeting SDK and RTMS as the core implementation path.
  3. Add REST API for meeting/resource management and Webhooks for asynchronous events when needed.
  4. Call out environment and lifecycle constraints early.

Primary References

Common Mistakes

  • Treating batch transcription and live media as the same workflow
  • Designing the bot before defining join authority and auth model
  • Forgetting post-meeting storage and retry behavior