[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-zoom-general":3,"mdc--4ybcsd-key":37,"related-org-anthropic-zoom-general":4778,"related-repo-anthropic-zoom-general":4964},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"zoom-general","reference Zoom platform guidance","Cross-product Zoom reference skill. Use after the workflow is clear when you need shared platform guidance, app-model comparisons, authentication context, scopes, marketplace considerations, or API-vs-MCP routing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Architecture","architecture","tag",{"name":18,"slug":19,"type":16},"Authentication","authentication",{"name":21,"slug":22,"type":16},"API Development","api-development",{"name":24,"slug":25,"type":16},"Zoom","zoom",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:56:48.837136",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fpartner-built\u002Fzoom-plugin\u002Fskills\u002Fgeneral","---\nname: zoom-general\ndescription: Cross-product Zoom reference skill. Use after the workflow is clear when you need shared platform guidance, app-model comparisons, authentication context, scopes, marketplace considerations, or API-vs-MCP routing.\nuser-invocable: false\ntriggers:\n  - \"zoom integration\"\n  - \"getting started\"\n  - \"which zoom sdk\"\n  - \"zoom platform\"\n  - \"choose zoom api\"\n  - \"zoom scopes\"\n  - \"marketplace\"\n  - \"cross-product\"\n  - \"apis vs mcp\"\n  - \"api vs mcp\"\n---\n\n# Zoom General (Cross-Product Skills)\n\nBackground reference for cross-product Zoom questions. Prefer the workflow skills first, then use this file for shared platform guidance and routing detail.\n\n## How `zoom-general` Routes a Complex Developer Query\n\nUse `zoom-general` as the classifier and chaining layer:\n\n1. detect product signals in the query\n2. pick one primary skill\n3. attach secondary skills for auth, events, or deployment edges\n4. ask one short clarifier only when two routes match with similar confidence\n\nMinimal implementation:\n\n```ts\ntype SkillId =\n  | 'zoom-general'\n  | 'zoom-rest-api'\n  | 'zoom-webhooks'\n  | 'zoom-oauth'\n  | 'zoom-meeting-sdk-web-component-view'\n  | 'zoom-video-sdk'\n  | 'zoom-mcp';\n\nconst hasAny = (q: string, words: string[]) => words.some((w) => q.includes(w));\n\nfunction detectSignals(rawQuery: string) {\n  const q = rawQuery.toLowerCase();\n  return {\n    meetingCustomUi: hasAny(q, ['zoom meeting', 'custom ui', 'component view', 'embed meeting']),\n    customVideo: hasAny(q, ['video sdk', 'custom video session', 'peer-video-state-change']),\n    restApi: hasAny(q, ['rest api', '\u002Fv2\u002F', 'create meeting', 'list users', 's2s oauth']),\n    webhooks: hasAny(q, ['webhook', 'x-zm-signature', 'event subscription', 'crc']),\n    oauth: hasAny(q, ['oauth', 'pkce', 'token refresh', 'account_credentials']),\n    mcp: hasAny(q, ['zoom mcp', 'agentic retrieval', 'tools\u002Flist', 'semantic meeting search']),\n  };\n}\n\nfunction pickPrimarySkill(s: ReturnType\u003Ctypeof detectSignals>): SkillId {\n  if (s.meetingCustomUi) return 'zoom-meeting-sdk-web-component-view';\n  if (s.mcp) return 'zoom-mcp';\n  if (s.restApi) return 'zoom-rest-api';\n  if (s.customVideo) return 'zoom-video-sdk';\n  return 'zoom-general';\n}\n\nfunction buildChain(primary: SkillId, s: ReturnType\u003Ctypeof detectSignals>): SkillId[] {\n  const chain = [primary];\n  if (s.oauth && !chain.includes('zoom-oauth')) chain.push('zoom-oauth');\n  if (s.webhooks && !chain.includes('zoom-webhooks')) chain.push('zoom-webhooks');\n  return chain;\n}\n```\n\nExample:\n\n- `Create a meeting, configure webhooks, and handle OAuth token refresh` ->\n  `zoom-rest-api -> zoom-oauth -> zoom-webhooks`\n- `Build a custom video UI for a Zoom meeting on web` ->\n  `zoom-meeting-sdk-web-component-view`\n\nFor the full TypeScript implementation and handoff contract, use\n[references\u002Frouting-implementation.md](references\u002Frouting-implementation.md).\n\n## Choose Your Path\n\n| I want to... | Use this skill |\n|--------------|----------------|\n| Build a custom web UI around a real Zoom meeting | **[zoom-meeting-sdk-web-component-view](..\u002Fmeeting-sdk\u002Fweb\u002Fcomponent-view\u002FSKILL.md)** |\n| Build deterministic automation\u002Fconfiguration\u002Freporting with explicit request control | **[zoom-rest-api](..\u002Frest-api\u002FSKILL.md)** |\n| Receive event notifications (HTTP push) | **[zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md)** |\n| Receive event notifications (WebSocket, low-latency) | **[zoom-websockets](..\u002Fwebsockets\u002FSKILL.md)** |\n| Embed Zoom meetings in my app | **[zoom-meeting-sdk](..\u002Fmeeting-sdk\u002FSKILL.md)** |\n| Build custom video experiences (Web, React Native, Flutter, Android, iOS, macOS, Unity, Linux) | **[zoom-video-sdk](..\u002Fvideo-sdk\u002FSKILL.md)** |\n| Build an app that runs inside Zoom client | **[zoom-apps-sdk](..\u002Fzoom-apps-sdk\u002FSKILL.md)** |\n| Transcribe uploaded or stored media with AI Services Scribe | **[scribe](..\u002Fscribe\u002FSKILL.md)** |\n| Access live audio\u002Fvideo\u002Ftranscripts from meetings | **[zoom-rtms](..\u002Frtms\u002FSKILL.md)** |\n| Enable collaborative browsing for support | **[zoom-cobrowse-sdk](..\u002Fcobrowse-sdk\u002FSKILL.md)** |\n| Build Contact Center apps and channel integrations | **[contact-center](..\u002Fcontact-center\u002FSKILL.md)** |\n| Build Virtual Agent web\u002Fmobile chatbot experiences | **[virtual-agent](..\u002Fvirtual-agent\u002FSKILL.md)** |\n| Build Zoom Phone integrations (Smart Embed, Phone API, webhooks, URI flows) | **[phone](..\u002Fphone\u002FSKILL.md)** |\n| Build Team Chat apps and integrations | **[zoom-team-chat](..\u002Fteam-chat\u002FSKILL.md)** |\n| Build server-side integrations with Rivet (auth + webhooks + APIs) | **[rivet-sdk](..\u002Frivet-sdk\u002FSKILL.md)** |\n| Run browser\u002Fdevice\u002Fnetwork preflight diagnostics before join | **[probe-sdk](..\u002Fprobe-sdk\u002FSKILL.md)** |\n| Add pre-built UI components for Video SDK | **[zoom-ui-toolkit](..\u002Fui-toolkit\u002FSKILL.md)** |\n| Implement OAuth authentication (all grant types) | **[zoom-oauth](..\u002Foauth\u002FSKILL.md)** |\n| Build AI-driven tool workflows (AI Companion\u002Fagents) over Zoom data | **[zoom-mcp](..\u002Fzoom-mcp\u002FSKILL.md)** |\n| Build AI-driven Whiteboard workflows over Zoom Whiteboard MCP | **[zoom-mcp\u002Fwhiteboard](..\u002Fzoom-mcp\u002Fwhiteboard\u002FSKILL.md)** |\n| Build enterprise AI systems with stable API core + AI tool layer | **[zoom-rest-api](..\u002Frest-api\u002FSKILL.md)** + **[zoom-mcp](..\u002Fzoom-mcp\u002FSKILL.md)** |\n\n## Planning Checkpoint: Rivet SDK (Optional)\n\nWhen a user starts planning a server-side integration that combines auth + webhooks + API calls, ask this first:\n\n- `Rivet SDK is a Node.js framework that bundles Zoom auth handling, webhook receivers, and typed API wrappers.`\n- `Do you want to use Rivet SDK for faster scaffolding, or do you prefer a direct OAuth + REST implementation without Rivet?`\n\nRouting after answer:\n\n- If user chooses Rivet: chain `rivet-sdk` + `oauth` + `rest-api`.\n- If user declines Rivet: chain `oauth` + `rest-api` (+ `webhooks` or product skill as needed).\n\n### SDK vs REST Routing Matrix (Hard Stop)\n\n| User intent | Correct path | Do not route to |\n|-------------|--------------|-----------------|\n| Embed Zoom meeting in app UI | `zoom-meeting-sdk` | REST-only `join_url` flow |\n| Build custom web UI for a real Zoom meeting | `zoom-meeting-sdk-web-component-view` | `zoom-video-sdk` |\n| Build custom video UI\u002Fsession app | `zoom-video-sdk` | Meeting SDK or REST meeting links |\n| Get browser join links \u002F manage meeting resources | `zoom-rest-api` | Meeting SDK join implementation |\n\nRouting guardrails:\n- If user asks for SDK embed\u002Fjoin behavior, stay in SDK path.\n- If the prompt says **meeting** plus **custom UI\u002Fvideo\u002Flayout\u002Fembed**, prefer `zoom-meeting-sdk-web-component-view`.\n- Only use `zoom-video-sdk` when the user is building a custom session product rather than a Zoom meeting.\n- Only use REST path for resource management, reporting, or link distribution unless user explicitly requests a mixed architecture.\n- For executable classification\u002Fchaining logic and error handling, see [references\u002Frouting-implementation.md](references\u002Frouting-implementation.md).\n\n### API vs MCP Routing Matrix (Hard Stop)\n\n| User intent | Correct path | Why |\n|-------------|--------------|-----|\n| Deterministic backend automation, account\u002Fuser configuration, reporting, scheduled jobs | `zoom-rest-api` | Explicit request\u002Fresponse control and repeatable behavior |\n| AI agent chooses tools dynamically, cross-platform AI tool interoperability | `zoom-mcp` | MCP is optimized for dynamic tool discovery and agentic workflows |\n| Enterprise AI architecture (stable core + adaptive AI layer) | `zoom-rest-api + zoom-mcp` | APIs run core system actions; MCP exposes curated AI tools\u002Fcontext |\n\nRouting guardrails:\n- Do not replace deterministic backend APIs with MCP-only routing.\n- Do not force raw REST-first routing when the task is AI-agent tool orchestration.\n- Prefer hybrid routing when the user needs both stable automation and AI-driven interactions.\n- MCP remote server works over Streamable HTTP\u002FSSE; use this path when the target client\u002Fagent supports MCP transports (for example Claude or VS Code).\n- Do not design per-tenant custom MCP endpoint provisioning; Zoom MCP endpoints are shared at instance\u002Fcluster level.\n- Source: https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmcp\u002Flibrary\u002Fresources\u002Fapis-vs-mcp\u002F\n\n### Ambiguity Resolution (Ask Before Routing)\n\nWhen a prompt matches both API and MCP paths with similar confidence, ask one short clarifier before execution:\n\n- `Do you want deterministic REST API automation, AI-agent MCP tooling, or a hybrid of both?`\n\nThen route as:\n- REST answer → `zoom-rest-api`\n- MCP answer → `zoom-mcp`\n- Hybrid answer → `zoom-rest-api + zoom-mcp`\n\n### MCP Availability and Topology Notes\n\n- Zoom-hosted MCP access is evolving; docs indicate a model where Zoom exposes product-scoped MCP servers (for example Meetings, Team Chat, Whiteboard).\n- Use `zoom-mcp` as the parent MCP entry point.\n- Route Whiteboard-specific MCP requests to **[zoom-mcp\u002Fwhiteboard](..\u002Fzoom-mcp\u002Fwhiteboard\u002FSKILL.md)**.\n- When a request is product-specific and MCP coverage exists, route to that MCP product surface first; otherwise use REST\u002FSDK skills for deterministic implementation.\n\n### Webhooks vs WebSockets\n\nBoth receive event notifications, but differ in approach:\n\n| Aspect | webhooks | zoom-websockets |\n|--------|---------------|-----------------|\n| Connection | HTTP POST to your endpoint | Persistent WebSocket |\n| Latency | Higher | Lower |\n| Security | Requires public endpoint | No exposed endpoint |\n| Setup | Simpler | More complex |\n| Best for | Most use cases | Real-time, security-sensitive |\n\n## Common Use Cases\n\n| Use Case | Description | Skills Needed |\n|----------|-------------|---------------|\n| [Meeting + Webhooks + OAuth Refresh](references\u002Fmeeting-webhooks-oauth-refresh-orchestration.md) | Create a meeting, process real-time updates, and refresh OAuth tokens safely in one design | [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) + [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) |\n| [Scribe Transcription Pipeline](use-cases\u002Fscribe-transcription-pipeline.md) | Transcribe uploaded files or S3 archives with AI Services Scribe using fast mode or batch jobs | [scribe](..\u002Fscribe\u002FSKILL.md) + optional [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) + optional [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) |\n| [APIs vs MCP Routing](use-cases\u002Fapis-vs-mcp-routing.md) | Decide whether to route to deterministic Zoom APIs, AI-driven MCP, or a hybrid design | [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) and\u002For [zoom-mcp](..\u002Fzoom-mcp\u002FSKILL.md) |\n| [Custom Meeting UI (Web)](use-cases\u002Fcustom-meeting-ui-web.md) | Build a custom video UI for a real Zoom meeting in a web app using Meeting SDK Component View | [zoom-meeting-sdk-web-component-view](..\u002Fmeeting-sdk\u002Fweb\u002Fcomponent-view\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [Meeting Automation](use-cases\u002Fmeeting-automation.md) | Schedule, update, delete meetings programmatically | [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) |\n| [Meeting Bots](use-cases\u002Fmeeting-bots.md) | Build bots that join meetings for AI\u002Ftranscription\u002Frecording | [meeting-sdk\u002Flinux](..\u002Fmeeting-sdk\u002Flinux\u002FSKILL.md) + [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) + optional [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) |\n| [High-Volume Meeting Platform](use-cases\u002Fhigh-volume-meeting-platform.md) | Design distributed meeting creation and event processing with retries, queues, and reconciliation | [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) + [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [Recording & Transcription](use-cases\u002Frecording-transcription.md) | Download recordings, get transcripts | [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) + [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) |\n| [Recording Download Pipeline](use-cases\u002Frecording-download-pipeline.md) | Auto-download recordings to your own storage (S3, GCS, etc.) | [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) + [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) |\n| [Real-Time Media Streams](use-cases\u002Freal-time-media-streams.md) | Access live audio, video, transcripts via WebSocket | [zoom-rtms](..\u002Frtms\u002FSKILL.md) + [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) |\n| [In-Meeting Apps](use-cases\u002Fin-meeting-apps.md) | Build apps that run inside Zoom meetings | [zoom-apps-sdk](..\u002Fzoom-apps-sdk\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [React Native Meeting Embed](use-cases\u002Freact-native-meeting-embed.md) | Embed meetings into iOS\u002FAndroid React Native apps | [zoom-meeting-sdk-react-native](..\u002Fmeeting-sdk\u002Freact-native\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [Native Meeting SDK Multi-Platform Delivery](use-cases\u002Fnative-meeting-sdk-multi-platform.md) | Align Android, iOS, macOS, and Unreal Meeting SDK implementations under one auth\u002Fversion strategy | [zoom-meeting-sdk](..\u002Fmeeting-sdk\u002FSKILL.md) + platform skills |\n| [Native Video SDK Multi-Platform Delivery](use-cases\u002Fnative-video-sdk-multi-platform.md) | Align Android, iOS, macOS, and Unity Video SDK implementations under one auth\u002Fversion strategy | [zoom-video-sdk](..\u002Fvideo-sdk\u002FSKILL.md) + platform skills |\n| [Electron Meeting Embed](use-cases\u002Felectron-meeting-embed.md) | Embed meetings into desktop Electron apps | [zoom-meeting-sdk-electron](..\u002Fmeeting-sdk\u002Felectron\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [Flutter Video Sessions](use-cases\u002Fflutter-video-sessions.md) | Build custom mobile video sessions in Flutter | [zoom-video-sdk-flutter](..\u002Fvideo-sdk\u002Fflutter\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [React Native Video Sessions](use-cases\u002Freact-native-video-sessions.md) | Build custom mobile video sessions in React Native | [zoom-video-sdk-react-native](..\u002Fvideo-sdk\u002Freact-native\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [Immersive Experiences](use-cases\u002Fimmersive-experiences.md) | Custom video layouts with Layers API | [zoom-apps-sdk](..\u002Fzoom-apps-sdk\u002FSKILL.md) |\n| [Collaborative Apps](use-cases\u002Fcollaborative-apps.md) | Real-time shared state in meetings | [zoom-apps-sdk](..\u002Fzoom-apps-sdk\u002FSKILL.md) |\n| [Contact Center App Lifecycle and Context Switching](use-cases\u002Fcontact-center-app-lifecycle-and-context-switching.md) | Build Contact Center apps that handle engagement events and multi-engagement state | [contact-center](..\u002Fcontact-center\u002FSKILL.md) + [zoom-apps-sdk](..\u002Fzoom-apps-sdk\u002FSKILL.md) |\n| [Virtual Agent Campaign Web and Mobile Wrapper](use-cases\u002Fvirtual-agent-campaign-web-mobile-wrapper.md) | Deliver one campaign-driven bot flow across web and native mobile wrappers | [virtual-agent](..\u002Fvirtual-agent\u002FSKILL.md) + [contact-center](..\u002Fcontact-center\u002FSKILL.md) |\n| [Virtual Agent Knowledge Base Sync Pipeline](use-cases\u002Fvirtual-agent-knowledge-base-sync-pipeline.md) | Sync external knowledge content into Zoom Virtual Agent using web sync or custom API connectors | [virtual-agent](..\u002Fvirtual-agent\u002FSKILL.md) + [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) |\n| [Zoom Phone Smart Embed CRM Integration](use-cases\u002Fzoom-phone-smart-embed-crm.md) | Build CRM dialer and call logging flows using Smart Embed plus Phone APIs | [phone](..\u002Fphone\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) + [zoom-webhooks](..\u002Fwebhooks\u002FSKILL.md) |\n| [Rivet Event-Driven API Orchestrator](use-cases\u002Frivet-event-driven-api-orchestrator.md) | Build a Node.js backend that combines webhooks and API actions through Rivet module clients | [rivet-sdk](..\u002Frivet-sdk\u002FSKILL.md) + [zoom-oauth](..\u002Foauth\u002FSKILL.md) + [zoom-rest-api](..\u002Frest-api\u002FSKILL.md) |\n| [Probe SDK Preflight Readiness Gate](use-cases\u002Fprobe-sdk-preflight-readiness-gate.md) | Add browser\u002Fdevice\u002Fnetwork diagnostics and readiness policy before Meeting SDK or Video SDK joins | [probe-sdk](..\u002Fprobe-sdk\u002FSKILL.md) + [zoom-meeting-sdk](..\u002Fmeeting-sdk\u002FSKILL.md) or [zoom-video-sdk](..\u002Fvideo-sdk\u002FSKILL.md) |\n\n## Complete Use-Case Index\n\n- [APIs vs MCP Routing](use-cases\u002Fapis-vs-mcp-routing.md): choose API-only, MCP-only, or hybrid routing using official Zoom criteria.\n- [AI Companion Integration](use-cases\u002Fai-companion-integration.md): connect Zoom AI Companion capabilities into your app workflow.\n- [AI Integration](use-cases\u002Fai-integration.md): add summarization, transcription, or assistant logic using Zoom data surfaces.\n- [Backend Automation (S2S OAuth)](use-cases\u002Fbackend-automation-s2s-oauth.md): run server-side jobs with account-level OAuth credentials.\n- [Collaborative Apps](use-cases\u002Fcollaborative-apps.md): build shared in-meeting app state and interactions.\n- [Contact Center Integration](use-cases\u002Fcontact-center-integration.md): connect Zoom Contact Center signals into external systems.\n- [Contact Center App Lifecycle and Context Switching](use-cases\u002Fcontact-center-app-lifecycle-and-context-switching.md): implement event-driven engagement state and safe context switching in Contact Center apps.\n- [Virtual Agent Campaign Web and Mobile Wrapper](use-cases\u002Fvirtual-agent-campaign-web-mobile-wrapper.md): deploy campaign-based Virtual Agent chat across website and Android\u002FiOS WebView wrappers.\n- [Virtual Agent Knowledge Base Sync Pipeline](use-cases\u002Fvirtual-agent-knowledge-base-sync-pipeline.md): automate knowledge-base ingestion with web sync strategy or custom API connector.\n- [Zoom Phone Smart Embed CRM Integration](use-cases\u002Fzoom-phone-smart-embed-crm.md): integrate Smart Embed events, Phone APIs, and CRM workflows with migration-safe data handling.\n- [Rivet Event-Driven API Orchestrator](use-cases\u002Frivet-event-driven-api-orchestrator.md): build a Node.js backend that combines webhook handling and API orchestration with Rivet.\n- [Probe SDK Preflight Readiness Gate](use-cases\u002Fprobe-sdk-preflight-readiness-gate.md): run browser\u002Fdevice\u002Fnetwork diagnostics before launching meeting or video session workflows.\n- [Custom Video](use-cases\u002Fcustom-video.md): decide between Video SDK and related components for custom session UX.\n- [Custom Meeting UI (Web)](use-cases\u002Fcustom-meeting-ui-web.md): use Meeting SDK Component View for a custom UI around a real Zoom meeting.\n- [Scribe Transcription Pipeline](use-cases\u002Fscribe-transcription-pipeline.md): use AI Services Scribe for on-demand file transcription and batch archive processing.\n- [Video SDK Bring Your Own Storage](use-cases\u002Fvideo-sdk-bring-your-own-storage.md): configure Video SDK cloud recordings to write directly to your own S3 bucket.\n- [Customer Support Cobrowsing](use-cases\u002Fcustomer-support-cobrowsing.md): implement customer-agent collaborative browsing support flows.\n- [Embed Meetings](use-cases\u002Fembed-meetings.md): embed Zoom meeting experience into your app.\n- [Form Completion Assistant](use-cases\u002Fform-completion-assistant.md): build guided flows for form filling and completion assistance.\n- [HD Video Resolution](use-cases\u002Fhd-video-resolution.md): enable and troubleshoot high-definition video requirements.\n- [High-Volume Meeting Platform](use-cases\u002Fhigh-volume-meeting-platform.md): build distributed meeting creation and event processing with concrete fallback patterns.\n- [Immersive Experiences](use-cases\u002Fimmersive-experiences.md): use Zoom Apps Layers APIs for custom in-meeting visuals.\n- [In-Meeting Apps](use-cases\u002Fin-meeting-apps.md): build Zoom Apps that run directly inside meeting and webinar contexts.\n- [Marketplace Publishing](use-cases\u002Fmarketplace-publishing.md): prepare and ship a Zoom app through Marketplace review.\n- [Meeting Automation](use-cases\u002Fmeeting-automation.md): create, update, and manage meetings programmatically.\n- [Meeting Bots](use-cases\u002Fmeeting-bots.md): build bots for meeting join, capture, and real-time analysis.\n- [Native Meeting SDK Multi-Platform Delivery](use-cases\u002Fnative-meeting-sdk-multi-platform.md): standardize Android, iOS, macOS, and Unreal Meeting SDK delivery with shared auth and version controls.\n- [Native Video SDK Multi-Platform Delivery](use-cases\u002Fnative-video-sdk-multi-platform.md): standardize Android, iOS, macOS, and Unity Video SDK delivery with shared auth and version controls.\n- [Meeting Details with Events](use-cases\u002Fmeeting-details-with-events.md): combine REST retrieval with webhook event streams.\n- [Minutes Calculation](use-cases\u002Fminutes-calculation.md): compute usage and minute metrics across meetings\u002Fsessions.\n- [Prebuilt Video UI](use-cases\u002Fprebuilt-video-ui.md): use UI Toolkit for faster Video SDK-based UI delivery.\n- [QSS Monitoring](use-cases\u002Fqss-monitoring.md): monitor Zoom quality statistics and performance indicators.\n- [Raw Recording](use-cases\u002Fraw-recording.md): capture raw streams for custom recording and processing pipelines.\n- [Electron Meeting Embed](use-cases\u002Felectron-meeting-embed.md): embed meetings in an Electron desktop application.\n- [Flutter Video Sessions](use-cases\u002Fflutter-video-sessions.md): build Video SDK sessions in Flutter mobile apps.\n- [React Native Meeting Embed](use-cases\u002Freact-native-meeting-embed.md): embed Meeting SDK into React Native apps.\n- [React Native Video Sessions](use-cases\u002Freact-native-video-sessions.md): build custom video sessions in React Native.\n- [Real-Time Media Streams](use-cases\u002Freal-time-media-streams.md): consume live media\u002Ftranscript streams via RTMS.\n- [Recording Download Pipeline](use-cases\u002Frecording-download-pipeline.md): automate recording retrieval and storage pipelines.\n- [Recording & Transcription](use-cases\u002Frecording-transcription.md): manage post-meeting recordings and transcript workflows.\n- [Retrieve Meeting and Subscribe Events](use-cases\u002Fretrieve-meeting-and-subscribe-events.md): join REST meeting fetch with event subscriptions.\n- [SaaS App OAuth Integration](use-cases\u002Fsaas-app-oauth-integration.md): implement user-level OAuth in multi-tenant SaaS apps.\n- [SDK Size Optimization](use-cases\u002Fsdk-size-optimization.md): reduce bundle\u002Fruntime footprint for SDK-based apps.\n- [SDK Wrappers and GUI](use-cases\u002Fsdk-wrappers-gui.md): evaluate wrapper patterns and GUI frameworks around SDKs.\n- [Team Chat LLM Bot](use-cases\u002Fteam-chat-llm-bot.md): build a Team Chat bot with LLM-powered responses.\n- [Testing and Development](use-cases\u002Ftesting-development.md): local testing patterns, mocks, and safe development loops.\n- [Token and Scope Troubleshooting](use-cases\u002Ftoken-and-scope-troubleshooting.md): debug OAuth scope and token mismatch issues.\n- [Transcription Bot (Linux)](use-cases\u002Ftranscription-bot-linux.md): run Linux meeting bots for live transcription workloads.\n- [Usage Reporting and Analytics](use-cases\u002Fusage-reporting-analytics.md): collect and analyze usage\u002Freporting data.\n- [User and Meeting Creation](use-cases\u002Fuser-and-meeting-creation.md): provision users and schedule meetings in one flow.\n- [Web SDK Embedding](use-cases\u002Fweb-sdk-embedding.md): embed meeting experiences in browser-based web apps.\n- [Server-to-Server OAuth with Webhooks](use-cases\u002Fserver-to-server-oauth-with-webhooks.md): combine account OAuth with event-driven backend processing.\n- [Meeting Links vs Embedding](use-cases\u002Fmeeting-links-vs-embedding.md): choose between `join_url` distribution and SDK embedding.\n- [Enterprise App Deployment](use-cases\u002Fenterprise-app-deployment.md): deploy, govern, and operate Zoom integrations at enterprise scale.\n\n## Prerequisites\n\n1. Zoom account (Pro, Business, or Enterprise)\n2. App created in [Zoom App Marketplace](https:\u002F\u002Fmarketplace.zoom.us\u002F)\n3. OAuth credentials (Client ID and Secret)\n\n## References\n\n- [Known Limitations & Quirks](references\u002Fknown-limitations.md)\n\n## Quick Start\n\n1. Go to [marketplace.zoom.us](https:\u002F\u002Fmarketplace.zoom.us\u002F)\n2. Click **Develop** → **Build App**\n3. Select app type (see [references\u002Fapp-types.md](references\u002Fapp-types.md))\n4. Configure OAuth and scopes\n5. Copy credentials to your application\n\n## Detailed References\n\n- **[references\u002Fauthentication.md](references\u002Fauthentication.md)** - OAuth 2.0, S2S OAuth, JWT patterns\n- **[references\u002Fapp-types.md](references\u002Fapp-types.md)** - Decision guide for app types\n- **[references\u002Fscopes.md](references\u002Fscopes.md)** - OAuth scopes reference\n- **[references\u002Fmarketplace.md](references\u002Fmarketplace.md)** - Marketplace portal navigation\n- **[references\u002Fquery-routing-playbook.md](references\u002Fquery-routing-playbook.md)** - Route complex queries to the right specialized skills\n- **[references\u002Finterview-answer-routing.md](references\u002Finterview-answer-routing.md)** - Short interview-ready answer pattern for zoom-general routing\n- **[references\u002Frouting-implementation.md](references\u002Frouting-implementation.md)** - Concrete TypeScript query classification and skill handoff contract\n- **[references\u002Fautomatic-skill-chaining-rest-webhooks.md](references\u002Fautomatic-skill-chaining-rest-webhooks.md)** - Executable process for REST + webhook chained workflows\n- **[references\u002Fmeeting-webhooks-oauth-refresh-orchestration.md](references\u002Fmeeting-webhooks-oauth-refresh-orchestration.md)** - Concrete design for meeting creation + webhook updates + OAuth token refresh\n- **[references\u002Fdistributed-meeting-fallback-architecture.md](references\u002Fdistributed-meeting-fallback-architecture.md)** - High-volume distributed architecture with retries, circuit breakers, and reconciliation fallbacks\n- **[references\u002Fcommunity-repos.md](references\u002Fcommunity-repos.md)** - Curated official Zoom sample repositories by product\n\n## SDK Maintenance\n\n- **[references\u002Fsdk-upgrade-guide.md](references\u002Fsdk-upgrade-guide.md)** - Version policy, upgrade steps\n- **[references\u002Fsdk-upgrade-workflow.md](references\u002Fsdk-upgrade-workflow.md)** - Changelog + RSS, version-by-version reusable upgrade workflow\n- **[references\u002Fsdk-logs-troubleshooting.md](references\u002Fsdk-logs-troubleshooting.md)** - Collecting SDK logs\n\n## Resources\n\n- **Official docs**: https:\u002F\u002Fdevelopers.zoom.us\u002F\n- **Marketplace**: https:\u002F\u002Fmarketplace.zoom.us\u002F\n- **Developer forum**: https:\u002F\u002Fdevforum.zoom.us\u002F\n\n## Environment Variables\n\n- See [references\u002Fenvironment-variables.md](references\u002Fenvironment-variables.md) for standardized `.env` keys and where to find each value.\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":38,"body":51},{"name":4,"description":6,"user-invocable":39,"triggers":40},false,[41,42,43,44,45,46,47,48,49,50],"zoom integration","getting started","which zoom sdk","zoom platform","choose zoom api","zoom scopes","marketplace","cross-product","apis vs mcp","api vs mcp",{"type":52,"children":53},"root",[54,63,69,84,96,121,126,1854,1859,1895,1907,1913,2363,2369,2374,2395,2400,2452,2459,2581,2586,2646,2652,2741,2745,2785,2791,2796,2808,2813,2846,2852,2889,2895,2900,3015,3021,3804,3810,4366,4372,4397,4403,4415,4421,4473,4479,4622,4628,4670,4676,4724,4730,4753,4759,4772],{"type":55,"tag":56,"props":57,"children":59},"element","h1",{"id":58},"zoom-general-cross-product-skills",[60],{"type":61,"value":62},"text","Zoom General (Cross-Product Skills)",{"type":55,"tag":64,"props":65,"children":66},"p",{},[67],{"type":61,"value":68},"Background reference for cross-product Zoom questions. Prefer the workflow skills first, then use this file for shared platform guidance and routing detail.",{"type":55,"tag":70,"props":71,"children":73},"h2",{"id":72},"how-zoom-general-routes-a-complex-developer-query",[74,76,82],{"type":61,"value":75},"How ",{"type":55,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":61,"value":4},{"type":61,"value":83}," Routes a Complex Developer Query",{"type":55,"tag":64,"props":85,"children":86},{},[87,89,94],{"type":61,"value":88},"Use ",{"type":55,"tag":77,"props":90,"children":92},{"className":91},[],[93],{"type":61,"value":4},{"type":61,"value":95}," as the classifier and chaining layer:",{"type":55,"tag":97,"props":98,"children":99},"ol",{},[100,106,111,116],{"type":55,"tag":101,"props":102,"children":103},"li",{},[104],{"type":61,"value":105},"detect product signals in the query",{"type":55,"tag":101,"props":107,"children":108},{},[109],{"type":61,"value":110},"pick one primary skill",{"type":55,"tag":101,"props":112,"children":113},{},[114],{"type":61,"value":115},"attach secondary skills for auth, events, or deployment edges",{"type":55,"tag":101,"props":117,"children":118},{},[119],{"type":61,"value":120},"ask one short clarifier only when two routes match with similar confidence",{"type":55,"tag":64,"props":122,"children":123},{},[124],{"type":61,"value":125},"Minimal implementation:",{"type":55,"tag":127,"props":128,"children":133},"pre",{"className":129,"code":130,"language":131,"meta":132,"style":132},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","type SkillId =\n  | 'zoom-general'\n  | 'zoom-rest-api'\n  | 'zoom-webhooks'\n  | 'zoom-oauth'\n  | 'zoom-meeting-sdk-web-component-view'\n  | 'zoom-video-sdk'\n  | 'zoom-mcp';\n\nconst hasAny = (q: string, words: string[]) => words.some((w) => q.includes(w));\n\nfunction detectSignals(rawQuery: string) {\n  const q = rawQuery.toLowerCase();\n  return {\n    meetingCustomUi: hasAny(q, ['zoom meeting', 'custom ui', 'component view', 'embed meeting']),\n    customVideo: hasAny(q, ['video sdk', 'custom video session', 'peer-video-state-change']),\n    restApi: hasAny(q, ['rest api', '\u002Fv2\u002F', 'create meeting', 'list users', 's2s oauth']),\n    webhooks: hasAny(q, ['webhook', 'x-zm-signature', 'event subscription', 'crc']),\n    oauth: hasAny(q, ['oauth', 'pkce', 'token refresh', 'account_credentials']),\n    mcp: hasAny(q, ['zoom mcp', 'agentic retrieval', 'tools\u002Flist', 'semantic meeting search']),\n  };\n}\n\nfunction pickPrimarySkill(s: ReturnType\u003Ctypeof detectSignals>): SkillId {\n  if (s.meetingCustomUi) return 'zoom-meeting-sdk-web-component-view';\n  if (s.mcp) return 'zoom-mcp';\n  if (s.restApi) return 'zoom-rest-api';\n  if (s.customVideo) return 'zoom-video-sdk';\n  return 'zoom-general';\n}\n\nfunction buildChain(primary: SkillId, s: ReturnType\u003Ctypeof detectSignals>): SkillId[] {\n  const chain = [primary];\n  if (s.oauth && !chain.includes('zoom-oauth')) chain.push('zoom-oauth');\n  if (s.webhooks && !chain.includes('zoom-webhooks')) chain.push('zoom-webhooks');\n  return chain;\n}\n","ts","",[134],{"type":55,"tag":77,"props":135,"children":136},{"__ignoreMap":132},[137,161,185,206,227,248,269,290,317,327,461,469,509,551,565,674,762,884,989,1094,1199,1208,1217,1225,1278,1330,1379,1428,1477,1501,1509,1517,1590,1624,1729,1830,1846],{"type":55,"tag":138,"props":139,"children":142},"span",{"class":140,"line":141},"line",1,[143,149,155],{"type":55,"tag":138,"props":144,"children":146},{"style":145},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[147],{"type":61,"value":148},"type",{"type":55,"tag":138,"props":150,"children":152},{"style":151},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[153],{"type":61,"value":154}," SkillId",{"type":55,"tag":138,"props":156,"children":158},{"style":157},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[159],{"type":61,"value":160}," =\n",{"type":55,"tag":138,"props":162,"children":164},{"class":140,"line":163},2,[165,170,175,180],{"type":55,"tag":138,"props":166,"children":167},{"style":157},[168],{"type":61,"value":169},"  |",{"type":55,"tag":138,"props":171,"children":172},{"style":157},[173],{"type":61,"value":174}," '",{"type":55,"tag":138,"props":176,"children":178},{"style":177},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[179],{"type":61,"value":4},{"type":55,"tag":138,"props":181,"children":182},{"style":157},[183],{"type":61,"value":184},"'\n",{"type":55,"tag":138,"props":186,"children":188},{"class":140,"line":187},3,[189,193,197,202],{"type":55,"tag":138,"props":190,"children":191},{"style":157},[192],{"type":61,"value":169},{"type":55,"tag":138,"props":194,"children":195},{"style":157},[196],{"type":61,"value":174},{"type":55,"tag":138,"props":198,"children":199},{"style":177},[200],{"type":61,"value":201},"zoom-rest-api",{"type":55,"tag":138,"props":203,"children":204},{"style":157},[205],{"type":61,"value":184},{"type":55,"tag":138,"props":207,"children":209},{"class":140,"line":208},4,[210,214,218,223],{"type":55,"tag":138,"props":211,"children":212},{"style":157},[213],{"type":61,"value":169},{"type":55,"tag":138,"props":215,"children":216},{"style":157},[217],{"type":61,"value":174},{"type":55,"tag":138,"props":219,"children":220},{"style":177},[221],{"type":61,"value":222},"zoom-webhooks",{"type":55,"tag":138,"props":224,"children":225},{"style":157},[226],{"type":61,"value":184},{"type":55,"tag":138,"props":228,"children":230},{"class":140,"line":229},5,[231,235,239,244],{"type":55,"tag":138,"props":232,"children":233},{"style":157},[234],{"type":61,"value":169},{"type":55,"tag":138,"props":236,"children":237},{"style":157},[238],{"type":61,"value":174},{"type":55,"tag":138,"props":240,"children":241},{"style":177},[242],{"type":61,"value":243},"zoom-oauth",{"type":55,"tag":138,"props":245,"children":246},{"style":157},[247],{"type":61,"value":184},{"type":55,"tag":138,"props":249,"children":251},{"class":140,"line":250},6,[252,256,260,265],{"type":55,"tag":138,"props":253,"children":254},{"style":157},[255],{"type":61,"value":169},{"type":55,"tag":138,"props":257,"children":258},{"style":157},[259],{"type":61,"value":174},{"type":55,"tag":138,"props":261,"children":262},{"style":177},[263],{"type":61,"value":264},"zoom-meeting-sdk-web-component-view",{"type":55,"tag":138,"props":266,"children":267},{"style":157},[268],{"type":61,"value":184},{"type":55,"tag":138,"props":270,"children":272},{"class":140,"line":271},7,[273,277,281,286],{"type":55,"tag":138,"props":274,"children":275},{"style":157},[276],{"type":61,"value":169},{"type":55,"tag":138,"props":278,"children":279},{"style":157},[280],{"type":61,"value":174},{"type":55,"tag":138,"props":282,"children":283},{"style":177},[284],{"type":61,"value":285},"zoom-video-sdk",{"type":55,"tag":138,"props":287,"children":288},{"style":157},[289],{"type":61,"value":184},{"type":55,"tag":138,"props":291,"children":293},{"class":140,"line":292},8,[294,298,302,307,312],{"type":55,"tag":138,"props":295,"children":296},{"style":157},[297],{"type":61,"value":169},{"type":55,"tag":138,"props":299,"children":300},{"style":157},[301],{"type":61,"value":174},{"type":55,"tag":138,"props":303,"children":304},{"style":177},[305],{"type":61,"value":306},"zoom-mcp",{"type":55,"tag":138,"props":308,"children":309},{"style":157},[310],{"type":61,"value":311},"'",{"type":55,"tag":138,"props":313,"children":314},{"style":157},[315],{"type":61,"value":316},";\n",{"type":55,"tag":138,"props":318,"children":320},{"class":140,"line":319},9,[321],{"type":55,"tag":138,"props":322,"children":324},{"emptyLinePlaceholder":323},true,[325],{"type":61,"value":326},"\n",{"type":55,"tag":138,"props":328,"children":330},{"class":140,"line":329},10,[331,336,342,347,352,358,363,368,373,378,382,386,391,396,401,405,410,416,421,425,430,434,438,443,447,452,457],{"type":55,"tag":138,"props":332,"children":333},{"style":145},[334],{"type":61,"value":335},"const",{"type":55,"tag":138,"props":337,"children":339},{"style":338},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[340],{"type":61,"value":341}," hasAny ",{"type":55,"tag":138,"props":343,"children":344},{"style":157},[345],{"type":61,"value":346},"=",{"type":55,"tag":138,"props":348,"children":349},{"style":157},[350],{"type":61,"value":351}," (",{"type":55,"tag":138,"props":353,"children":355},{"style":354},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[356],{"type":61,"value":357},"q",{"type":55,"tag":138,"props":359,"children":360},{"style":157},[361],{"type":61,"value":362},":",{"type":55,"tag":138,"props":364,"children":365},{"style":151},[366],{"type":61,"value":367}," string",{"type":55,"tag":138,"props":369,"children":370},{"style":157},[371],{"type":61,"value":372},",",{"type":55,"tag":138,"props":374,"children":375},{"style":354},[376],{"type":61,"value":377}," words",{"type":55,"tag":138,"props":379,"children":380},{"style":157},[381],{"type":61,"value":362},{"type":55,"tag":138,"props":383,"children":384},{"style":151},[385],{"type":61,"value":367},{"type":55,"tag":138,"props":387,"children":388},{"style":338},[389],{"type":61,"value":390},"[]",{"type":55,"tag":138,"props":392,"children":393},{"style":157},[394],{"type":61,"value":395},")",{"type":55,"tag":138,"props":397,"children":398},{"style":145},[399],{"type":61,"value":400}," =>",{"type":55,"tag":138,"props":402,"children":403},{"style":338},[404],{"type":61,"value":377},{"type":55,"tag":138,"props":406,"children":407},{"style":157},[408],{"type":61,"value":409},".",{"type":55,"tag":138,"props":411,"children":413},{"style":412},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[414],{"type":61,"value":415},"some",{"type":55,"tag":138,"props":417,"children":418},{"style":338},[419],{"type":61,"value":420},"(",{"type":55,"tag":138,"props":422,"children":423},{"style":157},[424],{"type":61,"value":420},{"type":55,"tag":138,"props":426,"children":427},{"style":354},[428],{"type":61,"value":429},"w",{"type":55,"tag":138,"props":431,"children":432},{"style":157},[433],{"type":61,"value":395},{"type":55,"tag":138,"props":435,"children":436},{"style":145},[437],{"type":61,"value":400},{"type":55,"tag":138,"props":439,"children":440},{"style":338},[441],{"type":61,"value":442}," q",{"type":55,"tag":138,"props":444,"children":445},{"style":157},[446],{"type":61,"value":409},{"type":55,"tag":138,"props":448,"children":449},{"style":412},[450],{"type":61,"value":451},"includes",{"type":55,"tag":138,"props":453,"children":454},{"style":338},[455],{"type":61,"value":456},"(w))",{"type":55,"tag":138,"props":458,"children":459},{"style":157},[460],{"type":61,"value":316},{"type":55,"tag":138,"props":462,"children":464},{"class":140,"line":463},11,[465],{"type":55,"tag":138,"props":466,"children":467},{"emptyLinePlaceholder":323},[468],{"type":61,"value":326},{"type":55,"tag":138,"props":470,"children":472},{"class":140,"line":471},12,[473,478,483,487,492,496,500,504],{"type":55,"tag":138,"props":474,"children":475},{"style":145},[476],{"type":61,"value":477},"function",{"type":55,"tag":138,"props":479,"children":480},{"style":412},[481],{"type":61,"value":482}," detectSignals",{"type":55,"tag":138,"props":484,"children":485},{"style":157},[486],{"type":61,"value":420},{"type":55,"tag":138,"props":488,"children":489},{"style":354},[490],{"type":61,"value":491},"rawQuery",{"type":55,"tag":138,"props":493,"children":494},{"style":157},[495],{"type":61,"value":362},{"type":55,"tag":138,"props":497,"children":498},{"style":151},[499],{"type":61,"value":367},{"type":55,"tag":138,"props":501,"children":502},{"style":157},[503],{"type":61,"value":395},{"type":55,"tag":138,"props":505,"children":506},{"style":157},[507],{"type":61,"value":508}," {\n",{"type":55,"tag":138,"props":510,"children":512},{"class":140,"line":511},13,[513,518,522,527,532,536,541,547],{"type":55,"tag":138,"props":514,"children":515},{"style":145},[516],{"type":61,"value":517},"  const",{"type":55,"tag":138,"props":519,"children":520},{"style":338},[521],{"type":61,"value":442},{"type":55,"tag":138,"props":523,"children":524},{"style":157},[525],{"type":61,"value":526}," =",{"type":55,"tag":138,"props":528,"children":529},{"style":338},[530],{"type":61,"value":531}," rawQuery",{"type":55,"tag":138,"props":533,"children":534},{"style":157},[535],{"type":61,"value":409},{"type":55,"tag":138,"props":537,"children":538},{"style":412},[539],{"type":61,"value":540},"toLowerCase",{"type":55,"tag":138,"props":542,"children":544},{"style":543},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[545],{"type":61,"value":546},"()",{"type":55,"tag":138,"props":548,"children":549},{"style":157},[550],{"type":61,"value":316},{"type":55,"tag":138,"props":552,"children":554},{"class":140,"line":553},14,[555,561],{"type":55,"tag":138,"props":556,"children":558},{"style":557},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[559],{"type":61,"value":560},"  return",{"type":55,"tag":138,"props":562,"children":563},{"style":157},[564],{"type":61,"value":508},{"type":55,"tag":138,"props":566,"children":568},{"class":140,"line":567},15,[569,574,578,583,587,591,595,600,604,609,613,617,621,626,630,634,638,643,647,651,655,660,664,669],{"type":55,"tag":138,"props":570,"children":571},{"style":543},[572],{"type":61,"value":573},"    meetingCustomUi",{"type":55,"tag":138,"props":575,"children":576},{"style":157},[577],{"type":61,"value":362},{"type":55,"tag":138,"props":579,"children":580},{"style":412},[581],{"type":61,"value":582}," hasAny",{"type":55,"tag":138,"props":584,"children":585},{"style":543},[586],{"type":61,"value":420},{"type":55,"tag":138,"props":588,"children":589},{"style":338},[590],{"type":61,"value":357},{"type":55,"tag":138,"props":592,"children":593},{"style":157},[594],{"type":61,"value":372},{"type":55,"tag":138,"props":596,"children":597},{"style":543},[598],{"type":61,"value":599}," [",{"type":55,"tag":138,"props":601,"children":602},{"style":157},[603],{"type":61,"value":311},{"type":55,"tag":138,"props":605,"children":606},{"style":177},[607],{"type":61,"value":608},"zoom meeting",{"type":55,"tag":138,"props":610,"children":611},{"style":157},[612],{"type":61,"value":311},{"type":55,"tag":138,"props":614,"children":615},{"style":157},[616],{"type":61,"value":372},{"type":55,"tag":138,"props":618,"children":619},{"style":157},[620],{"type":61,"value":174},{"type":55,"tag":138,"props":622,"children":623},{"style":177},[624],{"type":61,"value":625},"custom ui",{"type":55,"tag":138,"props":627,"children":628},{"style":157},[629],{"type":61,"value":311},{"type":55,"tag":138,"props":631,"children":632},{"style":157},[633],{"type":61,"value":372},{"type":55,"tag":138,"props":635,"children":636},{"style":157},[637],{"type":61,"value":174},{"type":55,"tag":138,"props":639,"children":640},{"style":177},[641],{"type":61,"value":642},"component view",{"type":55,"tag":138,"props":644,"children":645},{"style":157},[646],{"type":61,"value":311},{"type":55,"tag":138,"props":648,"children":649},{"style":157},[650],{"type":61,"value":372},{"type":55,"tag":138,"props":652,"children":653},{"style":157},[654],{"type":61,"value":174},{"type":55,"tag":138,"props":656,"children":657},{"style":177},[658],{"type":61,"value":659},"embed meeting",{"type":55,"tag":138,"props":661,"children":662},{"style":157},[663],{"type":61,"value":311},{"type":55,"tag":138,"props":665,"children":666},{"style":543},[667],{"type":61,"value":668},"])",{"type":55,"tag":138,"props":670,"children":671},{"style":157},[672],{"type":61,"value":673},",\n",{"type":55,"tag":138,"props":675,"children":677},{"class":140,"line":676},16,[678,683,687,691,695,699,703,707,711,716,720,724,728,733,737,741,745,750,754,758],{"type":55,"tag":138,"props":679,"children":680},{"style":543},[681],{"type":61,"value":682},"    customVideo",{"type":55,"tag":138,"props":684,"children":685},{"style":157},[686],{"type":61,"value":362},{"type":55,"tag":138,"props":688,"children":689},{"style":412},[690],{"type":61,"value":582},{"type":55,"tag":138,"props":692,"children":693},{"style":543},[694],{"type":61,"value":420},{"type":55,"tag":138,"props":696,"children":697},{"style":338},[698],{"type":61,"value":357},{"type":55,"tag":138,"props":700,"children":701},{"style":157},[702],{"type":61,"value":372},{"type":55,"tag":138,"props":704,"children":705},{"style":543},[706],{"type":61,"value":599},{"type":55,"tag":138,"props":708,"children":709},{"style":157},[710],{"type":61,"value":311},{"type":55,"tag":138,"props":712,"children":713},{"style":177},[714],{"type":61,"value":715},"video sdk",{"type":55,"tag":138,"props":717,"children":718},{"style":157},[719],{"type":61,"value":311},{"type":55,"tag":138,"props":721,"children":722},{"style":157},[723],{"type":61,"value":372},{"type":55,"tag":138,"props":725,"children":726},{"style":157},[727],{"type":61,"value":174},{"type":55,"tag":138,"props":729,"children":730},{"style":177},[731],{"type":61,"value":732},"custom video session",{"type":55,"tag":138,"props":734,"children":735},{"style":157},[736],{"type":61,"value":311},{"type":55,"tag":138,"props":738,"children":739},{"style":157},[740],{"type":61,"value":372},{"type":55,"tag":138,"props":742,"children":743},{"style":157},[744],{"type":61,"value":174},{"type":55,"tag":138,"props":746,"children":747},{"style":177},[748],{"type":61,"value":749},"peer-video-state-change",{"type":55,"tag":138,"props":751,"children":752},{"style":157},[753],{"type":61,"value":311},{"type":55,"tag":138,"props":755,"children":756},{"style":543},[757],{"type":61,"value":668},{"type":55,"tag":138,"props":759,"children":760},{"style":157},[761],{"type":61,"value":673},{"type":55,"tag":138,"props":763,"children":765},{"class":140,"line":764},17,[766,771,775,779,783,787,791,795,799,804,808,812,816,821,825,829,833,838,842,846,850,855,859,863,867,872,876,880],{"type":55,"tag":138,"props":767,"children":768},{"style":543},[769],{"type":61,"value":770},"    restApi",{"type":55,"tag":138,"props":772,"children":773},{"style":157},[774],{"type":61,"value":362},{"type":55,"tag":138,"props":776,"children":777},{"style":412},[778],{"type":61,"value":582},{"type":55,"tag":138,"props":780,"children":781},{"style":543},[782],{"type":61,"value":420},{"type":55,"tag":138,"props":784,"children":785},{"style":338},[786],{"type":61,"value":357},{"type":55,"tag":138,"props":788,"children":789},{"style":157},[790],{"type":61,"value":372},{"type":55,"tag":138,"props":792,"children":793},{"style":543},[794],{"type":61,"value":599},{"type":55,"tag":138,"props":796,"children":797},{"style":157},[798],{"type":61,"value":311},{"type":55,"tag":138,"props":800,"children":801},{"style":177},[802],{"type":61,"value":803},"rest api",{"type":55,"tag":138,"props":805,"children":806},{"style":157},[807],{"type":61,"value":311},{"type":55,"tag":138,"props":809,"children":810},{"style":157},[811],{"type":61,"value":372},{"type":55,"tag":138,"props":813,"children":814},{"style":157},[815],{"type":61,"value":174},{"type":55,"tag":138,"props":817,"children":818},{"style":177},[819],{"type":61,"value":820},"\u002Fv2\u002F",{"type":55,"tag":138,"props":822,"children":823},{"style":157},[824],{"type":61,"value":311},{"type":55,"tag":138,"props":826,"children":827},{"style":157},[828],{"type":61,"value":372},{"type":55,"tag":138,"props":830,"children":831},{"style":157},[832],{"type":61,"value":174},{"type":55,"tag":138,"props":834,"children":835},{"style":177},[836],{"type":61,"value":837},"create meeting",{"type":55,"tag":138,"props":839,"children":840},{"style":157},[841],{"type":61,"value":311},{"type":55,"tag":138,"props":843,"children":844},{"style":157},[845],{"type":61,"value":372},{"type":55,"tag":138,"props":847,"children":848},{"style":157},[849],{"type":61,"value":174},{"type":55,"tag":138,"props":851,"children":852},{"style":177},[853],{"type":61,"value":854},"list users",{"type":55,"tag":138,"props":856,"children":857},{"style":157},[858],{"type":61,"value":311},{"type":55,"tag":138,"props":860,"children":861},{"style":157},[862],{"type":61,"value":372},{"type":55,"tag":138,"props":864,"children":865},{"style":157},[866],{"type":61,"value":174},{"type":55,"tag":138,"props":868,"children":869},{"style":177},[870],{"type":61,"value":871},"s2s oauth",{"type":55,"tag":138,"props":873,"children":874},{"style":157},[875],{"type":61,"value":311},{"type":55,"tag":138,"props":877,"children":878},{"style":543},[879],{"type":61,"value":668},{"type":55,"tag":138,"props":881,"children":882},{"style":157},[883],{"type":61,"value":673},{"type":55,"tag":138,"props":885,"children":887},{"class":140,"line":886},18,[888,893,897,901,905,909,913,917,921,926,930,934,938,943,947,951,955,960,964,968,972,977,981,985],{"type":55,"tag":138,"props":889,"children":890},{"style":543},[891],{"type":61,"value":892},"    webhooks",{"type":55,"tag":138,"props":894,"children":895},{"style":157},[896],{"type":61,"value":362},{"type":55,"tag":138,"props":898,"children":899},{"style":412},[900],{"type":61,"value":582},{"type":55,"tag":138,"props":902,"children":903},{"style":543},[904],{"type":61,"value":420},{"type":55,"tag":138,"props":906,"children":907},{"style":338},[908],{"type":61,"value":357},{"type":55,"tag":138,"props":910,"children":911},{"style":157},[912],{"type":61,"value":372},{"type":55,"tag":138,"props":914,"children":915},{"style":543},[916],{"type":61,"value":599},{"type":55,"tag":138,"props":918,"children":919},{"style":157},[920],{"type":61,"value":311},{"type":55,"tag":138,"props":922,"children":923},{"style":177},[924],{"type":61,"value":925},"webhook",{"type":55,"tag":138,"props":927,"children":928},{"style":157},[929],{"type":61,"value":311},{"type":55,"tag":138,"props":931,"children":932},{"style":157},[933],{"type":61,"value":372},{"type":55,"tag":138,"props":935,"children":936},{"style":157},[937],{"type":61,"value":174},{"type":55,"tag":138,"props":939,"children":940},{"style":177},[941],{"type":61,"value":942},"x-zm-signature",{"type":55,"tag":138,"props":944,"children":945},{"style":157},[946],{"type":61,"value":311},{"type":55,"tag":138,"props":948,"children":949},{"style":157},[950],{"type":61,"value":372},{"type":55,"tag":138,"props":952,"children":953},{"style":157},[954],{"type":61,"value":174},{"type":55,"tag":138,"props":956,"children":957},{"style":177},[958],{"type":61,"value":959},"event subscription",{"type":55,"tag":138,"props":961,"children":962},{"style":157},[963],{"type":61,"value":311},{"type":55,"tag":138,"props":965,"children":966},{"style":157},[967],{"type":61,"value":372},{"type":55,"tag":138,"props":969,"children":970},{"style":157},[971],{"type":61,"value":174},{"type":55,"tag":138,"props":973,"children":974},{"style":177},[975],{"type":61,"value":976},"crc",{"type":55,"tag":138,"props":978,"children":979},{"style":157},[980],{"type":61,"value":311},{"type":55,"tag":138,"props":982,"children":983},{"style":543},[984],{"type":61,"value":668},{"type":55,"tag":138,"props":986,"children":987},{"style":157},[988],{"type":61,"value":673},{"type":55,"tag":138,"props":990,"children":992},{"class":140,"line":991},19,[993,998,1002,1006,1010,1014,1018,1022,1026,1031,1035,1039,1043,1048,1052,1056,1060,1065,1069,1073,1077,1082,1086,1090],{"type":55,"tag":138,"props":994,"children":995},{"style":543},[996],{"type":61,"value":997},"    oauth",{"type":55,"tag":138,"props":999,"children":1000},{"style":157},[1001],{"type":61,"value":362},{"type":55,"tag":138,"props":1003,"children":1004},{"style":412},[1005],{"type":61,"value":582},{"type":55,"tag":138,"props":1007,"children":1008},{"style":543},[1009],{"type":61,"value":420},{"type":55,"tag":138,"props":1011,"children":1012},{"style":338},[1013],{"type":61,"value":357},{"type":55,"tag":138,"props":1015,"children":1016},{"style":157},[1017],{"type":61,"value":372},{"type":55,"tag":138,"props":1019,"children":1020},{"style":543},[1021],{"type":61,"value":599},{"type":55,"tag":138,"props":1023,"children":1024},{"style":157},[1025],{"type":61,"value":311},{"type":55,"tag":138,"props":1027,"children":1028},{"style":177},[1029],{"type":61,"value":1030},"oauth",{"type":55,"tag":138,"props":1032,"children":1033},{"style":157},[1034],{"type":61,"value":311},{"type":55,"tag":138,"props":1036,"children":1037},{"style":157},[1038],{"type":61,"value":372},{"type":55,"tag":138,"props":1040,"children":1041},{"style":157},[1042],{"type":61,"value":174},{"type":55,"tag":138,"props":1044,"children":1045},{"style":177},[1046],{"type":61,"value":1047},"pkce",{"type":55,"tag":138,"props":1049,"children":1050},{"style":157},[1051],{"type":61,"value":311},{"type":55,"tag":138,"props":1053,"children":1054},{"style":157},[1055],{"type":61,"value":372},{"type":55,"tag":138,"props":1057,"children":1058},{"style":157},[1059],{"type":61,"value":174},{"type":55,"tag":138,"props":1061,"children":1062},{"style":177},[1063],{"type":61,"value":1064},"token refresh",{"type":55,"tag":138,"props":1066,"children":1067},{"style":157},[1068],{"type":61,"value":311},{"type":55,"tag":138,"props":1070,"children":1071},{"style":157},[1072],{"type":61,"value":372},{"type":55,"tag":138,"props":1074,"children":1075},{"style":157},[1076],{"type":61,"value":174},{"type":55,"tag":138,"props":1078,"children":1079},{"style":177},[1080],{"type":61,"value":1081},"account_credentials",{"type":55,"tag":138,"props":1083,"children":1084},{"style":157},[1085],{"type":61,"value":311},{"type":55,"tag":138,"props":1087,"children":1088},{"style":543},[1089],{"type":61,"value":668},{"type":55,"tag":138,"props":1091,"children":1092},{"style":157},[1093],{"type":61,"value":673},{"type":55,"tag":138,"props":1095,"children":1097},{"class":140,"line":1096},20,[1098,1103,1107,1111,1115,1119,1123,1127,1131,1136,1140,1144,1148,1153,1157,1161,1165,1170,1174,1178,1182,1187,1191,1195],{"type":55,"tag":138,"props":1099,"children":1100},{"style":543},[1101],{"type":61,"value":1102},"    mcp",{"type":55,"tag":138,"props":1104,"children":1105},{"style":157},[1106],{"type":61,"value":362},{"type":55,"tag":138,"props":1108,"children":1109},{"style":412},[1110],{"type":61,"value":582},{"type":55,"tag":138,"props":1112,"children":1113},{"style":543},[1114],{"type":61,"value":420},{"type":55,"tag":138,"props":1116,"children":1117},{"style":338},[1118],{"type":61,"value":357},{"type":55,"tag":138,"props":1120,"children":1121},{"style":157},[1122],{"type":61,"value":372},{"type":55,"tag":138,"props":1124,"children":1125},{"style":543},[1126],{"type":61,"value":599},{"type":55,"tag":138,"props":1128,"children":1129},{"style":157},[1130],{"type":61,"value":311},{"type":55,"tag":138,"props":1132,"children":1133},{"style":177},[1134],{"type":61,"value":1135},"zoom mcp",{"type":55,"tag":138,"props":1137,"children":1138},{"style":157},[1139],{"type":61,"value":311},{"type":55,"tag":138,"props":1141,"children":1142},{"style":157},[1143],{"type":61,"value":372},{"type":55,"tag":138,"props":1145,"children":1146},{"style":157},[1147],{"type":61,"value":174},{"type":55,"tag":138,"props":1149,"children":1150},{"style":177},[1151],{"type":61,"value":1152},"agentic retrieval",{"type":55,"tag":138,"props":1154,"children":1155},{"style":157},[1156],{"type":61,"value":311},{"type":55,"tag":138,"props":1158,"children":1159},{"style":157},[1160],{"type":61,"value":372},{"type":55,"tag":138,"props":1162,"children":1163},{"style":157},[1164],{"type":61,"value":174},{"type":55,"tag":138,"props":1166,"children":1167},{"style":177},[1168],{"type":61,"value":1169},"tools\u002Flist",{"type":55,"tag":138,"props":1171,"children":1172},{"style":157},[1173],{"type":61,"value":311},{"type":55,"tag":138,"props":1175,"children":1176},{"style":157},[1177],{"type":61,"value":372},{"type":55,"tag":138,"props":1179,"children":1180},{"style":157},[1181],{"type":61,"value":174},{"type":55,"tag":138,"props":1183,"children":1184},{"style":177},[1185],{"type":61,"value":1186},"semantic meeting search",{"type":55,"tag":138,"props":1188,"children":1189},{"style":157},[1190],{"type":61,"value":311},{"type":55,"tag":138,"props":1192,"children":1193},{"style":543},[1194],{"type":61,"value":668},{"type":55,"tag":138,"props":1196,"children":1197},{"style":157},[1198],{"type":61,"value":673},{"type":55,"tag":138,"props":1200,"children":1202},{"class":140,"line":1201},21,[1203],{"type":55,"tag":138,"props":1204,"children":1205},{"style":157},[1206],{"type":61,"value":1207},"  };\n",{"type":55,"tag":138,"props":1209,"children":1211},{"class":140,"line":1210},22,[1212],{"type":55,"tag":138,"props":1213,"children":1214},{"style":157},[1215],{"type":61,"value":1216},"}\n",{"type":55,"tag":138,"props":1218,"children":1220},{"class":140,"line":1219},23,[1221],{"type":55,"tag":138,"props":1222,"children":1223},{"emptyLinePlaceholder":323},[1224],{"type":61,"value":326},{"type":55,"tag":138,"props":1226,"children":1228},{"class":140,"line":1227},24,[1229,1233,1238,1242,1247,1251,1256,1261,1265,1270,1274],{"type":55,"tag":138,"props":1230,"children":1231},{"style":145},[1232],{"type":61,"value":477},{"type":55,"tag":138,"props":1234,"children":1235},{"style":412},[1236],{"type":61,"value":1237}," pickPrimarySkill",{"type":55,"tag":138,"props":1239,"children":1240},{"style":157},[1241],{"type":61,"value":420},{"type":55,"tag":138,"props":1243,"children":1244},{"style":354},[1245],{"type":61,"value":1246},"s",{"type":55,"tag":138,"props":1248,"children":1249},{"style":157},[1250],{"type":61,"value":362},{"type":55,"tag":138,"props":1252,"children":1253},{"style":151},[1254],{"type":61,"value":1255}," ReturnType",{"type":55,"tag":138,"props":1257,"children":1258},{"style":157},[1259],{"type":61,"value":1260},"\u003Ctypeof",{"type":55,"tag":138,"props":1262,"children":1263},{"style":338},[1264],{"type":61,"value":482},{"type":55,"tag":138,"props":1266,"children":1267},{"style":157},[1268],{"type":61,"value":1269},">):",{"type":55,"tag":138,"props":1271,"children":1272},{"style":151},[1273],{"type":61,"value":154},{"type":55,"tag":138,"props":1275,"children":1276},{"style":157},[1277],{"type":61,"value":508},{"type":55,"tag":138,"props":1279,"children":1281},{"class":140,"line":1280},25,[1282,1287,1291,1295,1299,1304,1309,1314,1318,1322,1326],{"type":55,"tag":138,"props":1283,"children":1284},{"style":557},[1285],{"type":61,"value":1286},"  if",{"type":55,"tag":138,"props":1288,"children":1289},{"style":543},[1290],{"type":61,"value":351},{"type":55,"tag":138,"props":1292,"children":1293},{"style":338},[1294],{"type":61,"value":1246},{"type":55,"tag":138,"props":1296,"children":1297},{"style":157},[1298],{"type":61,"value":409},{"type":55,"tag":138,"props":1300,"children":1301},{"style":338},[1302],{"type":61,"value":1303},"meetingCustomUi",{"type":55,"tag":138,"props":1305,"children":1306},{"style":543},[1307],{"type":61,"value":1308},") ",{"type":55,"tag":138,"props":1310,"children":1311},{"style":557},[1312],{"type":61,"value":1313},"return",{"type":55,"tag":138,"props":1315,"children":1316},{"style":157},[1317],{"type":61,"value":174},{"type":55,"tag":138,"props":1319,"children":1320},{"style":177},[1321],{"type":61,"value":264},{"type":55,"tag":138,"props":1323,"children":1324},{"style":157},[1325],{"type":61,"value":311},{"type":55,"tag":138,"props":1327,"children":1328},{"style":157},[1329],{"type":61,"value":316},{"type":55,"tag":138,"props":1331,"children":1333},{"class":140,"line":1332},26,[1334,1338,1342,1346,1350,1355,1359,1363,1367,1371,1375],{"type":55,"tag":138,"props":1335,"children":1336},{"style":557},[1337],{"type":61,"value":1286},{"type":55,"tag":138,"props":1339,"children":1340},{"style":543},[1341],{"type":61,"value":351},{"type":55,"tag":138,"props":1343,"children":1344},{"style":338},[1345],{"type":61,"value":1246},{"type":55,"tag":138,"props":1347,"children":1348},{"style":157},[1349],{"type":61,"value":409},{"type":55,"tag":138,"props":1351,"children":1352},{"style":338},[1353],{"type":61,"value":1354},"mcp",{"type":55,"tag":138,"props":1356,"children":1357},{"style":543},[1358],{"type":61,"value":1308},{"type":55,"tag":138,"props":1360,"children":1361},{"style":557},[1362],{"type":61,"value":1313},{"type":55,"tag":138,"props":1364,"children":1365},{"style":157},[1366],{"type":61,"value":174},{"type":55,"tag":138,"props":1368,"children":1369},{"style":177},[1370],{"type":61,"value":306},{"type":55,"tag":138,"props":1372,"children":1373},{"style":157},[1374],{"type":61,"value":311},{"type":55,"tag":138,"props":1376,"children":1377},{"style":157},[1378],{"type":61,"value":316},{"type":55,"tag":138,"props":1380,"children":1382},{"class":140,"line":1381},27,[1383,1387,1391,1395,1399,1404,1408,1412,1416,1420,1424],{"type":55,"tag":138,"props":1384,"children":1385},{"style":557},[1386],{"type":61,"value":1286},{"type":55,"tag":138,"props":1388,"children":1389},{"style":543},[1390],{"type":61,"value":351},{"type":55,"tag":138,"props":1392,"children":1393},{"style":338},[1394],{"type":61,"value":1246},{"type":55,"tag":138,"props":1396,"children":1397},{"style":157},[1398],{"type":61,"value":409},{"type":55,"tag":138,"props":1400,"children":1401},{"style":338},[1402],{"type":61,"value":1403},"restApi",{"type":55,"tag":138,"props":1405,"children":1406},{"style":543},[1407],{"type":61,"value":1308},{"type":55,"tag":138,"props":1409,"children":1410},{"style":557},[1411],{"type":61,"value":1313},{"type":55,"tag":138,"props":1413,"children":1414},{"style":157},[1415],{"type":61,"value":174},{"type":55,"tag":138,"props":1417,"children":1418},{"style":177},[1419],{"type":61,"value":201},{"type":55,"tag":138,"props":1421,"children":1422},{"style":157},[1423],{"type":61,"value":311},{"type":55,"tag":138,"props":1425,"children":1426},{"style":157},[1427],{"type":61,"value":316},{"type":55,"tag":138,"props":1429,"children":1431},{"class":140,"line":1430},28,[1432,1436,1440,1444,1448,1453,1457,1461,1465,1469,1473],{"type":55,"tag":138,"props":1433,"children":1434},{"style":557},[1435],{"type":61,"value":1286},{"type":55,"tag":138,"props":1437,"children":1438},{"style":543},[1439],{"type":61,"value":351},{"type":55,"tag":138,"props":1441,"children":1442},{"style":338},[1443],{"type":61,"value":1246},{"type":55,"tag":138,"props":1445,"children":1446},{"style":157},[1447],{"type":61,"value":409},{"type":55,"tag":138,"props":1449,"children":1450},{"style":338},[1451],{"type":61,"value":1452},"customVideo",{"type":55,"tag":138,"props":1454,"children":1455},{"style":543},[1456],{"type":61,"value":1308},{"type":55,"tag":138,"props":1458,"children":1459},{"style":557},[1460],{"type":61,"value":1313},{"type":55,"tag":138,"props":1462,"children":1463},{"style":157},[1464],{"type":61,"value":174},{"type":55,"tag":138,"props":1466,"children":1467},{"style":177},[1468],{"type":61,"value":285},{"type":55,"tag":138,"props":1470,"children":1471},{"style":157},[1472],{"type":61,"value":311},{"type":55,"tag":138,"props":1474,"children":1475},{"style":157},[1476],{"type":61,"value":316},{"type":55,"tag":138,"props":1478,"children":1480},{"class":140,"line":1479},29,[1481,1485,1489,1493,1497],{"type":55,"tag":138,"props":1482,"children":1483},{"style":557},[1484],{"type":61,"value":560},{"type":55,"tag":138,"props":1486,"children":1487},{"style":157},[1488],{"type":61,"value":174},{"type":55,"tag":138,"props":1490,"children":1491},{"style":177},[1492],{"type":61,"value":4},{"type":55,"tag":138,"props":1494,"children":1495},{"style":157},[1496],{"type":61,"value":311},{"type":55,"tag":138,"props":1498,"children":1499},{"style":157},[1500],{"type":61,"value":316},{"type":55,"tag":138,"props":1502,"children":1504},{"class":140,"line":1503},30,[1505],{"type":55,"tag":138,"props":1506,"children":1507},{"style":157},[1508],{"type":61,"value":1216},{"type":55,"tag":138,"props":1510,"children":1512},{"class":140,"line":1511},31,[1513],{"type":55,"tag":138,"props":1514,"children":1515},{"emptyLinePlaceholder":323},[1516],{"type":61,"value":326},{"type":55,"tag":138,"props":1518,"children":1520},{"class":140,"line":1519},32,[1521,1525,1530,1534,1539,1543,1547,1551,1556,1560,1564,1568,1572,1576,1580,1585],{"type":55,"tag":138,"props":1522,"children":1523},{"style":145},[1524],{"type":61,"value":477},{"type":55,"tag":138,"props":1526,"children":1527},{"style":412},[1528],{"type":61,"value":1529}," buildChain",{"type":55,"tag":138,"props":1531,"children":1532},{"style":157},[1533],{"type":61,"value":420},{"type":55,"tag":138,"props":1535,"children":1536},{"style":354},[1537],{"type":61,"value":1538},"primary",{"type":55,"tag":138,"props":1540,"children":1541},{"style":157},[1542],{"type":61,"value":362},{"type":55,"tag":138,"props":1544,"children":1545},{"style":151},[1546],{"type":61,"value":154},{"type":55,"tag":138,"props":1548,"children":1549},{"style":157},[1550],{"type":61,"value":372},{"type":55,"tag":138,"props":1552,"children":1553},{"style":354},[1554],{"type":61,"value":1555}," s",{"type":55,"tag":138,"props":1557,"children":1558},{"style":157},[1559],{"type":61,"value":362},{"type":55,"tag":138,"props":1561,"children":1562},{"style":151},[1563],{"type":61,"value":1255},{"type":55,"tag":138,"props":1565,"children":1566},{"style":157},[1567],{"type":61,"value":1260},{"type":55,"tag":138,"props":1569,"children":1570},{"style":338},[1571],{"type":61,"value":482},{"type":55,"tag":138,"props":1573,"children":1574},{"style":157},[1575],{"type":61,"value":1269},{"type":55,"tag":138,"props":1577,"children":1578},{"style":151},[1579],{"type":61,"value":154},{"type":55,"tag":138,"props":1581,"children":1582},{"style":338},[1583],{"type":61,"value":1584},"[] ",{"type":55,"tag":138,"props":1586,"children":1587},{"style":157},[1588],{"type":61,"value":1589},"{\n",{"type":55,"tag":138,"props":1591,"children":1593},{"class":140,"line":1592},33,[1594,1598,1603,1607,1611,1615,1620],{"type":55,"tag":138,"props":1595,"children":1596},{"style":145},[1597],{"type":61,"value":517},{"type":55,"tag":138,"props":1599,"children":1600},{"style":338},[1601],{"type":61,"value":1602}," chain",{"type":55,"tag":138,"props":1604,"children":1605},{"style":157},[1606],{"type":61,"value":526},{"type":55,"tag":138,"props":1608,"children":1609},{"style":543},[1610],{"type":61,"value":599},{"type":55,"tag":138,"props":1612,"children":1613},{"style":338},[1614],{"type":61,"value":1538},{"type":55,"tag":138,"props":1616,"children":1617},{"style":543},[1618],{"type":61,"value":1619},"]",{"type":55,"tag":138,"props":1621,"children":1622},{"style":157},[1623],{"type":61,"value":316},{"type":55,"tag":138,"props":1625,"children":1627},{"class":140,"line":1626},34,[1628,1632,1636,1640,1644,1648,1653,1658,1663,1667,1671,1675,1679,1683,1687,1692,1696,1700,1705,1709,1713,1717,1721,1725],{"type":55,"tag":138,"props":1629,"children":1630},{"style":557},[1631],{"type":61,"value":1286},{"type":55,"tag":138,"props":1633,"children":1634},{"style":543},[1635],{"type":61,"value":351},{"type":55,"tag":138,"props":1637,"children":1638},{"style":338},[1639],{"type":61,"value":1246},{"type":55,"tag":138,"props":1641,"children":1642},{"style":157},[1643],{"type":61,"value":409},{"type":55,"tag":138,"props":1645,"children":1646},{"style":338},[1647],{"type":61,"value":1030},{"type":55,"tag":138,"props":1649,"children":1650},{"style":157},[1651],{"type":61,"value":1652}," &&",{"type":55,"tag":138,"props":1654,"children":1655},{"style":157},[1656],{"type":61,"value":1657}," !",{"type":55,"tag":138,"props":1659,"children":1660},{"style":338},[1661],{"type":61,"value":1662},"chain",{"type":55,"tag":138,"props":1664,"children":1665},{"style":157},[1666],{"type":61,"value":409},{"type":55,"tag":138,"props":1668,"children":1669},{"style":412},[1670],{"type":61,"value":451},{"type":55,"tag":138,"props":1672,"children":1673},{"style":543},[1674],{"type":61,"value":420},{"type":55,"tag":138,"props":1676,"children":1677},{"style":157},[1678],{"type":61,"value":311},{"type":55,"tag":138,"props":1680,"children":1681},{"style":177},[1682],{"type":61,"value":243},{"type":55,"tag":138,"props":1684,"children":1685},{"style":157},[1686],{"type":61,"value":311},{"type":55,"tag":138,"props":1688,"children":1689},{"style":543},[1690],{"type":61,"value":1691},")) ",{"type":55,"tag":138,"props":1693,"children":1694},{"style":338},[1695],{"type":61,"value":1662},{"type":55,"tag":138,"props":1697,"children":1698},{"style":157},[1699],{"type":61,"value":409},{"type":55,"tag":138,"props":1701,"children":1702},{"style":412},[1703],{"type":61,"value":1704},"push",{"type":55,"tag":138,"props":1706,"children":1707},{"style":543},[1708],{"type":61,"value":420},{"type":55,"tag":138,"props":1710,"children":1711},{"style":157},[1712],{"type":61,"value":311},{"type":55,"tag":138,"props":1714,"children":1715},{"style":177},[1716],{"type":61,"value":243},{"type":55,"tag":138,"props":1718,"children":1719},{"style":157},[1720],{"type":61,"value":311},{"type":55,"tag":138,"props":1722,"children":1723},{"style":543},[1724],{"type":61,"value":395},{"type":55,"tag":138,"props":1726,"children":1727},{"style":157},[1728],{"type":61,"value":316},{"type":55,"tag":138,"props":1730,"children":1732},{"class":140,"line":1731},35,[1733,1737,1741,1745,1749,1754,1758,1762,1766,1770,1774,1778,1782,1786,1790,1794,1798,1802,1806,1810,1814,1818,1822,1826],{"type":55,"tag":138,"props":1734,"children":1735},{"style":557},[1736],{"type":61,"value":1286},{"type":55,"tag":138,"props":1738,"children":1739},{"style":543},[1740],{"type":61,"value":351},{"type":55,"tag":138,"props":1742,"children":1743},{"style":338},[1744],{"type":61,"value":1246},{"type":55,"tag":138,"props":1746,"children":1747},{"style":157},[1748],{"type":61,"value":409},{"type":55,"tag":138,"props":1750,"children":1751},{"style":338},[1752],{"type":61,"value":1753},"webhooks",{"type":55,"tag":138,"props":1755,"children":1756},{"style":157},[1757],{"type":61,"value":1652},{"type":55,"tag":138,"props":1759,"children":1760},{"style":157},[1761],{"type":61,"value":1657},{"type":55,"tag":138,"props":1763,"children":1764},{"style":338},[1765],{"type":61,"value":1662},{"type":55,"tag":138,"props":1767,"children":1768},{"style":157},[1769],{"type":61,"value":409},{"type":55,"tag":138,"props":1771,"children":1772},{"style":412},[1773],{"type":61,"value":451},{"type":55,"tag":138,"props":1775,"children":1776},{"style":543},[1777],{"type":61,"value":420},{"type":55,"tag":138,"props":1779,"children":1780},{"style":157},[1781],{"type":61,"value":311},{"type":55,"tag":138,"props":1783,"children":1784},{"style":177},[1785],{"type":61,"value":222},{"type":55,"tag":138,"props":1787,"children":1788},{"style":157},[1789],{"type":61,"value":311},{"type":55,"tag":138,"props":1791,"children":1792},{"style":543},[1793],{"type":61,"value":1691},{"type":55,"tag":138,"props":1795,"children":1796},{"style":338},[1797],{"type":61,"value":1662},{"type":55,"tag":138,"props":1799,"children":1800},{"style":157},[1801],{"type":61,"value":409},{"type":55,"tag":138,"props":1803,"children":1804},{"style":412},[1805],{"type":61,"value":1704},{"type":55,"tag":138,"props":1807,"children":1808},{"style":543},[1809],{"type":61,"value":420},{"type":55,"tag":138,"props":1811,"children":1812},{"style":157},[1813],{"type":61,"value":311},{"type":55,"tag":138,"props":1815,"children":1816},{"style":177},[1817],{"type":61,"value":222},{"type":55,"tag":138,"props":1819,"children":1820},{"style":157},[1821],{"type":61,"value":311},{"type":55,"tag":138,"props":1823,"children":1824},{"style":543},[1825],{"type":61,"value":395},{"type":55,"tag":138,"props":1827,"children":1828},{"style":157},[1829],{"type":61,"value":316},{"type":55,"tag":138,"props":1831,"children":1833},{"class":140,"line":1832},36,[1834,1838,1842],{"type":55,"tag":138,"props":1835,"children":1836},{"style":557},[1837],{"type":61,"value":560},{"type":55,"tag":138,"props":1839,"children":1840},{"style":338},[1841],{"type":61,"value":1602},{"type":55,"tag":138,"props":1843,"children":1844},{"style":157},[1845],{"type":61,"value":316},{"type":55,"tag":138,"props":1847,"children":1849},{"class":140,"line":1848},37,[1850],{"type":55,"tag":138,"props":1851,"children":1852},{"style":157},[1853],{"type":61,"value":1216},{"type":55,"tag":64,"props":1855,"children":1856},{},[1857],{"type":61,"value":1858},"Example:",{"type":55,"tag":1860,"props":1861,"children":1862},"ul",{},[1863,1880],{"type":55,"tag":101,"props":1864,"children":1865},{},[1866,1872,1874],{"type":55,"tag":77,"props":1867,"children":1869},{"className":1868},[],[1870],{"type":61,"value":1871},"Create a meeting, configure webhooks, and handle OAuth token refresh",{"type":61,"value":1873}," ->\n",{"type":55,"tag":77,"props":1875,"children":1877},{"className":1876},[],[1878],{"type":61,"value":1879},"zoom-rest-api -> zoom-oauth -> zoom-webhooks",{"type":55,"tag":101,"props":1881,"children":1882},{},[1883,1889,1890],{"type":55,"tag":77,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":61,"value":1888},"Build a custom video UI for a Zoom meeting on web",{"type":61,"value":1873},{"type":55,"tag":77,"props":1891,"children":1893},{"className":1892},[],[1894],{"type":61,"value":264},{"type":55,"tag":64,"props":1896,"children":1897},{},[1898,1900,1906],{"type":61,"value":1899},"For the full TypeScript implementation and handoff contract, use\n",{"type":55,"tag":1901,"props":1902,"children":1904},"a",{"href":1903},"references\u002Frouting-implementation.md",[1905],{"type":61,"value":1903},{"type":61,"value":409},{"type":55,"tag":70,"props":1908,"children":1910},{"id":1909},"choose-your-path",[1911],{"type":61,"value":1912},"Choose Your Path",{"type":55,"tag":1914,"props":1915,"children":1916},"table",{},[1917,1936],{"type":55,"tag":1918,"props":1919,"children":1920},"thead",{},[1921],{"type":55,"tag":1922,"props":1923,"children":1924},"tr",{},[1925,1931],{"type":55,"tag":1926,"props":1927,"children":1928},"th",{},[1929],{"type":61,"value":1930},"I want to...",{"type":55,"tag":1926,"props":1932,"children":1933},{},[1934],{"type":61,"value":1935},"Use this skill",{"type":55,"tag":1937,"props":1938,"children":1939},"tbody",{},[1940,1961,1980,1999,2019,2039,2058,2078,2098,2118,2138,2158,2178,2198,2218,2238,2258,2278,2297,2316,2336],{"type":55,"tag":1922,"props":1941,"children":1942},{},[1943,1949],{"type":55,"tag":1944,"props":1945,"children":1946},"td",{},[1947],{"type":61,"value":1948},"Build a custom web UI around a real Zoom meeting",{"type":55,"tag":1944,"props":1950,"children":1951},{},[1952],{"type":55,"tag":1953,"props":1954,"children":1955},"strong",{},[1956],{"type":55,"tag":1901,"props":1957,"children":1959},{"href":1958},"..\u002Fmeeting-sdk\u002Fweb\u002Fcomponent-view\u002FSKILL.md",[1960],{"type":61,"value":264},{"type":55,"tag":1922,"props":1962,"children":1963},{},[1964,1969],{"type":55,"tag":1944,"props":1965,"children":1966},{},[1967],{"type":61,"value":1968},"Build deterministic automation\u002Fconfiguration\u002Freporting with explicit request control",{"type":55,"tag":1944,"props":1970,"children":1971},{},[1972],{"type":55,"tag":1953,"props":1973,"children":1974},{},[1975],{"type":55,"tag":1901,"props":1976,"children":1978},{"href":1977},"..\u002Frest-api\u002FSKILL.md",[1979],{"type":61,"value":201},{"type":55,"tag":1922,"props":1981,"children":1982},{},[1983,1988],{"type":55,"tag":1944,"props":1984,"children":1985},{},[1986],{"type":61,"value":1987},"Receive event notifications (HTTP push)",{"type":55,"tag":1944,"props":1989,"children":1990},{},[1991],{"type":55,"tag":1953,"props":1992,"children":1993},{},[1994],{"type":55,"tag":1901,"props":1995,"children":1997},{"href":1996},"..\u002Fwebhooks\u002FSKILL.md",[1998],{"type":61,"value":222},{"type":55,"tag":1922,"props":2000,"children":2001},{},[2002,2007],{"type":55,"tag":1944,"props":2003,"children":2004},{},[2005],{"type":61,"value":2006},"Receive event notifications (WebSocket, low-latency)",{"type":55,"tag":1944,"props":2008,"children":2009},{},[2010],{"type":55,"tag":1953,"props":2011,"children":2012},{},[2013],{"type":55,"tag":1901,"props":2014,"children":2016},{"href":2015},"..\u002Fwebsockets\u002FSKILL.md",[2017],{"type":61,"value":2018},"zoom-websockets",{"type":55,"tag":1922,"props":2020,"children":2021},{},[2022,2027],{"type":55,"tag":1944,"props":2023,"children":2024},{},[2025],{"type":61,"value":2026},"Embed Zoom meetings in my app",{"type":55,"tag":1944,"props":2028,"children":2029},{},[2030],{"type":55,"tag":1953,"props":2031,"children":2032},{},[2033],{"type":55,"tag":1901,"props":2034,"children":2036},{"href":2035},"..\u002Fmeeting-sdk\u002FSKILL.md",[2037],{"type":61,"value":2038},"zoom-meeting-sdk",{"type":55,"tag":1922,"props":2040,"children":2041},{},[2042,2047],{"type":55,"tag":1944,"props":2043,"children":2044},{},[2045],{"type":61,"value":2046},"Build custom video experiences (Web, React Native, Flutter, Android, iOS, macOS, Unity, Linux)",{"type":55,"tag":1944,"props":2048,"children":2049},{},[2050],{"type":55,"tag":1953,"props":2051,"children":2052},{},[2053],{"type":55,"tag":1901,"props":2054,"children":2056},{"href":2055},"..\u002Fvideo-sdk\u002FSKILL.md",[2057],{"type":61,"value":285},{"type":55,"tag":1922,"props":2059,"children":2060},{},[2061,2066],{"type":55,"tag":1944,"props":2062,"children":2063},{},[2064],{"type":61,"value":2065},"Build an app that runs inside Zoom client",{"type":55,"tag":1944,"props":2067,"children":2068},{},[2069],{"type":55,"tag":1953,"props":2070,"children":2071},{},[2072],{"type":55,"tag":1901,"props":2073,"children":2075},{"href":2074},"..\u002Fzoom-apps-sdk\u002FSKILL.md",[2076],{"type":61,"value":2077},"zoom-apps-sdk",{"type":55,"tag":1922,"props":2079,"children":2080},{},[2081,2086],{"type":55,"tag":1944,"props":2082,"children":2083},{},[2084],{"type":61,"value":2085},"Transcribe uploaded or stored media with AI Services Scribe",{"type":55,"tag":1944,"props":2087,"children":2088},{},[2089],{"type":55,"tag":1953,"props":2090,"children":2091},{},[2092],{"type":55,"tag":1901,"props":2093,"children":2095},{"href":2094},"..\u002Fscribe\u002FSKILL.md",[2096],{"type":61,"value":2097},"scribe",{"type":55,"tag":1922,"props":2099,"children":2100},{},[2101,2106],{"type":55,"tag":1944,"props":2102,"children":2103},{},[2104],{"type":61,"value":2105},"Access live audio\u002Fvideo\u002Ftranscripts from meetings",{"type":55,"tag":1944,"props":2107,"children":2108},{},[2109],{"type":55,"tag":1953,"props":2110,"children":2111},{},[2112],{"type":55,"tag":1901,"props":2113,"children":2115},{"href":2114},"..\u002Frtms\u002FSKILL.md",[2116],{"type":61,"value":2117},"zoom-rtms",{"type":55,"tag":1922,"props":2119,"children":2120},{},[2121,2126],{"type":55,"tag":1944,"props":2122,"children":2123},{},[2124],{"type":61,"value":2125},"Enable collaborative browsing for support",{"type":55,"tag":1944,"props":2127,"children":2128},{},[2129],{"type":55,"tag":1953,"props":2130,"children":2131},{},[2132],{"type":55,"tag":1901,"props":2133,"children":2135},{"href":2134},"..\u002Fcobrowse-sdk\u002FSKILL.md",[2136],{"type":61,"value":2137},"zoom-cobrowse-sdk",{"type":55,"tag":1922,"props":2139,"children":2140},{},[2141,2146],{"type":55,"tag":1944,"props":2142,"children":2143},{},[2144],{"type":61,"value":2145},"Build Contact Center apps and channel integrations",{"type":55,"tag":1944,"props":2147,"children":2148},{},[2149],{"type":55,"tag":1953,"props":2150,"children":2151},{},[2152],{"type":55,"tag":1901,"props":2153,"children":2155},{"href":2154},"..\u002Fcontact-center\u002FSKILL.md",[2156],{"type":61,"value":2157},"contact-center",{"type":55,"tag":1922,"props":2159,"children":2160},{},[2161,2166],{"type":55,"tag":1944,"props":2162,"children":2163},{},[2164],{"type":61,"value":2165},"Build Virtual Agent web\u002Fmobile chatbot experiences",{"type":55,"tag":1944,"props":2167,"children":2168},{},[2169],{"type":55,"tag":1953,"props":2170,"children":2171},{},[2172],{"type":55,"tag":1901,"props":2173,"children":2175},{"href":2174},"..\u002Fvirtual-agent\u002FSKILL.md",[2176],{"type":61,"value":2177},"virtual-agent",{"type":55,"tag":1922,"props":2179,"children":2180},{},[2181,2186],{"type":55,"tag":1944,"props":2182,"children":2183},{},[2184],{"type":61,"value":2185},"Build Zoom Phone integrations (Smart Embed, Phone API, webhooks, URI flows)",{"type":55,"tag":1944,"props":2187,"children":2188},{},[2189],{"type":55,"tag":1953,"props":2190,"children":2191},{},[2192],{"type":55,"tag":1901,"props":2193,"children":2195},{"href":2194},"..\u002Fphone\u002FSKILL.md",[2196],{"type":61,"value":2197},"phone",{"type":55,"tag":1922,"props":2199,"children":2200},{},[2201,2206],{"type":55,"tag":1944,"props":2202,"children":2203},{},[2204],{"type":61,"value":2205},"Build Team Chat apps and integrations",{"type":55,"tag":1944,"props":2207,"children":2208},{},[2209],{"type":55,"tag":1953,"props":2210,"children":2211},{},[2212],{"type":55,"tag":1901,"props":2213,"children":2215},{"href":2214},"..\u002Fteam-chat\u002FSKILL.md",[2216],{"type":61,"value":2217},"zoom-team-chat",{"type":55,"tag":1922,"props":2219,"children":2220},{},[2221,2226],{"type":55,"tag":1944,"props":2222,"children":2223},{},[2224],{"type":61,"value":2225},"Build server-side integrations with Rivet (auth + webhooks + APIs)",{"type":55,"tag":1944,"props":2227,"children":2228},{},[2229],{"type":55,"tag":1953,"props":2230,"children":2231},{},[2232],{"type":55,"tag":1901,"props":2233,"children":2235},{"href":2234},"..\u002Frivet-sdk\u002FSKILL.md",[2236],{"type":61,"value":2237},"rivet-sdk",{"type":55,"tag":1922,"props":2239,"children":2240},{},[2241,2246],{"type":55,"tag":1944,"props":2242,"children":2243},{},[2244],{"type":61,"value":2245},"Run browser\u002Fdevice\u002Fnetwork preflight diagnostics before join",{"type":55,"tag":1944,"props":2247,"children":2248},{},[2249],{"type":55,"tag":1953,"props":2250,"children":2251},{},[2252],{"type":55,"tag":1901,"props":2253,"children":2255},{"href":2254},"..\u002Fprobe-sdk\u002FSKILL.md",[2256],{"type":61,"value":2257},"probe-sdk",{"type":55,"tag":1922,"props":2259,"children":2260},{},[2261,2266],{"type":55,"tag":1944,"props":2262,"children":2263},{},[2264],{"type":61,"value":2265},"Add pre-built UI components for Video SDK",{"type":55,"tag":1944,"props":2267,"children":2268},{},[2269],{"type":55,"tag":1953,"props":2270,"children":2271},{},[2272],{"type":55,"tag":1901,"props":2273,"children":2275},{"href":2274},"..\u002Fui-toolkit\u002FSKILL.md",[2276],{"type":61,"value":2277},"zoom-ui-toolkit",{"type":55,"tag":1922,"props":2279,"children":2280},{},[2281,2286],{"type":55,"tag":1944,"props":2282,"children":2283},{},[2284],{"type":61,"value":2285},"Implement OAuth authentication (all grant types)",{"type":55,"tag":1944,"props":2287,"children":2288},{},[2289],{"type":55,"tag":1953,"props":2290,"children":2291},{},[2292],{"type":55,"tag":1901,"props":2293,"children":2295},{"href":2294},"..\u002Foauth\u002FSKILL.md",[2296],{"type":61,"value":243},{"type":55,"tag":1922,"props":2298,"children":2299},{},[2300,2305],{"type":55,"tag":1944,"props":2301,"children":2302},{},[2303],{"type":61,"value":2304},"Build AI-driven tool workflows (AI Companion\u002Fagents) over Zoom data",{"type":55,"tag":1944,"props":2306,"children":2307},{},[2308],{"type":55,"tag":1953,"props":2309,"children":2310},{},[2311],{"type":55,"tag":1901,"props":2312,"children":2314},{"href":2313},"..\u002Fzoom-mcp\u002FSKILL.md",[2315],{"type":61,"value":306},{"type":55,"tag":1922,"props":2317,"children":2318},{},[2319,2324],{"type":55,"tag":1944,"props":2320,"children":2321},{},[2322],{"type":61,"value":2323},"Build AI-driven Whiteboard workflows over Zoom Whiteboard MCP",{"type":55,"tag":1944,"props":2325,"children":2326},{},[2327],{"type":55,"tag":1953,"props":2328,"children":2329},{},[2330],{"type":55,"tag":1901,"props":2331,"children":2333},{"href":2332},"..\u002Fzoom-mcp\u002Fwhiteboard\u002FSKILL.md",[2334],{"type":61,"value":2335},"zoom-mcp\u002Fwhiteboard",{"type":55,"tag":1922,"props":2337,"children":2338},{},[2339,2344],{"type":55,"tag":1944,"props":2340,"children":2341},{},[2342],{"type":61,"value":2343},"Build enterprise AI systems with stable API core + AI tool layer",{"type":55,"tag":1944,"props":2345,"children":2346},{},[2347,2354,2356],{"type":55,"tag":1953,"props":2348,"children":2349},{},[2350],{"type":55,"tag":1901,"props":2351,"children":2352},{"href":1977},[2353],{"type":61,"value":201},{"type":61,"value":2355}," + ",{"type":55,"tag":1953,"props":2357,"children":2358},{},[2359],{"type":55,"tag":1901,"props":2360,"children":2361},{"href":2313},[2362],{"type":61,"value":306},{"type":55,"tag":70,"props":2364,"children":2366},{"id":2365},"planning-checkpoint-rivet-sdk-optional",[2367],{"type":61,"value":2368},"Planning Checkpoint: Rivet SDK (Optional)",{"type":55,"tag":64,"props":2370,"children":2371},{},[2372],{"type":61,"value":2373},"When a user starts planning a server-side integration that combines auth + webhooks + API calls, ask this first:",{"type":55,"tag":1860,"props":2375,"children":2376},{},[2377,2386],{"type":55,"tag":101,"props":2378,"children":2379},{},[2380],{"type":55,"tag":77,"props":2381,"children":2383},{"className":2382},[],[2384],{"type":61,"value":2385},"Rivet SDK is a Node.js framework that bundles Zoom auth handling, webhook receivers, and typed API wrappers.",{"type":55,"tag":101,"props":2387,"children":2388},{},[2389],{"type":55,"tag":77,"props":2390,"children":2392},{"className":2391},[],[2393],{"type":61,"value":2394},"Do you want to use Rivet SDK for faster scaffolding, or do you prefer a direct OAuth + REST implementation without Rivet?",{"type":55,"tag":64,"props":2396,"children":2397},{},[2398],{"type":61,"value":2399},"Routing after answer:",{"type":55,"tag":1860,"props":2401,"children":2402},{},[2403,2427],{"type":55,"tag":101,"props":2404,"children":2405},{},[2406,2408,2413,2414,2419,2420,2426],{"type":61,"value":2407},"If user chooses Rivet: chain ",{"type":55,"tag":77,"props":2409,"children":2411},{"className":2410},[],[2412],{"type":61,"value":2237},{"type":61,"value":2355},{"type":55,"tag":77,"props":2415,"children":2417},{"className":2416},[],[2418],{"type":61,"value":1030},{"type":61,"value":2355},{"type":55,"tag":77,"props":2421,"children":2423},{"className":2422},[],[2424],{"type":61,"value":2425},"rest-api",{"type":61,"value":409},{"type":55,"tag":101,"props":2428,"children":2429},{},[2430,2432,2437,2438,2443,2445,2450],{"type":61,"value":2431},"If user declines Rivet: chain ",{"type":55,"tag":77,"props":2433,"children":2435},{"className":2434},[],[2436],{"type":61,"value":1030},{"type":61,"value":2355},{"type":55,"tag":77,"props":2439,"children":2441},{"className":2440},[],[2442],{"type":61,"value":2425},{"type":61,"value":2444}," (+ ",{"type":55,"tag":77,"props":2446,"children":2448},{"className":2447},[],[2449],{"type":61,"value":1753},{"type":61,"value":2451}," or product skill as needed).",{"type":55,"tag":2453,"props":2454,"children":2456},"h3",{"id":2455},"sdk-vs-rest-routing-matrix-hard-stop",[2457],{"type":61,"value":2458},"SDK vs REST Routing Matrix (Hard Stop)",{"type":55,"tag":1914,"props":2460,"children":2461},{},[2462,2483],{"type":55,"tag":1918,"props":2463,"children":2464},{},[2465],{"type":55,"tag":1922,"props":2466,"children":2467},{},[2468,2473,2478],{"type":55,"tag":1926,"props":2469,"children":2470},{},[2471],{"type":61,"value":2472},"User intent",{"type":55,"tag":1926,"props":2474,"children":2475},{},[2476],{"type":61,"value":2477},"Correct path",{"type":55,"tag":1926,"props":2479,"children":2480},{},[2481],{"type":61,"value":2482},"Do not route to",{"type":55,"tag":1937,"props":2484,"children":2485},{},[2486,2515,2539,2560],{"type":55,"tag":1922,"props":2487,"children":2488},{},[2489,2494,2502],{"type":55,"tag":1944,"props":2490,"children":2491},{},[2492],{"type":61,"value":2493},"Embed Zoom meeting in app UI",{"type":55,"tag":1944,"props":2495,"children":2496},{},[2497],{"type":55,"tag":77,"props":2498,"children":2500},{"className":2499},[],[2501],{"type":61,"value":2038},{"type":55,"tag":1944,"props":2503,"children":2504},{},[2505,2507,2513],{"type":61,"value":2506},"REST-only ",{"type":55,"tag":77,"props":2508,"children":2510},{"className":2509},[],[2511],{"type":61,"value":2512},"join_url",{"type":61,"value":2514}," flow",{"type":55,"tag":1922,"props":2516,"children":2517},{},[2518,2523,2531],{"type":55,"tag":1944,"props":2519,"children":2520},{},[2521],{"type":61,"value":2522},"Build custom web UI for a real Zoom meeting",{"type":55,"tag":1944,"props":2524,"children":2525},{},[2526],{"type":55,"tag":77,"props":2527,"children":2529},{"className":2528},[],[2530],{"type":61,"value":264},{"type":55,"tag":1944,"props":2532,"children":2533},{},[2534],{"type":55,"tag":77,"props":2535,"children":2537},{"className":2536},[],[2538],{"type":61,"value":285},{"type":55,"tag":1922,"props":2540,"children":2541},{},[2542,2547,2555],{"type":55,"tag":1944,"props":2543,"children":2544},{},[2545],{"type":61,"value":2546},"Build custom video UI\u002Fsession app",{"type":55,"tag":1944,"props":2548,"children":2549},{},[2550],{"type":55,"tag":77,"props":2551,"children":2553},{"className":2552},[],[2554],{"type":61,"value":285},{"type":55,"tag":1944,"props":2556,"children":2557},{},[2558],{"type":61,"value":2559},"Meeting SDK or REST meeting links",{"type":55,"tag":1922,"props":2561,"children":2562},{},[2563,2568,2576],{"type":55,"tag":1944,"props":2564,"children":2565},{},[2566],{"type":61,"value":2567},"Get browser join links \u002F manage meeting resources",{"type":55,"tag":1944,"props":2569,"children":2570},{},[2571],{"type":55,"tag":77,"props":2572,"children":2574},{"className":2573},[],[2575],{"type":61,"value":201},{"type":55,"tag":1944,"props":2577,"children":2578},{},[2579],{"type":61,"value":2580},"Meeting SDK join implementation",{"type":55,"tag":64,"props":2582,"children":2583},{},[2584],{"type":61,"value":2585},"Routing guardrails:",{"type":55,"tag":1860,"props":2587,"children":2588},{},[2589,2594,2619,2631,2636],{"type":55,"tag":101,"props":2590,"children":2591},{},[2592],{"type":61,"value":2593},"If user asks for SDK embed\u002Fjoin behavior, stay in SDK path.",{"type":55,"tag":101,"props":2595,"children":2596},{},[2597,2599,2604,2606,2611,2613,2618],{"type":61,"value":2598},"If the prompt says ",{"type":55,"tag":1953,"props":2600,"children":2601},{},[2602],{"type":61,"value":2603},"meeting",{"type":61,"value":2605}," plus ",{"type":55,"tag":1953,"props":2607,"children":2608},{},[2609],{"type":61,"value":2610},"custom UI\u002Fvideo\u002Flayout\u002Fembed",{"type":61,"value":2612},", prefer ",{"type":55,"tag":77,"props":2614,"children":2616},{"className":2615},[],[2617],{"type":61,"value":264},{"type":61,"value":409},{"type":55,"tag":101,"props":2620,"children":2621},{},[2622,2624,2629],{"type":61,"value":2623},"Only use ",{"type":55,"tag":77,"props":2625,"children":2627},{"className":2626},[],[2628],{"type":61,"value":285},{"type":61,"value":2630}," when the user is building a custom session product rather than a Zoom meeting.",{"type":55,"tag":101,"props":2632,"children":2633},{},[2634],{"type":61,"value":2635},"Only use REST path for resource management, reporting, or link distribution unless user explicitly requests a mixed architecture.",{"type":55,"tag":101,"props":2637,"children":2638},{},[2639,2641,2645],{"type":61,"value":2640},"For executable classification\u002Fchaining logic and error handling, see ",{"type":55,"tag":1901,"props":2642,"children":2643},{"href":1903},[2644],{"type":61,"value":1903},{"type":61,"value":409},{"type":55,"tag":2453,"props":2647,"children":2649},{"id":2648},"api-vs-mcp-routing-matrix-hard-stop",[2650],{"type":61,"value":2651},"API vs MCP Routing Matrix (Hard Stop)",{"type":55,"tag":1914,"props":2653,"children":2654},{},[2655,2674],{"type":55,"tag":1918,"props":2656,"children":2657},{},[2658],{"type":55,"tag":1922,"props":2659,"children":2660},{},[2661,2665,2669],{"type":55,"tag":1926,"props":2662,"children":2663},{},[2664],{"type":61,"value":2472},{"type":55,"tag":1926,"props":2666,"children":2667},{},[2668],{"type":61,"value":2477},{"type":55,"tag":1926,"props":2670,"children":2671},{},[2672],{"type":61,"value":2673},"Why",{"type":55,"tag":1937,"props":2675,"children":2676},{},[2677,2698,2719],{"type":55,"tag":1922,"props":2678,"children":2679},{},[2680,2685,2693],{"type":55,"tag":1944,"props":2681,"children":2682},{},[2683],{"type":61,"value":2684},"Deterministic backend automation, account\u002Fuser configuration, reporting, scheduled jobs",{"type":55,"tag":1944,"props":2686,"children":2687},{},[2688],{"type":55,"tag":77,"props":2689,"children":2691},{"className":2690},[],[2692],{"type":61,"value":201},{"type":55,"tag":1944,"props":2694,"children":2695},{},[2696],{"type":61,"value":2697},"Explicit request\u002Fresponse control and repeatable behavior",{"type":55,"tag":1922,"props":2699,"children":2700},{},[2701,2706,2714],{"type":55,"tag":1944,"props":2702,"children":2703},{},[2704],{"type":61,"value":2705},"AI agent chooses tools dynamically, cross-platform AI tool interoperability",{"type":55,"tag":1944,"props":2707,"children":2708},{},[2709],{"type":55,"tag":77,"props":2710,"children":2712},{"className":2711},[],[2713],{"type":61,"value":306},{"type":55,"tag":1944,"props":2715,"children":2716},{},[2717],{"type":61,"value":2718},"MCP is optimized for dynamic tool discovery and agentic workflows",{"type":55,"tag":1922,"props":2720,"children":2721},{},[2722,2727,2736],{"type":55,"tag":1944,"props":2723,"children":2724},{},[2725],{"type":61,"value":2726},"Enterprise AI architecture (stable core + adaptive AI layer)",{"type":55,"tag":1944,"props":2728,"children":2729},{},[2730],{"type":55,"tag":77,"props":2731,"children":2733},{"className":2732},[],[2734],{"type":61,"value":2735},"zoom-rest-api + zoom-mcp",{"type":55,"tag":1944,"props":2737,"children":2738},{},[2739],{"type":61,"value":2740},"APIs run core system actions; MCP exposes curated AI tools\u002Fcontext",{"type":55,"tag":64,"props":2742,"children":2743},{},[2744],{"type":61,"value":2585},{"type":55,"tag":1860,"props":2746,"children":2747},{},[2748,2753,2758,2763,2768,2773],{"type":55,"tag":101,"props":2749,"children":2750},{},[2751],{"type":61,"value":2752},"Do not replace deterministic backend APIs with MCP-only routing.",{"type":55,"tag":101,"props":2754,"children":2755},{},[2756],{"type":61,"value":2757},"Do not force raw REST-first routing when the task is AI-agent tool orchestration.",{"type":55,"tag":101,"props":2759,"children":2760},{},[2761],{"type":61,"value":2762},"Prefer hybrid routing when the user needs both stable automation and AI-driven interactions.",{"type":55,"tag":101,"props":2764,"children":2765},{},[2766],{"type":61,"value":2767},"MCP remote server works over Streamable HTTP\u002FSSE; use this path when the target client\u002Fagent supports MCP transports (for example Claude or VS Code).",{"type":55,"tag":101,"props":2769,"children":2770},{},[2771],{"type":61,"value":2772},"Do not design per-tenant custom MCP endpoint provisioning; Zoom MCP endpoints are shared at instance\u002Fcluster level.",{"type":55,"tag":101,"props":2774,"children":2775},{},[2776,2778],{"type":61,"value":2777},"Source: ",{"type":55,"tag":1901,"props":2779,"children":2783},{"href":2780,"rel":2781},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmcp\u002Flibrary\u002Fresources\u002Fapis-vs-mcp\u002F",[2782],"nofollow",[2784],{"type":61,"value":2780},{"type":55,"tag":2453,"props":2786,"children":2788},{"id":2787},"ambiguity-resolution-ask-before-routing",[2789],{"type":61,"value":2790},"Ambiguity Resolution (Ask Before Routing)",{"type":55,"tag":64,"props":2792,"children":2793},{},[2794],{"type":61,"value":2795},"When a prompt matches both API and MCP paths with similar confidence, ask one short clarifier before execution:",{"type":55,"tag":1860,"props":2797,"children":2798},{},[2799],{"type":55,"tag":101,"props":2800,"children":2801},{},[2802],{"type":55,"tag":77,"props":2803,"children":2805},{"className":2804},[],[2806],{"type":61,"value":2807},"Do you want deterministic REST API automation, AI-agent MCP tooling, or a hybrid of both?",{"type":55,"tag":64,"props":2809,"children":2810},{},[2811],{"type":61,"value":2812},"Then route as:",{"type":55,"tag":1860,"props":2814,"children":2815},{},[2816,2826,2836],{"type":55,"tag":101,"props":2817,"children":2818},{},[2819,2821],{"type":61,"value":2820},"REST answer → ",{"type":55,"tag":77,"props":2822,"children":2824},{"className":2823},[],[2825],{"type":61,"value":201},{"type":55,"tag":101,"props":2827,"children":2828},{},[2829,2831],{"type":61,"value":2830},"MCP answer → ",{"type":55,"tag":77,"props":2832,"children":2834},{"className":2833},[],[2835],{"type":61,"value":306},{"type":55,"tag":101,"props":2837,"children":2838},{},[2839,2841],{"type":61,"value":2840},"Hybrid answer → ",{"type":55,"tag":77,"props":2842,"children":2844},{"className":2843},[],[2845],{"type":61,"value":2735},{"type":55,"tag":2453,"props":2847,"children":2849},{"id":2848},"mcp-availability-and-topology-notes",[2850],{"type":61,"value":2851},"MCP Availability and Topology Notes",{"type":55,"tag":1860,"props":2853,"children":2854},{},[2855,2860,2871,2884],{"type":55,"tag":101,"props":2856,"children":2857},{},[2858],{"type":61,"value":2859},"Zoom-hosted MCP access is evolving; docs indicate a model where Zoom exposes product-scoped MCP servers (for example Meetings, Team Chat, Whiteboard).",{"type":55,"tag":101,"props":2861,"children":2862},{},[2863,2864,2869],{"type":61,"value":88},{"type":55,"tag":77,"props":2865,"children":2867},{"className":2866},[],[2868],{"type":61,"value":306},{"type":61,"value":2870}," as the parent MCP entry point.",{"type":55,"tag":101,"props":2872,"children":2873},{},[2874,2876,2883],{"type":61,"value":2875},"Route Whiteboard-specific MCP requests to ",{"type":55,"tag":1953,"props":2877,"children":2878},{},[2879],{"type":55,"tag":1901,"props":2880,"children":2881},{"href":2332},[2882],{"type":61,"value":2335},{"type":61,"value":409},{"type":55,"tag":101,"props":2885,"children":2886},{},[2887],{"type":61,"value":2888},"When a request is product-specific and MCP coverage exists, route to that MCP product surface first; otherwise use REST\u002FSDK skills for deterministic implementation.",{"type":55,"tag":2453,"props":2890,"children":2892},{"id":2891},"webhooks-vs-websockets",[2893],{"type":61,"value":2894},"Webhooks vs WebSockets",{"type":55,"tag":64,"props":2896,"children":2897},{},[2898],{"type":61,"value":2899},"Both receive event notifications, but differ in approach:",{"type":55,"tag":1914,"props":2901,"children":2902},{},[2903,2922],{"type":55,"tag":1918,"props":2904,"children":2905},{},[2906],{"type":55,"tag":1922,"props":2907,"children":2908},{},[2909,2914,2918],{"type":55,"tag":1926,"props":2910,"children":2911},{},[2912],{"type":61,"value":2913},"Aspect",{"type":55,"tag":1926,"props":2915,"children":2916},{},[2917],{"type":61,"value":1753},{"type":55,"tag":1926,"props":2919,"children":2920},{},[2921],{"type":61,"value":2018},{"type":55,"tag":1937,"props":2923,"children":2924},{},[2925,2943,2961,2979,2997],{"type":55,"tag":1922,"props":2926,"children":2927},{},[2928,2933,2938],{"type":55,"tag":1944,"props":2929,"children":2930},{},[2931],{"type":61,"value":2932},"Connection",{"type":55,"tag":1944,"props":2934,"children":2935},{},[2936],{"type":61,"value":2937},"HTTP POST to your endpoint",{"type":55,"tag":1944,"props":2939,"children":2940},{},[2941],{"type":61,"value":2942},"Persistent WebSocket",{"type":55,"tag":1922,"props":2944,"children":2945},{},[2946,2951,2956],{"type":55,"tag":1944,"props":2947,"children":2948},{},[2949],{"type":61,"value":2950},"Latency",{"type":55,"tag":1944,"props":2952,"children":2953},{},[2954],{"type":61,"value":2955},"Higher",{"type":55,"tag":1944,"props":2957,"children":2958},{},[2959],{"type":61,"value":2960},"Lower",{"type":55,"tag":1922,"props":2962,"children":2963},{},[2964,2969,2974],{"type":55,"tag":1944,"props":2965,"children":2966},{},[2967],{"type":61,"value":2968},"Security",{"type":55,"tag":1944,"props":2970,"children":2971},{},[2972],{"type":61,"value":2973},"Requires public endpoint",{"type":55,"tag":1944,"props":2975,"children":2976},{},[2977],{"type":61,"value":2978},"No exposed endpoint",{"type":55,"tag":1922,"props":2980,"children":2981},{},[2982,2987,2992],{"type":55,"tag":1944,"props":2983,"children":2984},{},[2985],{"type":61,"value":2986},"Setup",{"type":55,"tag":1944,"props":2988,"children":2989},{},[2990],{"type":61,"value":2991},"Simpler",{"type":55,"tag":1944,"props":2993,"children":2994},{},[2995],{"type":61,"value":2996},"More complex",{"type":55,"tag":1922,"props":2998,"children":2999},{},[3000,3005,3010],{"type":55,"tag":1944,"props":3001,"children":3002},{},[3003],{"type":61,"value":3004},"Best for",{"type":55,"tag":1944,"props":3006,"children":3007},{},[3008],{"type":61,"value":3009},"Most use cases",{"type":55,"tag":1944,"props":3011,"children":3012},{},[3013],{"type":61,"value":3014},"Real-time, security-sensitive",{"type":55,"tag":70,"props":3016,"children":3018},{"id":3017},"common-use-cases",[3019],{"type":61,"value":3020},"Common Use Cases",{"type":55,"tag":1914,"props":3022,"children":3023},{},[3024,3045],{"type":55,"tag":1918,"props":3025,"children":3026},{},[3027],{"type":55,"tag":1922,"props":3028,"children":3029},{},[3030,3035,3040],{"type":55,"tag":1926,"props":3031,"children":3032},{},[3033],{"type":61,"value":3034},"Use Case",{"type":55,"tag":1926,"props":3036,"children":3037},{},[3038],{"type":61,"value":3039},"Description",{"type":55,"tag":1926,"props":3041,"children":3042},{},[3043],{"type":61,"value":3044},"Skills Needed",{"type":55,"tag":1937,"props":3046,"children":3047},{},[3048,3082,3117,3147,3176,3200,3236,3270,3299,3328,3357,3386,3417,3443,3468,3499,3530,3561,3585,3609,3638,3667,3701,3735,3769],{"type":55,"tag":1922,"props":3049,"children":3050},{},[3051,3060,3065],{"type":55,"tag":1944,"props":3052,"children":3053},{},[3054],{"type":55,"tag":1901,"props":3055,"children":3057},{"href":3056},"references\u002Fmeeting-webhooks-oauth-refresh-orchestration.md",[3058],{"type":61,"value":3059},"Meeting + Webhooks + OAuth Refresh",{"type":55,"tag":1944,"props":3061,"children":3062},{},[3063],{"type":61,"value":3064},"Create a meeting, process real-time updates, and refresh OAuth tokens safely in one design",{"type":55,"tag":1944,"props":3066,"children":3067},{},[3068,3072,3073,3077,3078],{"type":55,"tag":1901,"props":3069,"children":3070},{"href":1977},[3071],{"type":61,"value":201},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3074,"children":3075},{"href":2294},[3076],{"type":61,"value":243},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3079,"children":3080},{"href":1996},[3081],{"type":61,"value":222},{"type":55,"tag":1922,"props":3083,"children":3084},{},[3085,3094,3099],{"type":55,"tag":1944,"props":3086,"children":3087},{},[3088],{"type":55,"tag":1901,"props":3089,"children":3091},{"href":3090},"use-cases\u002Fscribe-transcription-pipeline.md",[3092],{"type":61,"value":3093},"Scribe Transcription Pipeline",{"type":55,"tag":1944,"props":3095,"children":3096},{},[3097],{"type":61,"value":3098},"Transcribe uploaded files or S3 archives with AI Services Scribe using fast mode or batch jobs",{"type":55,"tag":1944,"props":3100,"children":3101},{},[3102,3106,3108,3112,3113],{"type":55,"tag":1901,"props":3103,"children":3104},{"href":2094},[3105],{"type":61,"value":2097},{"type":61,"value":3107}," + optional ",{"type":55,"tag":1901,"props":3109,"children":3110},{"href":1977},[3111],{"type":61,"value":201},{"type":61,"value":3107},{"type":55,"tag":1901,"props":3114,"children":3115},{"href":1996},[3116],{"type":61,"value":222},{"type":55,"tag":1922,"props":3118,"children":3119},{},[3120,3129,3134],{"type":55,"tag":1944,"props":3121,"children":3122},{},[3123],{"type":55,"tag":1901,"props":3124,"children":3126},{"href":3125},"use-cases\u002Fapis-vs-mcp-routing.md",[3127],{"type":61,"value":3128},"APIs vs MCP Routing",{"type":55,"tag":1944,"props":3130,"children":3131},{},[3132],{"type":61,"value":3133},"Decide whether to route to deterministic Zoom APIs, AI-driven MCP, or a hybrid design",{"type":55,"tag":1944,"props":3135,"children":3136},{},[3137,3141,3143],{"type":55,"tag":1901,"props":3138,"children":3139},{"href":1977},[3140],{"type":61,"value":201},{"type":61,"value":3142}," and\u002For ",{"type":55,"tag":1901,"props":3144,"children":3145},{"href":2313},[3146],{"type":61,"value":306},{"type":55,"tag":1922,"props":3148,"children":3149},{},[3150,3159,3164],{"type":55,"tag":1944,"props":3151,"children":3152},{},[3153],{"type":55,"tag":1901,"props":3154,"children":3156},{"href":3155},"use-cases\u002Fcustom-meeting-ui-web.md",[3157],{"type":61,"value":3158},"Custom Meeting UI (Web)",{"type":55,"tag":1944,"props":3160,"children":3161},{},[3162],{"type":61,"value":3163},"Build a custom video UI for a real Zoom meeting in a web app using Meeting SDK Component View",{"type":55,"tag":1944,"props":3165,"children":3166},{},[3167,3171,3172],{"type":55,"tag":1901,"props":3168,"children":3169},{"href":1958},[3170],{"type":61,"value":264},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3173,"children":3174},{"href":2294},[3175],{"type":61,"value":243},{"type":55,"tag":1922,"props":3177,"children":3178},{},[3179,3188,3193],{"type":55,"tag":1944,"props":3180,"children":3181},{},[3182],{"type":55,"tag":1901,"props":3183,"children":3185},{"href":3184},"use-cases\u002Fmeeting-automation.md",[3186],{"type":61,"value":3187},"Meeting Automation",{"type":55,"tag":1944,"props":3189,"children":3190},{},[3191],{"type":61,"value":3192},"Schedule, update, delete meetings programmatically",{"type":55,"tag":1944,"props":3194,"children":3195},{},[3196],{"type":55,"tag":1901,"props":3197,"children":3198},{"href":1977},[3199],{"type":61,"value":201},{"type":55,"tag":1922,"props":3201,"children":3202},{},[3203,3212,3217],{"type":55,"tag":1944,"props":3204,"children":3205},{},[3206],{"type":55,"tag":1901,"props":3207,"children":3209},{"href":3208},"use-cases\u002Fmeeting-bots.md",[3210],{"type":61,"value":3211},"Meeting Bots",{"type":55,"tag":1944,"props":3213,"children":3214},{},[3215],{"type":61,"value":3216},"Build bots that join meetings for AI\u002Ftranscription\u002Frecording",{"type":55,"tag":1944,"props":3218,"children":3219},{},[3220,3226,3227,3231,3232],{"type":55,"tag":1901,"props":3221,"children":3223},{"href":3222},"..\u002Fmeeting-sdk\u002Flinux\u002FSKILL.md",[3224],{"type":61,"value":3225},"meeting-sdk\u002Flinux",{"type":61,"value":2355},{"type":55,"tag":1901,"props":3228,"children":3229},{"href":1977},[3230],{"type":61,"value":201},{"type":61,"value":3107},{"type":55,"tag":1901,"props":3233,"children":3234},{"href":1996},[3235],{"type":61,"value":222},{"type":55,"tag":1922,"props":3237,"children":3238},{},[3239,3248,3253],{"type":55,"tag":1944,"props":3240,"children":3241},{},[3242],{"type":55,"tag":1901,"props":3243,"children":3245},{"href":3244},"use-cases\u002Fhigh-volume-meeting-platform.md",[3246],{"type":61,"value":3247},"High-Volume Meeting Platform",{"type":55,"tag":1944,"props":3249,"children":3250},{},[3251],{"type":61,"value":3252},"Design distributed meeting creation and event processing with retries, queues, and reconciliation",{"type":55,"tag":1944,"props":3254,"children":3255},{},[3256,3260,3261,3265,3266],{"type":55,"tag":1901,"props":3257,"children":3258},{"href":1977},[3259],{"type":61,"value":201},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3262,"children":3263},{"href":1996},[3264],{"type":61,"value":222},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3267,"children":3268},{"href":2294},[3269],{"type":61,"value":243},{"type":55,"tag":1922,"props":3271,"children":3272},{},[3273,3282,3287],{"type":55,"tag":1944,"props":3274,"children":3275},{},[3276],{"type":55,"tag":1901,"props":3277,"children":3279},{"href":3278},"use-cases\u002Frecording-transcription.md",[3280],{"type":61,"value":3281},"Recording & Transcription",{"type":55,"tag":1944,"props":3283,"children":3284},{},[3285],{"type":61,"value":3286},"Download recordings, get transcripts",{"type":55,"tag":1944,"props":3288,"children":3289},{},[3290,3294,3295],{"type":55,"tag":1901,"props":3291,"children":3292},{"href":1996},[3293],{"type":61,"value":222},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3296,"children":3297},{"href":1977},[3298],{"type":61,"value":201},{"type":55,"tag":1922,"props":3300,"children":3301},{},[3302,3311,3316],{"type":55,"tag":1944,"props":3303,"children":3304},{},[3305],{"type":55,"tag":1901,"props":3306,"children":3308},{"href":3307},"use-cases\u002Frecording-download-pipeline.md",[3309],{"type":61,"value":3310},"Recording Download Pipeline",{"type":55,"tag":1944,"props":3312,"children":3313},{},[3314],{"type":61,"value":3315},"Auto-download recordings to your own storage (S3, GCS, etc.)",{"type":55,"tag":1944,"props":3317,"children":3318},{},[3319,3323,3324],{"type":55,"tag":1901,"props":3320,"children":3321},{"href":1996},[3322],{"type":61,"value":222},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3325,"children":3326},{"href":1977},[3327],{"type":61,"value":201},{"type":55,"tag":1922,"props":3329,"children":3330},{},[3331,3340,3345],{"type":55,"tag":1944,"props":3332,"children":3333},{},[3334],{"type":55,"tag":1901,"props":3335,"children":3337},{"href":3336},"use-cases\u002Freal-time-media-streams.md",[3338],{"type":61,"value":3339},"Real-Time Media Streams",{"type":55,"tag":1944,"props":3341,"children":3342},{},[3343],{"type":61,"value":3344},"Access live audio, video, transcripts via WebSocket",{"type":55,"tag":1944,"props":3346,"children":3347},{},[3348,3352,3353],{"type":55,"tag":1901,"props":3349,"children":3350},{"href":2114},[3351],{"type":61,"value":2117},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3354,"children":3355},{"href":1996},[3356],{"type":61,"value":222},{"type":55,"tag":1922,"props":3358,"children":3359},{},[3360,3369,3374],{"type":55,"tag":1944,"props":3361,"children":3362},{},[3363],{"type":55,"tag":1901,"props":3364,"children":3366},{"href":3365},"use-cases\u002Fin-meeting-apps.md",[3367],{"type":61,"value":3368},"In-Meeting Apps",{"type":55,"tag":1944,"props":3370,"children":3371},{},[3372],{"type":61,"value":3373},"Build apps that run inside Zoom meetings",{"type":55,"tag":1944,"props":3375,"children":3376},{},[3377,3381,3382],{"type":55,"tag":1901,"props":3378,"children":3379},{"href":2074},[3380],{"type":61,"value":2077},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3383,"children":3384},{"href":2294},[3385],{"type":61,"value":243},{"type":55,"tag":1922,"props":3387,"children":3388},{},[3389,3398,3403],{"type":55,"tag":1944,"props":3390,"children":3391},{},[3392],{"type":55,"tag":1901,"props":3393,"children":3395},{"href":3394},"use-cases\u002Freact-native-meeting-embed.md",[3396],{"type":61,"value":3397},"React Native Meeting Embed",{"type":55,"tag":1944,"props":3399,"children":3400},{},[3401],{"type":61,"value":3402},"Embed meetings into iOS\u002FAndroid React Native apps",{"type":55,"tag":1944,"props":3404,"children":3405},{},[3406,3412,3413],{"type":55,"tag":1901,"props":3407,"children":3409},{"href":3408},"..\u002Fmeeting-sdk\u002Freact-native\u002FSKILL.md",[3410],{"type":61,"value":3411},"zoom-meeting-sdk-react-native",{"type":61,"value":2355},{"type":55,"tag":1901,"props":3414,"children":3415},{"href":2294},[3416],{"type":61,"value":243},{"type":55,"tag":1922,"props":3418,"children":3419},{},[3420,3429,3434],{"type":55,"tag":1944,"props":3421,"children":3422},{},[3423],{"type":55,"tag":1901,"props":3424,"children":3426},{"href":3425},"use-cases\u002Fnative-meeting-sdk-multi-platform.md",[3427],{"type":61,"value":3428},"Native Meeting SDK Multi-Platform Delivery",{"type":55,"tag":1944,"props":3430,"children":3431},{},[3432],{"type":61,"value":3433},"Align Android, iOS, macOS, and Unreal Meeting SDK implementations under one auth\u002Fversion strategy",{"type":55,"tag":1944,"props":3435,"children":3436},{},[3437,3441],{"type":55,"tag":1901,"props":3438,"children":3439},{"href":2035},[3440],{"type":61,"value":2038},{"type":61,"value":3442}," + platform skills",{"type":55,"tag":1922,"props":3444,"children":3445},{},[3446,3455,3460],{"type":55,"tag":1944,"props":3447,"children":3448},{},[3449],{"type":55,"tag":1901,"props":3450,"children":3452},{"href":3451},"use-cases\u002Fnative-video-sdk-multi-platform.md",[3453],{"type":61,"value":3454},"Native Video SDK Multi-Platform Delivery",{"type":55,"tag":1944,"props":3456,"children":3457},{},[3458],{"type":61,"value":3459},"Align Android, iOS, macOS, and Unity Video SDK implementations under one auth\u002Fversion strategy",{"type":55,"tag":1944,"props":3461,"children":3462},{},[3463,3467],{"type":55,"tag":1901,"props":3464,"children":3465},{"href":2055},[3466],{"type":61,"value":285},{"type":61,"value":3442},{"type":55,"tag":1922,"props":3469,"children":3470},{},[3471,3480,3485],{"type":55,"tag":1944,"props":3472,"children":3473},{},[3474],{"type":55,"tag":1901,"props":3475,"children":3477},{"href":3476},"use-cases\u002Felectron-meeting-embed.md",[3478],{"type":61,"value":3479},"Electron Meeting Embed",{"type":55,"tag":1944,"props":3481,"children":3482},{},[3483],{"type":61,"value":3484},"Embed meetings into desktop Electron apps",{"type":55,"tag":1944,"props":3486,"children":3487},{},[3488,3494,3495],{"type":55,"tag":1901,"props":3489,"children":3491},{"href":3490},"..\u002Fmeeting-sdk\u002Felectron\u002FSKILL.md",[3492],{"type":61,"value":3493},"zoom-meeting-sdk-electron",{"type":61,"value":2355},{"type":55,"tag":1901,"props":3496,"children":3497},{"href":2294},[3498],{"type":61,"value":243},{"type":55,"tag":1922,"props":3500,"children":3501},{},[3502,3511,3516],{"type":55,"tag":1944,"props":3503,"children":3504},{},[3505],{"type":55,"tag":1901,"props":3506,"children":3508},{"href":3507},"use-cases\u002Fflutter-video-sessions.md",[3509],{"type":61,"value":3510},"Flutter Video Sessions",{"type":55,"tag":1944,"props":3512,"children":3513},{},[3514],{"type":61,"value":3515},"Build custom mobile video sessions in Flutter",{"type":55,"tag":1944,"props":3517,"children":3518},{},[3519,3525,3526],{"type":55,"tag":1901,"props":3520,"children":3522},{"href":3521},"..\u002Fvideo-sdk\u002Fflutter\u002FSKILL.md",[3523],{"type":61,"value":3524},"zoom-video-sdk-flutter",{"type":61,"value":2355},{"type":55,"tag":1901,"props":3527,"children":3528},{"href":2294},[3529],{"type":61,"value":243},{"type":55,"tag":1922,"props":3531,"children":3532},{},[3533,3542,3547],{"type":55,"tag":1944,"props":3534,"children":3535},{},[3536],{"type":55,"tag":1901,"props":3537,"children":3539},{"href":3538},"use-cases\u002Freact-native-video-sessions.md",[3540],{"type":61,"value":3541},"React Native Video Sessions",{"type":55,"tag":1944,"props":3543,"children":3544},{},[3545],{"type":61,"value":3546},"Build custom mobile video sessions in React Native",{"type":55,"tag":1944,"props":3548,"children":3549},{},[3550,3556,3557],{"type":55,"tag":1901,"props":3551,"children":3553},{"href":3552},"..\u002Fvideo-sdk\u002Freact-native\u002FSKILL.md",[3554],{"type":61,"value":3555},"zoom-video-sdk-react-native",{"type":61,"value":2355},{"type":55,"tag":1901,"props":3558,"children":3559},{"href":2294},[3560],{"type":61,"value":243},{"type":55,"tag":1922,"props":3562,"children":3563},{},[3564,3573,3578],{"type":55,"tag":1944,"props":3565,"children":3566},{},[3567],{"type":55,"tag":1901,"props":3568,"children":3570},{"href":3569},"use-cases\u002Fimmersive-experiences.md",[3571],{"type":61,"value":3572},"Immersive Experiences",{"type":55,"tag":1944,"props":3574,"children":3575},{},[3576],{"type":61,"value":3577},"Custom video layouts with Layers API",{"type":55,"tag":1944,"props":3579,"children":3580},{},[3581],{"type":55,"tag":1901,"props":3582,"children":3583},{"href":2074},[3584],{"type":61,"value":2077},{"type":55,"tag":1922,"props":3586,"children":3587},{},[3588,3597,3602],{"type":55,"tag":1944,"props":3589,"children":3590},{},[3591],{"type":55,"tag":1901,"props":3592,"children":3594},{"href":3593},"use-cases\u002Fcollaborative-apps.md",[3595],{"type":61,"value":3596},"Collaborative Apps",{"type":55,"tag":1944,"props":3598,"children":3599},{},[3600],{"type":61,"value":3601},"Real-time shared state in meetings",{"type":55,"tag":1944,"props":3603,"children":3604},{},[3605],{"type":55,"tag":1901,"props":3606,"children":3607},{"href":2074},[3608],{"type":61,"value":2077},{"type":55,"tag":1922,"props":3610,"children":3611},{},[3612,3621,3626],{"type":55,"tag":1944,"props":3613,"children":3614},{},[3615],{"type":55,"tag":1901,"props":3616,"children":3618},{"href":3617},"use-cases\u002Fcontact-center-app-lifecycle-and-context-switching.md",[3619],{"type":61,"value":3620},"Contact Center App Lifecycle and Context Switching",{"type":55,"tag":1944,"props":3622,"children":3623},{},[3624],{"type":61,"value":3625},"Build Contact Center apps that handle engagement events and multi-engagement state",{"type":55,"tag":1944,"props":3627,"children":3628},{},[3629,3633,3634],{"type":55,"tag":1901,"props":3630,"children":3631},{"href":2154},[3632],{"type":61,"value":2157},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3635,"children":3636},{"href":2074},[3637],{"type":61,"value":2077},{"type":55,"tag":1922,"props":3639,"children":3640},{},[3641,3650,3655],{"type":55,"tag":1944,"props":3642,"children":3643},{},[3644],{"type":55,"tag":1901,"props":3645,"children":3647},{"href":3646},"use-cases\u002Fvirtual-agent-campaign-web-mobile-wrapper.md",[3648],{"type":61,"value":3649},"Virtual Agent Campaign Web and Mobile Wrapper",{"type":55,"tag":1944,"props":3651,"children":3652},{},[3653],{"type":61,"value":3654},"Deliver one campaign-driven bot flow across web and native mobile wrappers",{"type":55,"tag":1944,"props":3656,"children":3657},{},[3658,3662,3663],{"type":55,"tag":1901,"props":3659,"children":3660},{"href":2174},[3661],{"type":61,"value":2177},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3664,"children":3665},{"href":2154},[3666],{"type":61,"value":2157},{"type":55,"tag":1922,"props":3668,"children":3669},{},[3670,3679,3684],{"type":55,"tag":1944,"props":3671,"children":3672},{},[3673],{"type":55,"tag":1901,"props":3674,"children":3676},{"href":3675},"use-cases\u002Fvirtual-agent-knowledge-base-sync-pipeline.md",[3677],{"type":61,"value":3678},"Virtual Agent Knowledge Base Sync Pipeline",{"type":55,"tag":1944,"props":3680,"children":3681},{},[3682],{"type":61,"value":3683},"Sync external knowledge content into Zoom Virtual Agent using web sync or custom API connectors",{"type":55,"tag":1944,"props":3685,"children":3686},{},[3687,3691,3692,3696,3697],{"type":55,"tag":1901,"props":3688,"children":3689},{"href":2174},[3690],{"type":61,"value":2177},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3693,"children":3694},{"href":1977},[3695],{"type":61,"value":201},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3698,"children":3699},{"href":2294},[3700],{"type":61,"value":243},{"type":55,"tag":1922,"props":3702,"children":3703},{},[3704,3713,3718],{"type":55,"tag":1944,"props":3705,"children":3706},{},[3707],{"type":55,"tag":1901,"props":3708,"children":3710},{"href":3709},"use-cases\u002Fzoom-phone-smart-embed-crm.md",[3711],{"type":61,"value":3712},"Zoom Phone Smart Embed CRM Integration",{"type":55,"tag":1944,"props":3714,"children":3715},{},[3716],{"type":61,"value":3717},"Build CRM dialer and call logging flows using Smart Embed plus Phone APIs",{"type":55,"tag":1944,"props":3719,"children":3720},{},[3721,3725,3726,3730,3731],{"type":55,"tag":1901,"props":3722,"children":3723},{"href":2194},[3724],{"type":61,"value":2197},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3727,"children":3728},{"href":2294},[3729],{"type":61,"value":243},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3732,"children":3733},{"href":1996},[3734],{"type":61,"value":222},{"type":55,"tag":1922,"props":3736,"children":3737},{},[3738,3747,3752],{"type":55,"tag":1944,"props":3739,"children":3740},{},[3741],{"type":55,"tag":1901,"props":3742,"children":3744},{"href":3743},"use-cases\u002Frivet-event-driven-api-orchestrator.md",[3745],{"type":61,"value":3746},"Rivet Event-Driven API Orchestrator",{"type":55,"tag":1944,"props":3748,"children":3749},{},[3750],{"type":61,"value":3751},"Build a Node.js backend that combines webhooks and API actions through Rivet module clients",{"type":55,"tag":1944,"props":3753,"children":3754},{},[3755,3759,3760,3764,3765],{"type":55,"tag":1901,"props":3756,"children":3757},{"href":2234},[3758],{"type":61,"value":2237},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3761,"children":3762},{"href":2294},[3763],{"type":61,"value":243},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3766,"children":3767},{"href":1977},[3768],{"type":61,"value":201},{"type":55,"tag":1922,"props":3770,"children":3771},{},[3772,3781,3786],{"type":55,"tag":1944,"props":3773,"children":3774},{},[3775],{"type":55,"tag":1901,"props":3776,"children":3778},{"href":3777},"use-cases\u002Fprobe-sdk-preflight-readiness-gate.md",[3779],{"type":61,"value":3780},"Probe SDK Preflight Readiness Gate",{"type":55,"tag":1944,"props":3782,"children":3783},{},[3784],{"type":61,"value":3785},"Add browser\u002Fdevice\u002Fnetwork diagnostics and readiness policy before Meeting SDK or Video SDK joins",{"type":55,"tag":1944,"props":3787,"children":3788},{},[3789,3793,3794,3798,3800],{"type":55,"tag":1901,"props":3790,"children":3791},{"href":2254},[3792],{"type":61,"value":2257},{"type":61,"value":2355},{"type":55,"tag":1901,"props":3795,"children":3796},{"href":2035},[3797],{"type":61,"value":2038},{"type":61,"value":3799}," or ",{"type":55,"tag":1901,"props":3801,"children":3802},{"href":2055},[3803],{"type":61,"value":285},{"type":55,"tag":70,"props":3805,"children":3807},{"id":3806},"complete-use-case-index",[3808],{"type":61,"value":3809},"Complete Use-Case Index",{"type":55,"tag":1860,"props":3811,"children":3812},{},[3813,3822,3833,3844,3855,3864,3875,3884,3893,3902,3911,3920,3929,3940,3949,3958,3969,3980,3991,4002,4013,4022,4031,4040,4051,4060,4069,4078,4087,4098,4109,4120,4131,4142,4151,4160,4169,4178,4187,4196,4205,4216,4227,4238,4249,4260,4271,4282,4293,4304,4315,4326,4337,4355],{"type":55,"tag":101,"props":3814,"children":3815},{},[3816,3820],{"type":55,"tag":1901,"props":3817,"children":3818},{"href":3125},[3819],{"type":61,"value":3128},{"type":61,"value":3821},": choose API-only, MCP-only, or hybrid routing using official Zoom criteria.",{"type":55,"tag":101,"props":3823,"children":3824},{},[3825,3831],{"type":55,"tag":1901,"props":3826,"children":3828},{"href":3827},"use-cases\u002Fai-companion-integration.md",[3829],{"type":61,"value":3830},"AI Companion Integration",{"type":61,"value":3832},": connect Zoom AI Companion capabilities into your app workflow.",{"type":55,"tag":101,"props":3834,"children":3835},{},[3836,3842],{"type":55,"tag":1901,"props":3837,"children":3839},{"href":3838},"use-cases\u002Fai-integration.md",[3840],{"type":61,"value":3841},"AI Integration",{"type":61,"value":3843},": add summarization, transcription, or assistant logic using Zoom data surfaces.",{"type":55,"tag":101,"props":3845,"children":3846},{},[3847,3853],{"type":55,"tag":1901,"props":3848,"children":3850},{"href":3849},"use-cases\u002Fbackend-automation-s2s-oauth.md",[3851],{"type":61,"value":3852},"Backend Automation (S2S OAuth)",{"type":61,"value":3854},": run server-side jobs with account-level OAuth credentials.",{"type":55,"tag":101,"props":3856,"children":3857},{},[3858,3862],{"type":55,"tag":1901,"props":3859,"children":3860},{"href":3593},[3861],{"type":61,"value":3596},{"type":61,"value":3863},": build shared in-meeting app state and interactions.",{"type":55,"tag":101,"props":3865,"children":3866},{},[3867,3873],{"type":55,"tag":1901,"props":3868,"children":3870},{"href":3869},"use-cases\u002Fcontact-center-integration.md",[3871],{"type":61,"value":3872},"Contact Center Integration",{"type":61,"value":3874},": connect Zoom Contact Center signals into external systems.",{"type":55,"tag":101,"props":3876,"children":3877},{},[3878,3882],{"type":55,"tag":1901,"props":3879,"children":3880},{"href":3617},[3881],{"type":61,"value":3620},{"type":61,"value":3883},": implement event-driven engagement state and safe context switching in Contact Center apps.",{"type":55,"tag":101,"props":3885,"children":3886},{},[3887,3891],{"type":55,"tag":1901,"props":3888,"children":3889},{"href":3646},[3890],{"type":61,"value":3649},{"type":61,"value":3892},": deploy campaign-based Virtual Agent chat across website and Android\u002FiOS WebView wrappers.",{"type":55,"tag":101,"props":3894,"children":3895},{},[3896,3900],{"type":55,"tag":1901,"props":3897,"children":3898},{"href":3675},[3899],{"type":61,"value":3678},{"type":61,"value":3901},": automate knowledge-base ingestion with web sync strategy or custom API connector.",{"type":55,"tag":101,"props":3903,"children":3904},{},[3905,3909],{"type":55,"tag":1901,"props":3906,"children":3907},{"href":3709},[3908],{"type":61,"value":3712},{"type":61,"value":3910},": integrate Smart Embed events, Phone APIs, and CRM workflows with migration-safe data handling.",{"type":55,"tag":101,"props":3912,"children":3913},{},[3914,3918],{"type":55,"tag":1901,"props":3915,"children":3916},{"href":3743},[3917],{"type":61,"value":3746},{"type":61,"value":3919},": build a Node.js backend that combines webhook handling and API orchestration with Rivet.",{"type":55,"tag":101,"props":3921,"children":3922},{},[3923,3927],{"type":55,"tag":1901,"props":3924,"children":3925},{"href":3777},[3926],{"type":61,"value":3780},{"type":61,"value":3928},": run browser\u002Fdevice\u002Fnetwork diagnostics before launching meeting or video session workflows.",{"type":55,"tag":101,"props":3930,"children":3931},{},[3932,3938],{"type":55,"tag":1901,"props":3933,"children":3935},{"href":3934},"use-cases\u002Fcustom-video.md",[3936],{"type":61,"value":3937},"Custom Video",{"type":61,"value":3939},": decide between Video SDK and related components for custom session UX.",{"type":55,"tag":101,"props":3941,"children":3942},{},[3943,3947],{"type":55,"tag":1901,"props":3944,"children":3945},{"href":3155},[3946],{"type":61,"value":3158},{"type":61,"value":3948},": use Meeting SDK Component View for a custom UI around a real Zoom meeting.",{"type":55,"tag":101,"props":3950,"children":3951},{},[3952,3956],{"type":55,"tag":1901,"props":3953,"children":3954},{"href":3090},[3955],{"type":61,"value":3093},{"type":61,"value":3957},": use AI Services Scribe for on-demand file transcription and batch archive processing.",{"type":55,"tag":101,"props":3959,"children":3960},{},[3961,3967],{"type":55,"tag":1901,"props":3962,"children":3964},{"href":3963},"use-cases\u002Fvideo-sdk-bring-your-own-storage.md",[3965],{"type":61,"value":3966},"Video SDK Bring Your Own Storage",{"type":61,"value":3968},": configure Video SDK cloud recordings to write directly to your own S3 bucket.",{"type":55,"tag":101,"props":3970,"children":3971},{},[3972,3978],{"type":55,"tag":1901,"props":3973,"children":3975},{"href":3974},"use-cases\u002Fcustomer-support-cobrowsing.md",[3976],{"type":61,"value":3977},"Customer Support Cobrowsing",{"type":61,"value":3979},": implement customer-agent collaborative browsing support flows.",{"type":55,"tag":101,"props":3981,"children":3982},{},[3983,3989],{"type":55,"tag":1901,"props":3984,"children":3986},{"href":3985},"use-cases\u002Fembed-meetings.md",[3987],{"type":61,"value":3988},"Embed Meetings",{"type":61,"value":3990},": embed Zoom meeting experience into your app.",{"type":55,"tag":101,"props":3992,"children":3993},{},[3994,4000],{"type":55,"tag":1901,"props":3995,"children":3997},{"href":3996},"use-cases\u002Fform-completion-assistant.md",[3998],{"type":61,"value":3999},"Form Completion Assistant",{"type":61,"value":4001},": build guided flows for form filling and completion assistance.",{"type":55,"tag":101,"props":4003,"children":4004},{},[4005,4011],{"type":55,"tag":1901,"props":4006,"children":4008},{"href":4007},"use-cases\u002Fhd-video-resolution.md",[4009],{"type":61,"value":4010},"HD Video Resolution",{"type":61,"value":4012},": enable and troubleshoot high-definition video requirements.",{"type":55,"tag":101,"props":4014,"children":4015},{},[4016,4020],{"type":55,"tag":1901,"props":4017,"children":4018},{"href":3244},[4019],{"type":61,"value":3247},{"type":61,"value":4021},": build distributed meeting creation and event processing with concrete fallback patterns.",{"type":55,"tag":101,"props":4023,"children":4024},{},[4025,4029],{"type":55,"tag":1901,"props":4026,"children":4027},{"href":3569},[4028],{"type":61,"value":3572},{"type":61,"value":4030},": use Zoom Apps Layers APIs for custom in-meeting visuals.",{"type":55,"tag":101,"props":4032,"children":4033},{},[4034,4038],{"type":55,"tag":1901,"props":4035,"children":4036},{"href":3365},[4037],{"type":61,"value":3368},{"type":61,"value":4039},": build Zoom Apps that run directly inside meeting and webinar contexts.",{"type":55,"tag":101,"props":4041,"children":4042},{},[4043,4049],{"type":55,"tag":1901,"props":4044,"children":4046},{"href":4045},"use-cases\u002Fmarketplace-publishing.md",[4047],{"type":61,"value":4048},"Marketplace Publishing",{"type":61,"value":4050},": prepare and ship a Zoom app through Marketplace review.",{"type":55,"tag":101,"props":4052,"children":4053},{},[4054,4058],{"type":55,"tag":1901,"props":4055,"children":4056},{"href":3184},[4057],{"type":61,"value":3187},{"type":61,"value":4059},": create, update, and manage meetings programmatically.",{"type":55,"tag":101,"props":4061,"children":4062},{},[4063,4067],{"type":55,"tag":1901,"props":4064,"children":4065},{"href":3208},[4066],{"type":61,"value":3211},{"type":61,"value":4068},": build bots for meeting join, capture, and real-time analysis.",{"type":55,"tag":101,"props":4070,"children":4071},{},[4072,4076],{"type":55,"tag":1901,"props":4073,"children":4074},{"href":3425},[4075],{"type":61,"value":3428},{"type":61,"value":4077},": standardize Android, iOS, macOS, and Unreal Meeting SDK delivery with shared auth and version controls.",{"type":55,"tag":101,"props":4079,"children":4080},{},[4081,4085],{"type":55,"tag":1901,"props":4082,"children":4083},{"href":3451},[4084],{"type":61,"value":3454},{"type":61,"value":4086},": standardize Android, iOS, macOS, and Unity Video SDK delivery with shared auth and version controls.",{"type":55,"tag":101,"props":4088,"children":4089},{},[4090,4096],{"type":55,"tag":1901,"props":4091,"children":4093},{"href":4092},"use-cases\u002Fmeeting-details-with-events.md",[4094],{"type":61,"value":4095},"Meeting Details with Events",{"type":61,"value":4097},": combine REST retrieval with webhook event streams.",{"type":55,"tag":101,"props":4099,"children":4100},{},[4101,4107],{"type":55,"tag":1901,"props":4102,"children":4104},{"href":4103},"use-cases\u002Fminutes-calculation.md",[4105],{"type":61,"value":4106},"Minutes Calculation",{"type":61,"value":4108},": compute usage and minute metrics across meetings\u002Fsessions.",{"type":55,"tag":101,"props":4110,"children":4111},{},[4112,4118],{"type":55,"tag":1901,"props":4113,"children":4115},{"href":4114},"use-cases\u002Fprebuilt-video-ui.md",[4116],{"type":61,"value":4117},"Prebuilt Video UI",{"type":61,"value":4119},": use UI Toolkit for faster Video SDK-based UI delivery.",{"type":55,"tag":101,"props":4121,"children":4122},{},[4123,4129],{"type":55,"tag":1901,"props":4124,"children":4126},{"href":4125},"use-cases\u002Fqss-monitoring.md",[4127],{"type":61,"value":4128},"QSS Monitoring",{"type":61,"value":4130},": monitor Zoom quality statistics and performance indicators.",{"type":55,"tag":101,"props":4132,"children":4133},{},[4134,4140],{"type":55,"tag":1901,"props":4135,"children":4137},{"href":4136},"use-cases\u002Fraw-recording.md",[4138],{"type":61,"value":4139},"Raw Recording",{"type":61,"value":4141},": capture raw streams for custom recording and processing pipelines.",{"type":55,"tag":101,"props":4143,"children":4144},{},[4145,4149],{"type":55,"tag":1901,"props":4146,"children":4147},{"href":3476},[4148],{"type":61,"value":3479},{"type":61,"value":4150},": embed meetings in an Electron desktop application.",{"type":55,"tag":101,"props":4152,"children":4153},{},[4154,4158],{"type":55,"tag":1901,"props":4155,"children":4156},{"href":3507},[4157],{"type":61,"value":3510},{"type":61,"value":4159},": build Video SDK sessions in Flutter mobile apps.",{"type":55,"tag":101,"props":4161,"children":4162},{},[4163,4167],{"type":55,"tag":1901,"props":4164,"children":4165},{"href":3394},[4166],{"type":61,"value":3397},{"type":61,"value":4168},": embed Meeting SDK into React Native apps.",{"type":55,"tag":101,"props":4170,"children":4171},{},[4172,4176],{"type":55,"tag":1901,"props":4173,"children":4174},{"href":3538},[4175],{"type":61,"value":3541},{"type":61,"value":4177},": build custom video sessions in React Native.",{"type":55,"tag":101,"props":4179,"children":4180},{},[4181,4185],{"type":55,"tag":1901,"props":4182,"children":4183},{"href":3336},[4184],{"type":61,"value":3339},{"type":61,"value":4186},": consume live media\u002Ftranscript streams via RTMS.",{"type":55,"tag":101,"props":4188,"children":4189},{},[4190,4194],{"type":55,"tag":1901,"props":4191,"children":4192},{"href":3307},[4193],{"type":61,"value":3310},{"type":61,"value":4195},": automate recording retrieval and storage pipelines.",{"type":55,"tag":101,"props":4197,"children":4198},{},[4199,4203],{"type":55,"tag":1901,"props":4200,"children":4201},{"href":3278},[4202],{"type":61,"value":3281},{"type":61,"value":4204},": manage post-meeting recordings and transcript workflows.",{"type":55,"tag":101,"props":4206,"children":4207},{},[4208,4214],{"type":55,"tag":1901,"props":4209,"children":4211},{"href":4210},"use-cases\u002Fretrieve-meeting-and-subscribe-events.md",[4212],{"type":61,"value":4213},"Retrieve Meeting and Subscribe Events",{"type":61,"value":4215},": join REST meeting fetch with event subscriptions.",{"type":55,"tag":101,"props":4217,"children":4218},{},[4219,4225],{"type":55,"tag":1901,"props":4220,"children":4222},{"href":4221},"use-cases\u002Fsaas-app-oauth-integration.md",[4223],{"type":61,"value":4224},"SaaS App OAuth Integration",{"type":61,"value":4226},": implement user-level OAuth in multi-tenant SaaS apps.",{"type":55,"tag":101,"props":4228,"children":4229},{},[4230,4236],{"type":55,"tag":1901,"props":4231,"children":4233},{"href":4232},"use-cases\u002Fsdk-size-optimization.md",[4234],{"type":61,"value":4235},"SDK Size Optimization",{"type":61,"value":4237},": reduce bundle\u002Fruntime footprint for SDK-based apps.",{"type":55,"tag":101,"props":4239,"children":4240},{},[4241,4247],{"type":55,"tag":1901,"props":4242,"children":4244},{"href":4243},"use-cases\u002Fsdk-wrappers-gui.md",[4245],{"type":61,"value":4246},"SDK Wrappers and GUI",{"type":61,"value":4248},": evaluate wrapper patterns and GUI frameworks around SDKs.",{"type":55,"tag":101,"props":4250,"children":4251},{},[4252,4258],{"type":55,"tag":1901,"props":4253,"children":4255},{"href":4254},"use-cases\u002Fteam-chat-llm-bot.md",[4256],{"type":61,"value":4257},"Team Chat LLM Bot",{"type":61,"value":4259},": build a Team Chat bot with LLM-powered responses.",{"type":55,"tag":101,"props":4261,"children":4262},{},[4263,4269],{"type":55,"tag":1901,"props":4264,"children":4266},{"href":4265},"use-cases\u002Ftesting-development.md",[4267],{"type":61,"value":4268},"Testing and Development",{"type":61,"value":4270},": local testing patterns, mocks, and safe development loops.",{"type":55,"tag":101,"props":4272,"children":4273},{},[4274,4280],{"type":55,"tag":1901,"props":4275,"children":4277},{"href":4276},"use-cases\u002Ftoken-and-scope-troubleshooting.md",[4278],{"type":61,"value":4279},"Token and Scope Troubleshooting",{"type":61,"value":4281},": debug OAuth scope and token mismatch issues.",{"type":55,"tag":101,"props":4283,"children":4284},{},[4285,4291],{"type":55,"tag":1901,"props":4286,"children":4288},{"href":4287},"use-cases\u002Ftranscription-bot-linux.md",[4289],{"type":61,"value":4290},"Transcription Bot (Linux)",{"type":61,"value":4292},": run Linux meeting bots for live transcription workloads.",{"type":55,"tag":101,"props":4294,"children":4295},{},[4296,4302],{"type":55,"tag":1901,"props":4297,"children":4299},{"href":4298},"use-cases\u002Fusage-reporting-analytics.md",[4300],{"type":61,"value":4301},"Usage Reporting and Analytics",{"type":61,"value":4303},": collect and analyze usage\u002Freporting data.",{"type":55,"tag":101,"props":4305,"children":4306},{},[4307,4313],{"type":55,"tag":1901,"props":4308,"children":4310},{"href":4309},"use-cases\u002Fuser-and-meeting-creation.md",[4311],{"type":61,"value":4312},"User and Meeting Creation",{"type":61,"value":4314},": provision users and schedule meetings in one flow.",{"type":55,"tag":101,"props":4316,"children":4317},{},[4318,4324],{"type":55,"tag":1901,"props":4319,"children":4321},{"href":4320},"use-cases\u002Fweb-sdk-embedding.md",[4322],{"type":61,"value":4323},"Web SDK Embedding",{"type":61,"value":4325},": embed meeting experiences in browser-based web apps.",{"type":55,"tag":101,"props":4327,"children":4328},{},[4329,4335],{"type":55,"tag":1901,"props":4330,"children":4332},{"href":4331},"use-cases\u002Fserver-to-server-oauth-with-webhooks.md",[4333],{"type":61,"value":4334},"Server-to-Server OAuth with Webhooks",{"type":61,"value":4336},": combine account OAuth with event-driven backend processing.",{"type":55,"tag":101,"props":4338,"children":4339},{},[4340,4346,4348,4353],{"type":55,"tag":1901,"props":4341,"children":4343},{"href":4342},"use-cases\u002Fmeeting-links-vs-embedding.md",[4344],{"type":61,"value":4345},"Meeting Links vs Embedding",{"type":61,"value":4347},": choose between ",{"type":55,"tag":77,"props":4349,"children":4351},{"className":4350},[],[4352],{"type":61,"value":2512},{"type":61,"value":4354}," distribution and SDK embedding.",{"type":55,"tag":101,"props":4356,"children":4357},{},[4358,4364],{"type":55,"tag":1901,"props":4359,"children":4361},{"href":4360},"use-cases\u002Fenterprise-app-deployment.md",[4362],{"type":61,"value":4363},"Enterprise App Deployment",{"type":61,"value":4365},": deploy, govern, and operate Zoom integrations at enterprise scale.",{"type":55,"tag":70,"props":4367,"children":4369},{"id":4368},"prerequisites",[4370],{"type":61,"value":4371},"Prerequisites",{"type":55,"tag":97,"props":4373,"children":4374},{},[4375,4380,4392],{"type":55,"tag":101,"props":4376,"children":4377},{},[4378],{"type":61,"value":4379},"Zoom account (Pro, Business, or Enterprise)",{"type":55,"tag":101,"props":4381,"children":4382},{},[4383,4385],{"type":61,"value":4384},"App created in ",{"type":55,"tag":1901,"props":4386,"children":4389},{"href":4387,"rel":4388},"https:\u002F\u002Fmarketplace.zoom.us\u002F",[2782],[4390],{"type":61,"value":4391},"Zoom App Marketplace",{"type":55,"tag":101,"props":4393,"children":4394},{},[4395],{"type":61,"value":4396},"OAuth credentials (Client ID and Secret)",{"type":55,"tag":70,"props":4398,"children":4400},{"id":4399},"references",[4401],{"type":61,"value":4402},"References",{"type":55,"tag":1860,"props":4404,"children":4405},{},[4406],{"type":55,"tag":101,"props":4407,"children":4408},{},[4409],{"type":55,"tag":1901,"props":4410,"children":4412},{"href":4411},"references\u002Fknown-limitations.md",[4413],{"type":61,"value":4414},"Known Limitations & Quirks",{"type":55,"tag":70,"props":4416,"children":4418},{"id":4417},"quick-start",[4419],{"type":61,"value":4420},"Quick Start",{"type":55,"tag":97,"props":4422,"children":4423},{},[4424,4435,4452,4463,4468],{"type":55,"tag":101,"props":4425,"children":4426},{},[4427,4429],{"type":61,"value":4428},"Go to ",{"type":55,"tag":1901,"props":4430,"children":4432},{"href":4387,"rel":4431},[2782],[4433],{"type":61,"value":4434},"marketplace.zoom.us",{"type":55,"tag":101,"props":4436,"children":4437},{},[4438,4440,4445,4447],{"type":61,"value":4439},"Click ",{"type":55,"tag":1953,"props":4441,"children":4442},{},[4443],{"type":61,"value":4444},"Develop",{"type":61,"value":4446}," → ",{"type":55,"tag":1953,"props":4448,"children":4449},{},[4450],{"type":61,"value":4451},"Build App",{"type":55,"tag":101,"props":4453,"children":4454},{},[4455,4457,4462],{"type":61,"value":4456},"Select app type (see ",{"type":55,"tag":1901,"props":4458,"children":4460},{"href":4459},"references\u002Fapp-types.md",[4461],{"type":61,"value":4459},{"type":61,"value":395},{"type":55,"tag":101,"props":4464,"children":4465},{},[4466],{"type":61,"value":4467},"Configure OAuth and scopes",{"type":55,"tag":101,"props":4469,"children":4470},{},[4471],{"type":61,"value":4472},"Copy credentials to your application",{"type":55,"tag":70,"props":4474,"children":4476},{"id":4475},"detailed-references",[4477],{"type":61,"value":4478},"Detailed References",{"type":55,"tag":1860,"props":4480,"children":4481},{},[4482,4495,4507,4520,4533,4546,4559,4571,4584,4596,4609],{"type":55,"tag":101,"props":4483,"children":4484},{},[4485,4493],{"type":55,"tag":1953,"props":4486,"children":4487},{},[4488],{"type":55,"tag":1901,"props":4489,"children":4491},{"href":4490},"references\u002Fauthentication.md",[4492],{"type":61,"value":4490},{"type":61,"value":4494}," - OAuth 2.0, S2S OAuth, JWT patterns",{"type":55,"tag":101,"props":4496,"children":4497},{},[4498,4505],{"type":55,"tag":1953,"props":4499,"children":4500},{},[4501],{"type":55,"tag":1901,"props":4502,"children":4503},{"href":4459},[4504],{"type":61,"value":4459},{"type":61,"value":4506}," - Decision guide for app types",{"type":55,"tag":101,"props":4508,"children":4509},{},[4510,4518],{"type":55,"tag":1953,"props":4511,"children":4512},{},[4513],{"type":55,"tag":1901,"props":4514,"children":4516},{"href":4515},"references\u002Fscopes.md",[4517],{"type":61,"value":4515},{"type":61,"value":4519}," - OAuth scopes reference",{"type":55,"tag":101,"props":4521,"children":4522},{},[4523,4531],{"type":55,"tag":1953,"props":4524,"children":4525},{},[4526],{"type":55,"tag":1901,"props":4527,"children":4529},{"href":4528},"references\u002Fmarketplace.md",[4530],{"type":61,"value":4528},{"type":61,"value":4532}," - Marketplace portal navigation",{"type":55,"tag":101,"props":4534,"children":4535},{},[4536,4544],{"type":55,"tag":1953,"props":4537,"children":4538},{},[4539],{"type":55,"tag":1901,"props":4540,"children":4542},{"href":4541},"references\u002Fquery-routing-playbook.md",[4543],{"type":61,"value":4541},{"type":61,"value":4545}," - Route complex queries to the right specialized skills",{"type":55,"tag":101,"props":4547,"children":4548},{},[4549,4557],{"type":55,"tag":1953,"props":4550,"children":4551},{},[4552],{"type":55,"tag":1901,"props":4553,"children":4555},{"href":4554},"references\u002Finterview-answer-routing.md",[4556],{"type":61,"value":4554},{"type":61,"value":4558}," - Short interview-ready answer pattern for zoom-general routing",{"type":55,"tag":101,"props":4560,"children":4561},{},[4562,4569],{"type":55,"tag":1953,"props":4563,"children":4564},{},[4565],{"type":55,"tag":1901,"props":4566,"children":4567},{"href":1903},[4568],{"type":61,"value":1903},{"type":61,"value":4570}," - Concrete TypeScript query classification and skill handoff contract",{"type":55,"tag":101,"props":4572,"children":4573},{},[4574,4582],{"type":55,"tag":1953,"props":4575,"children":4576},{},[4577],{"type":55,"tag":1901,"props":4578,"children":4580},{"href":4579},"references\u002Fautomatic-skill-chaining-rest-webhooks.md",[4581],{"type":61,"value":4579},{"type":61,"value":4583}," - Executable process for REST + webhook chained workflows",{"type":55,"tag":101,"props":4585,"children":4586},{},[4587,4594],{"type":55,"tag":1953,"props":4588,"children":4589},{},[4590],{"type":55,"tag":1901,"props":4591,"children":4592},{"href":3056},[4593],{"type":61,"value":3056},{"type":61,"value":4595}," - Concrete design for meeting creation + webhook updates + OAuth token refresh",{"type":55,"tag":101,"props":4597,"children":4598},{},[4599,4607],{"type":55,"tag":1953,"props":4600,"children":4601},{},[4602],{"type":55,"tag":1901,"props":4603,"children":4605},{"href":4604},"references\u002Fdistributed-meeting-fallback-architecture.md",[4606],{"type":61,"value":4604},{"type":61,"value":4608}," - High-volume distributed architecture with retries, circuit breakers, and reconciliation fallbacks",{"type":55,"tag":101,"props":4610,"children":4611},{},[4612,4620],{"type":55,"tag":1953,"props":4613,"children":4614},{},[4615],{"type":55,"tag":1901,"props":4616,"children":4618},{"href":4617},"references\u002Fcommunity-repos.md",[4619],{"type":61,"value":4617},{"type":61,"value":4621}," - Curated official Zoom sample repositories by product",{"type":55,"tag":70,"props":4623,"children":4625},{"id":4624},"sdk-maintenance",[4626],{"type":61,"value":4627},"SDK Maintenance",{"type":55,"tag":1860,"props":4629,"children":4630},{},[4631,4644,4657],{"type":55,"tag":101,"props":4632,"children":4633},{},[4634,4642],{"type":55,"tag":1953,"props":4635,"children":4636},{},[4637],{"type":55,"tag":1901,"props":4638,"children":4640},{"href":4639},"references\u002Fsdk-upgrade-guide.md",[4641],{"type":61,"value":4639},{"type":61,"value":4643}," - Version policy, upgrade steps",{"type":55,"tag":101,"props":4645,"children":4646},{},[4647,4655],{"type":55,"tag":1953,"props":4648,"children":4649},{},[4650],{"type":55,"tag":1901,"props":4651,"children":4653},{"href":4652},"references\u002Fsdk-upgrade-workflow.md",[4654],{"type":61,"value":4652},{"type":61,"value":4656}," - Changelog + RSS, version-by-version reusable upgrade workflow",{"type":55,"tag":101,"props":4658,"children":4659},{},[4660,4668],{"type":55,"tag":1953,"props":4661,"children":4662},{},[4663],{"type":55,"tag":1901,"props":4664,"children":4666},{"href":4665},"references\u002Fsdk-logs-troubleshooting.md",[4667],{"type":61,"value":4665},{"type":61,"value":4669}," - Collecting SDK logs",{"type":55,"tag":70,"props":4671,"children":4673},{"id":4672},"resources",[4674],{"type":61,"value":4675},"Resources",{"type":55,"tag":1860,"props":4677,"children":4678},{},[4679,4695,4709],{"type":55,"tag":101,"props":4680,"children":4681},{},[4682,4687,4689],{"type":55,"tag":1953,"props":4683,"children":4684},{},[4685],{"type":61,"value":4686},"Official docs",{"type":61,"value":4688},": ",{"type":55,"tag":1901,"props":4690,"children":4693},{"href":4691,"rel":4692},"https:\u002F\u002Fdevelopers.zoom.us\u002F",[2782],[4694],{"type":61,"value":4691},{"type":55,"tag":101,"props":4696,"children":4697},{},[4698,4703,4704],{"type":55,"tag":1953,"props":4699,"children":4700},{},[4701],{"type":61,"value":4702},"Marketplace",{"type":61,"value":4688},{"type":55,"tag":1901,"props":4705,"children":4707},{"href":4387,"rel":4706},[2782],[4708],{"type":61,"value":4387},{"type":55,"tag":101,"props":4710,"children":4711},{},[4712,4717,4718],{"type":55,"tag":1953,"props":4713,"children":4714},{},[4715],{"type":61,"value":4716},"Developer forum",{"type":61,"value":4688},{"type":55,"tag":1901,"props":4719,"children":4722},{"href":4720,"rel":4721},"https:\u002F\u002Fdevforum.zoom.us\u002F",[2782],[4723],{"type":61,"value":4720},{"type":55,"tag":70,"props":4725,"children":4727},{"id":4726},"environment-variables",[4728],{"type":61,"value":4729},"Environment Variables",{"type":55,"tag":1860,"props":4731,"children":4732},{},[4733],{"type":55,"tag":101,"props":4734,"children":4735},{},[4736,4738,4743,4745,4751],{"type":61,"value":4737},"See ",{"type":55,"tag":1901,"props":4739,"children":4741},{"href":4740},"references\u002Fenvironment-variables.md",[4742],{"type":61,"value":4740},{"type":61,"value":4744}," for standardized ",{"type":55,"tag":77,"props":4746,"children":4748},{"className":4747},[],[4749],{"type":61,"value":4750},".env",{"type":61,"value":4752}," keys and where to find each value.",{"type":55,"tag":70,"props":4754,"children":4756},{"id":4755},"operations",[4757],{"type":61,"value":4758},"Operations",{"type":55,"tag":1860,"props":4760,"children":4761},{},[4762],{"type":55,"tag":101,"props":4763,"children":4764},{},[4765,4770],{"type":55,"tag":1901,"props":4766,"children":4768},{"href":4767},"RUNBOOK.md",[4769],{"type":61,"value":4767},{"type":61,"value":4771}," - 5-minute preflight and debugging checklist.",{"type":55,"tag":4773,"props":4774,"children":4775},"style",{},[4776],{"type":61,"value":4777},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4779,"total":4963},[4780,4801,4815,4827,4846,4859,4880,4900,4914,4926,4934,4947],{"slug":4781,"name":4781,"fn":4782,"description":4783,"org":4784,"tags":4785,"stars":4798,"repoUrl":4799,"updatedAt":4800},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4786,4789,4792,4795],{"name":4787,"slug":4788,"type":16},"Creative","creative",{"name":4790,"slug":4791,"type":16},"Design","design",{"name":4793,"slug":4794,"type":16},"Generative Art","generative-art",{"name":4796,"slug":4797,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":4802,"name":4802,"fn":4803,"description":4804,"org":4805,"tags":4806,"stars":4798,"repoUrl":4799,"updatedAt":4814},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4807,4810,4811],{"name":4808,"slug":4809,"type":16},"Branding","branding",{"name":4790,"slug":4791,"type":16},{"name":4812,"slug":4813,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":4816,"name":4816,"fn":4817,"description":4818,"org":4819,"tags":4820,"stars":4798,"repoUrl":4799,"updatedAt":4826},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4821,4822,4823],{"name":4787,"slug":4788,"type":16},{"name":4790,"slug":4791,"type":16},{"name":4824,"slug":4825,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":4828,"name":4828,"fn":4829,"description":4830,"org":4831,"tags":4832,"stars":4798,"repoUrl":4799,"updatedAt":4845},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4833,4836,4837,4840,4842],{"name":4834,"slug":4835,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":4838,"slug":4839,"type":16},"Anthropic SDK","anthropic-sdk",{"name":4841,"slug":4828,"type":16},"Claude API",{"name":4843,"slug":4844,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":4847,"name":4847,"fn":4848,"description":4849,"org":4850,"tags":4851,"stars":4798,"repoUrl":4799,"updatedAt":4858},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4852,4855],{"name":4853,"slug":4854,"type":16},"Documentation","documentation",{"name":4856,"slug":4857,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":4860,"name":4860,"fn":4861,"description":4862,"org":4863,"tags":4864,"stars":4798,"repoUrl":4799,"updatedAt":4879},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4865,4868,4870,4873,4876],{"name":4866,"slug":4867,"type":16},"Documents","documents",{"name":4869,"slug":4860,"type":16},"DOCX",{"name":4871,"slug":4872,"type":16},"Office","office",{"name":4874,"slug":4875,"type":16},"Templates","templates",{"name":4877,"slug":4878,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":4881,"name":4881,"fn":4882,"description":4883,"org":4884,"tags":4885,"stars":4798,"repoUrl":4799,"updatedAt":4899},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4886,4887,4890,4893,4896],{"name":4790,"slug":4791,"type":16},{"name":4888,"slug":4889,"type":16},"Frontend","frontend",{"name":4891,"slug":4892,"type":16},"React","react",{"name":4894,"slug":4895,"type":16},"Tailwind CSS","tailwind-css",{"name":4897,"slug":4898,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":4901,"name":4901,"fn":4902,"description":4903,"org":4904,"tags":4905,"stars":4798,"repoUrl":4799,"updatedAt":4913},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4906,4909,4910],{"name":4907,"slug":4908,"type":16},"Communications","communications",{"name":4874,"slug":4875,"type":16},{"name":4911,"slug":4912,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":4915,"name":4915,"fn":4916,"description":4917,"org":4918,"tags":4919,"stars":4798,"repoUrl":4799,"updatedAt":4925},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4920,4921,4922,4923],{"name":4834,"slug":4835,"type":16},{"name":21,"slug":22,"type":16},{"name":4843,"slug":4844,"type":16},{"name":4924,"slug":1354,"type":16},"MCP","2026-04-06T17:56:10.357665",{"slug":4825,"name":4825,"fn":4927,"description":4928,"org":4929,"tags":4930,"stars":4798,"repoUrl":4799,"updatedAt":4933},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4931,4932],{"name":4866,"slug":4867,"type":16},{"name":4824,"slug":4825,"type":16},"2026-04-06T17:56:02.483316",{"slug":4935,"name":4935,"fn":4936,"description":4937,"org":4938,"tags":4939,"stars":4798,"repoUrl":4799,"updatedAt":4946},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4940,4943],{"name":4941,"slug":4942,"type":16},"PowerPoint","powerpoint",{"name":4944,"slug":4945,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":4948,"name":4948,"fn":4949,"description":4950,"org":4951,"tags":4952,"stars":4798,"repoUrl":4799,"updatedAt":4962},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4953,4954,4955,4958,4961],{"name":4834,"slug":4835,"type":16},{"name":4853,"slug":4854,"type":16},{"name":4956,"slug":4957,"type":16},"Evals","evals",{"name":4959,"slug":4960,"type":16},"Performance","performance",{"name":4856,"slug":4857,"type":16},"2026-04-19T06:45:40.804",490,{"items":4965,"total":5070},[4966,4980,4996,5012,5026,5045,5057],{"slug":4967,"name":4967,"fn":4968,"description":4969,"org":4970,"tags":4971,"stars":26,"repoUrl":27,"updatedAt":4979},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4972,4975,4976],{"name":4973,"slug":4974,"type":16},"Accessibility","accessibility",{"name":4790,"slug":4791,"type":16},{"name":4977,"slug":4978,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":4981,"name":4981,"fn":4982,"description":4983,"org":4984,"tags":4985,"stars":26,"repoUrl":27,"updatedAt":4995},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4986,4989,4992],{"name":4987,"slug":4988,"type":16},"CRM","crm",{"name":4990,"slug":4991,"type":16},"Research","research",{"name":4993,"slug":4994,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":4997,"name":4997,"fn":4998,"description":4999,"org":5000,"tags":5001,"stars":26,"repoUrl":27,"updatedAt":5011},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5002,5005,5008],{"name":5003,"slug":5004,"type":16},"Analytics","analytics",{"name":5006,"slug":5007,"type":16},"Data Analysis","data-analysis",{"name":5009,"slug":5010,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":15,"name":15,"fn":5013,"description":5014,"org":5015,"tags":5016,"stars":26,"repoUrl":27,"updatedAt":5025},"create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5017,5020,5021,5022],{"name":5018,"slug":5019,"type":16},"ADR","adr",{"name":14,"slug":15,"type":16},{"name":4853,"slug":4854,"type":16},{"name":5023,"slug":5024,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":5027,"name":5027,"fn":5028,"description":5029,"org":5030,"tags":5031,"stars":26,"repoUrl":27,"updatedAt":5044},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5032,5035,5038,5041],{"name":5033,"slug":5034,"type":16},"Audit","audit",{"name":5036,"slug":5037,"type":16},"Finance","finance",{"name":5039,"slug":5040,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":5042,"slug":5043,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":5046,"name":5046,"fn":5047,"description":5048,"org":5049,"tags":5050,"stars":26,"repoUrl":27,"updatedAt":5056},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5051,5052,5055],{"name":4808,"slug":4809,"type":16},{"name":5053,"slug":5054,"type":16},"Marketing","marketing",{"name":4911,"slug":4912,"type":16},"2026-04-06T17:58:19.548331",{"slug":5058,"name":5058,"fn":5059,"description":5060,"org":5061,"tags":5062,"stars":26,"repoUrl":27,"updatedAt":5069},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5063,5064,5065,5068],{"name":4808,"slug":4809,"type":16},{"name":4907,"slug":4908,"type":16},{"name":5066,"slug":5067,"type":16},"Content Creation","content-creation",{"name":4911,"slug":4912,"type":16},"2026-04-06T18:00:23.528956",200]