[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-build-zoom-meeting-sdk-app":3,"mdc--gu4yzn-key":37,"related-org-anthropic-build-zoom-meeting-sdk-app":3956,"related-repo-anthropic-build-zoom-meeting-sdk-app":4141},{"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},"build-zoom-meeting-sdk-app","build apps with Zoom Meeting SDK","Reference skill for Zoom Meeting SDK. Use after routing to a meeting-embed workflow when implementing real Zoom meeting joins, platform-specific SDK behavior, auth and join flows, waiting room issues, or meeting bot patterns.",{"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},"Meetings","meetings","tag",{"name":18,"slug":19,"type":16},"SDK","sdk",{"name":21,"slug":22,"type":16},"Zoom","zoom",{"name":24,"slug":25,"type":16},"Frontend","frontend",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:56:44.264642",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\u002Fmeeting-sdk","---\nname: build-zoom-meeting-sdk-app\ndescription: Reference skill for Zoom Meeting SDK. Use after routing to a meeting-embed workflow when implementing real Zoom meeting joins, platform-specific SDK behavior, auth and join flows, waiting room issues, or meeting bot patterns.\ntriggers:\n  - \"embed meeting\"\n  - \"embed zoom meeting\"\n  - \"integrate meeting\"\n  - \"meeting in web app\"\n  - \"meeting in website\"\n  - \"add zoom to website\"\n  - \"meeting sdk\"\n  - \"join meeting programmatically\"\n  - \"meeting bot\"\n  - \"bot joins meeting\"\n  - \"joining meeting timeout\"\n  - \"join meeting failed\"\n  - \"waiting room\"\n  - \"hide meeting info\"\n  - \"hide meeting password\"\n---\n\n# \u002Fbuild-zoom-meeting-sdk-app\n\nBackground reference for embedded Zoom meetings across web, mobile, desktop, and Linux bot environments. Prefer `build-zoom-meeting-app` or `build-zoom-bot` first, then route here for platform detail.\n\n# Zoom Meeting SDK\n\nEmbed the full Zoom meeting experience into web, mobile, desktop, and headless integrations.\n\n## Hard Routing Guardrail (Read First)\n\n- If the user asks to embed\u002Fjoin meetings inside their app UI, route to Meeting SDK implementation.\n- Do not switch to REST-only meeting link flow unless the user explicitly asks for meeting resource management or browser `join_url` links.\n- Meeting SDK join path requires SDK signature + SDK join call; REST `join_url` is not a Meeting SDK join payload.\n\n## Prerequisites\n\n- Zoom app with Meeting SDK credentials\n- SDK Key and Secret from Marketplace\n- Platform-specific development environment (Web, Android, iOS, macOS, Unreal, Electron, Linux, or Windows)\n\n> **Need help with OAuth or signatures?** See the **[zoom-oauth](..\u002Foauth\u002FSKILL.md)** skill for authentication flows.\n\n> **Need pre-join diagnostics on web?** Use **[probe-sdk](..\u002Fprobe-sdk\u002FSKILL.md)** before Meeting SDK init\u002Fjoin to gate low-readiness devices\u002Fnetworks.\n\n> **Start troubleshooting fast:** Use the **[5-Minute Runbook](RUNBOOK.md)** before deep debugging.\n\n## Quick Start (Web - Client View via CDN)\n\n```html\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Freact.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Freact-dom.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Fredux.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Fredux-thunk.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Flodash.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Fzoom-meeting-3.1.6.min.js\">\u003C\u002Fscript>\n\n\u003Cscript>\n\u002F\u002F CDN provides ZoomMtg (Client View - full page)\n\u002F\u002F For ZoomMtgEmbedded (Component View), use npm instead\n\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\nZoomMtg.init({\n  leaveUrl: window.location.href,\n  patchJsMedia: true,\n  disableCORP: !window.crossOriginIsolated,\n  success: function() {\n    ZoomMtg.join({\n      sdkKey: 'YOUR_SDK_KEY',\n      signature: 'YOUR_SIGNATURE',  \u002F\u002F Generate server-side!\n      meetingNumber: 'MEETING_NUMBER',\n      userName: 'User Name',\n      passWord: '',  \u002F\u002F Note: camelCase with capital W\n      success: function(res) { console.log('Joined'); },\n      error: function(err) { console.error(err); }\n    });\n  },\n  error: function(err) { console.error(err); }\n});\n\u003C\u002Fscript>\n```\n\n## Critical Notes (Web)\n\n### 1. CDN vs npm - Different APIs!\n\n| Distribution | Global Object | View Type | API Style |\n|--------------|---------------|-----------|-----------|\n| CDN (`zoom-meeting-{ver}.min.js`) | `ZoomMtg` | Client View (full-page) | Callbacks |\n| npm (`@zoom\u002Fmeetingsdk`) | `ZoomMtgEmbedded` | Component View (embeddable) | Promises |\n\n### 2. Backend Required for Production\n\n**Never expose SDK Secret in client code.** Generate signatures server-side:\n\n```javascript\n\u002F\u002F server.js (Node.js example)\nconst KJUR = require('jsrsasign');\n\napp.post('\u002Fapi\u002Fsignature', (req, res) => {\n  const { meetingNumber, role } = req.body;\n  const iat = Math.floor(Date.now() \u002F 1000) - 30;\n  const exp = iat + 60 * 60 * 2;\n  \n  const header = { alg: 'HS256', typ: 'JWT' };\n  const payload = {\n    sdkKey: process.env.ZOOM_SDK_KEY,\n    mn: String(meetingNumber).replace(\u002F\\D\u002Fg, ''),\n    role: parseInt(role, 10),\n    iat, exp, tokenExp: exp\n  };\n  \n  const signature = KJUR.jws.JWS.sign('HS256',\n    JSON.stringify(header),\n    JSON.stringify(payload),\n    process.env.ZOOM_SDK_SECRET\n  );\n  \n  res.json({ signature, sdkKey: process.env.ZOOM_SDK_KEY });\n});\n```\n\n### 3. CSS Conflicts - Avoid Global Resets\n\nGlobal `* { margin: 0; }` breaks Zoom's UI. Scope your styles:\n\n```css\n\u002F* BAD *\u002F\n* { margin: 0; padding: 0; }\n\n\u002F* GOOD *\u002F\n.your-app, .your-app * { box-sizing: border-box; }\n```\n\n### 4. Client View Toolbar Cropping Fix\n\nIf toolbar falls off screen, scale down the Zoom UI:\n\n```css\n#zmmtg-root {\n  position: fixed !important;\n  top: 0 !important;\n  left: 0 !important;\n  right: 0 !important;\n  bottom: 0 !important;\n  width: 100vw !important;\n  height: 100vh !important;\n  \u002F* Critical for SPAs (React\u002FNext\u002Fetc): ensure Zoom UI isn't behind your app shell\u002Foverlays. *\u002F\n  z-index: 9999 !important;\n  transform: scale(0.95) !important;\n  transform-origin: top center !important;\n}\n```\n\n### 5. Hide Your App When Meeting Starts\n\nClient View takes over full page. Hide your UI:\n\n```javascript\n\u002F\u002F In ZoomMtg.init success callback:\ndocument.documentElement.classList.add('meeting-active');\ndocument.body.classList.add('meeting-active');\n```\n\n```css\nbody.meeting-active .your-app { display: none !important; }\nbody.meeting-active { background: #000 !important; }\n```\n\n## UI Options (Web)\n\nMeeting SDK provides **Zoom's UI with customization options**:\n\n| View | Description |\n|------|-------------|\n| **Component View** | Extractable, customizable UI - embed meeting in a div |\n| **Client View** | Full-page Zoom UI experience |\n\n**Note**: Unlike Video SDK where you build the UI from scratch, Meeting SDK uses Zoom's UI as the base with customization on top.\n\n## Key Concepts\n\n| Concept | Description |\n|---------|-------------|\n| SDK Key\u002FSecret | Credentials from Marketplace |\n| Signature | JWT signed with SDK Secret |\n| Component View | Extractable, customizable UI (Web) |\n| Client View | Full-page Zoom UI (Web) |\n\n## Detailed References\n\n### Platform Guides\n- **[android\u002FSKILL.md](android\u002FSKILL.md)** - Android SDK (default\u002Fcustom UI, join\u002Fstart\u002Fauth lifecycle, mobile integration)\n- **[android\u002Freferences\u002Fandroid-reference-map.md](android\u002Freferences\u002Fandroid-reference-map.md)** - Android API surface map and drift watchpoints\n- **[ios\u002FSKILL.md](ios\u002FSKILL.md)** - iOS SDK (default\u002Fcustom UI, join\u002Fstart\u002Fauth lifecycle, mobile integration)\n- **[ios\u002Freferences\u002Fios-reference-map.md](ios\u002Freferences\u002Fios-reference-map.md)** - iOS API surface map and drift watchpoints\n- **[macos\u002FSKILL.md](macos\u002FSKILL.md)** - macOS SDK (desktop default\u002Fcustom UI, service controllers, host flows)\n- **[macos\u002Freferences\u002Fmacos-reference-map.md](macos\u002Freferences\u002Fmacos-reference-map.md)** - macOS API surface map and drift watchpoints\n- **[unreal\u002FSKILL.md](unreal\u002FSKILL.md)** - Unreal Engine wrapper (C++\u002FBlueprint wrapper behavior and SDK mapping)\n- **[unreal\u002Freferences\u002Funreal-reference-map.md](unreal\u002Freferences\u002Funreal-reference-map.md)** - Unreal wrapper reference map and version-lag notes\n- **[references\u002Fandroid.md](references\u002Fandroid.md)** - Android pointer doc for fast routing from broad Meeting SDK queries\n- **[references\u002Fios.md](references\u002Fios.md)** - iOS pointer doc for fast routing from broad Meeting SDK queries\n- **[references\u002Fmacos.md](references\u002Fmacos.md)** - macOS pointer doc for fast routing from broad Meeting SDK queries\n- **[references\u002Funreal.md](references\u002Funreal.md)** - Unreal pointer doc for fast routing from broad Meeting SDK queries\n- **[linux\u002FSKILL.md](linux\u002FSKILL.md)** - Linux SDK headless bot skill entrypoint\n- **[linux\u002Flinux.md](linux\u002Flinux.md)** - Linux SDK (C++ headless bots, raw media access)\n- **[linux\u002Freferences\u002Flinux-reference.md](linux\u002Freferences\u002Flinux-reference.md)** - Linux dependencies, Docker, troubleshooting\n- **[react-native\u002FSKILL.md](react-native\u002FSKILL.md)** - React Native SDK (iOS\u002FAndroid wrapper, join\u002Fstart flows, bridge setup)\n- **[react-native\u002FSKILL.md](react-native\u002FSKILL.md)** - React Native complete navigation\n- **[electron\u002FSKILL.md](electron\u002FSKILL.md)** - Electron SDK (desktop wrapper, auth\u002Fjoin flows, module controllers, raw data)\n- **[electron\u002FSKILL.md](electron\u002FSKILL.md)** - Electron complete navigation\n- **[windows\u002FSKILL.md](windows\u002FSKILL.md)** - Windows SDK (C++ desktop applications, raw media access)\n- **[windows\u002Freferences\u002Fwindows-reference.md](windows\u002Freferences\u002Fwindows-reference.md)** - Windows dependencies, Visual Studio setup, troubleshooting\n- **[web\u002Freferences\u002Fweb.md](web\u002Freferences\u002Fweb.md)** - Web SDK (Component + Client View)\n- **[web\u002Freferences\u002Fweb-tracking-id.md](web\u002Freferences\u002Fweb-tracking-id.md)** - Tracking ID configuration\n\n### Features\n- **[references\u002Fauthorization.md](references\u002Fauthorization.md)** - SDK JWT generation\n- **[references\u002Fbot-authentication.md](references\u002Fbot-authentication.md)** - ZAK vs OBF vs JWT tokens for bots\n- **[references\u002Fbreakout-rooms.md](references\u002Fbreakout-rooms.md)** - Programmatic breakout room management\n- **[references\u002Fai-companion.md](references\u002Fai-companion.md)** - AI Companion controls in meetings\n- **[references\u002Fwebinars.md](references\u002Fwebinars.md)** - Webinar SDK features\n- **[references\u002Fforum-top-questions.md](references\u002Fforum-top-questions.md)** - Common forum question patterns (what to cover)\n- **[references\u002Ftriage-intake.md](references\u002Ftriage-intake.md)** - What to ask first (turn vague reports into answers)\n- **[references\u002Fsignature-playbook.md](references\u002Fsignature-playbook.md)** - Signature\u002Froot-cause playbook\n- **[references\u002Fmultiple-meetings.md](references\u002Fmultiple-meetings.md)** - Joining multiple meetings \u002F multiple instances\n- **[references\u002Ftroubleshooting.md](references\u002Ftroubleshooting.md)** - Common issues and solutions\n\n## Sample Repositories\n\n### Official (by Zoom)\n\n| Type | Repository | Stars |\n|------|------------|-------|\n| Linux Headless | [meetingsdk-headless-linux-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-headless-linux-sample) | 4 |\n| Linux Raw Data | [meetingsdk-linux-raw-recording-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-linux-raw-recording-sample) | 0 |\n| Web | [meetingsdk-web-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web-sample) | 643 |\n| Web NPM | [meetingsdk-web](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web) | 324 |\n| React | [meetingsdk-react-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-react-sample) | 177 |\n| Auth | [meetingsdk-auth-endpoint-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample) | 124 |\n| Angular | [meetingsdk-angular-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-angular-sample) | 60 |\n| Vue.js | [meetingsdk-vuejs-sample](https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-vuejs-sample) | 42 |\n\n**Full list**: See [general\u002Freferences\u002Fcommunity-repos.md](..\u002Fgeneral\u002Freferences\u002Fcommunity-repos.md)\n\n## Resources\n\n- **Official docs**: https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\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",{"data":38,"body":55},{"name":4,"description":6,"triggers":39},[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],"embed meeting","embed zoom meeting","integrate meeting","meeting in web app","meeting in website","add zoom to website","meeting sdk","join meeting programmatically","meeting bot","bot joins meeting","joining meeting timeout","join meeting failed","waiting room","hide meeting info","hide meeting password",{"type":56,"children":57},"root",[58,66,89,95,100,107,142,148,166,193,217,241,247,1269,1275,1282,1387,1393,1403,2310,2316,2329,2469,2475,2480,2781,2787,2792,2922,3032,3038,3049,3103,3113,3119,3190,3196,3202,3502,3508,3641,3647,3653,3865,3881,3887,3921,3927,3950],{"type":59,"tag":60,"props":61,"children":62},"element","h1",{"id":4},[63],{"type":64,"value":65},"text","\u002Fbuild-zoom-meeting-sdk-app",{"type":59,"tag":67,"props":68,"children":69},"p",{},[70,72,79,81,87],{"type":64,"value":71},"Background reference for embedded Zoom meetings across web, mobile, desktop, and Linux bot environments. Prefer ",{"type":59,"tag":73,"props":74,"children":76},"code",{"className":75},[],[77],{"type":64,"value":78},"build-zoom-meeting-app",{"type":64,"value":80}," or ",{"type":59,"tag":73,"props":82,"children":84},{"className":83},[],[85],{"type":64,"value":86},"build-zoom-bot",{"type":64,"value":88}," first, then route here for platform detail.",{"type":59,"tag":60,"props":90,"children":92},{"id":91},"zoom-meeting-sdk",[93],{"type":64,"value":94},"Zoom Meeting SDK",{"type":59,"tag":67,"props":96,"children":97},{},[98],{"type":64,"value":99},"Embed the full Zoom meeting experience into web, mobile, desktop, and headless integrations.",{"type":59,"tag":101,"props":102,"children":104},"h2",{"id":103},"hard-routing-guardrail-read-first",[105],{"type":64,"value":106},"Hard Routing Guardrail (Read First)",{"type":59,"tag":108,"props":109,"children":110},"ul",{},[111,117,130],{"type":59,"tag":112,"props":113,"children":114},"li",{},[115],{"type":64,"value":116},"If the user asks to embed\u002Fjoin meetings inside their app UI, route to Meeting SDK implementation.",{"type":59,"tag":112,"props":118,"children":119},{},[120,122,128],{"type":64,"value":121},"Do not switch to REST-only meeting link flow unless the user explicitly asks for meeting resource management or browser ",{"type":59,"tag":73,"props":123,"children":125},{"className":124},[],[126],{"type":64,"value":127},"join_url",{"type":64,"value":129}," links.",{"type":59,"tag":112,"props":131,"children":132},{},[133,135,140],{"type":64,"value":134},"Meeting SDK join path requires SDK signature + SDK join call; REST ",{"type":59,"tag":73,"props":136,"children":138},{"className":137},[],[139],{"type":64,"value":127},{"type":64,"value":141}," is not a Meeting SDK join payload.",{"type":59,"tag":101,"props":143,"children":145},{"id":144},"prerequisites",[146],{"type":64,"value":147},"Prerequisites",{"type":59,"tag":108,"props":149,"children":150},{},[151,156,161],{"type":59,"tag":112,"props":152,"children":153},{},[154],{"type":64,"value":155},"Zoom app with Meeting SDK credentials",{"type":59,"tag":112,"props":157,"children":158},{},[159],{"type":64,"value":160},"SDK Key and Secret from Marketplace",{"type":59,"tag":112,"props":162,"children":163},{},[164],{"type":64,"value":165},"Platform-specific development environment (Web, Android, iOS, macOS, Unreal, Electron, Linux, or Windows)",{"type":59,"tag":167,"props":168,"children":169},"blockquote",{},[170],{"type":59,"tag":67,"props":171,"children":172},{},[173,179,181,191],{"type":59,"tag":174,"props":175,"children":176},"strong",{},[177],{"type":64,"value":178},"Need help with OAuth or signatures?",{"type":64,"value":180}," See the ",{"type":59,"tag":174,"props":182,"children":183},{},[184],{"type":59,"tag":185,"props":186,"children":188},"a",{"href":187},"..\u002Foauth\u002FSKILL.md",[189],{"type":64,"value":190},"zoom-oauth",{"type":64,"value":192}," skill for authentication flows.",{"type":59,"tag":167,"props":194,"children":195},{},[196],{"type":59,"tag":67,"props":197,"children":198},{},[199,204,206,215],{"type":59,"tag":174,"props":200,"children":201},{},[202],{"type":64,"value":203},"Need pre-join diagnostics on web?",{"type":64,"value":205}," Use ",{"type":59,"tag":174,"props":207,"children":208},{},[209],{"type":59,"tag":185,"props":210,"children":212},{"href":211},"..\u002Fprobe-sdk\u002FSKILL.md",[213],{"type":64,"value":214},"probe-sdk",{"type":64,"value":216}," before Meeting SDK init\u002Fjoin to gate low-readiness devices\u002Fnetworks.",{"type":59,"tag":167,"props":218,"children":219},{},[220],{"type":59,"tag":67,"props":221,"children":222},{},[223,228,230,239],{"type":59,"tag":174,"props":224,"children":225},{},[226],{"type":64,"value":227},"Start troubleshooting fast:",{"type":64,"value":229}," Use the ",{"type":59,"tag":174,"props":231,"children":232},{},[233],{"type":59,"tag":185,"props":234,"children":236},{"href":235},"RUNBOOK.md",[237],{"type":64,"value":238},"5-Minute Runbook",{"type":64,"value":240}," before deep debugging.",{"type":59,"tag":101,"props":242,"children":244},{"id":243},"quick-start-web-client-view-via-cdn",[245],{"type":64,"value":246},"Quick Start (Web - Client View via CDN)",{"type":59,"tag":248,"props":249,"children":254},"pre",{"className":250,"code":251,"language":252,"meta":253,"style":253},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Freact.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Freact-dom.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Fredux.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Fredux-thunk.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Flodash.min.js\">\u003C\u002Fscript>\n\u003Cscript src=\"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Fzoom-meeting-3.1.6.min.js\">\u003C\u002Fscript>\n\n\u003Cscript>\n\u002F\u002F CDN provides ZoomMtg (Client View - full page)\n\u002F\u002F For ZoomMtgEmbedded (Component View), use npm instead\n\nZoomMtg.preLoadWasm();\nZoomMtg.prepareWebSDK();\n\nZoomMtg.init({\n  leaveUrl: window.location.href,\n  patchJsMedia: true,\n  disableCORP: !window.crossOriginIsolated,\n  success: function() {\n    ZoomMtg.join({\n      sdkKey: 'YOUR_SDK_KEY',\n      signature: 'YOUR_SIGNATURE',  \u002F\u002F Generate server-side!\n      meetingNumber: 'MEETING_NUMBER',\n      userName: 'User Name',\n      passWord: '',  \u002F\u002F Note: camelCase with capital W\n      success: function(res) { console.log('Joined'); },\n      error: function(err) { console.error(err); }\n    });\n  },\n  error: function(err) { console.error(err); }\n});\n\u003C\u002Fscript>\n","html","",[255],{"type":59,"tag":73,"props":256,"children":257},{"__ignoreMap":253},[258,316,361,406,451,496,541,551,567,577,586,594,625,650,658,685,727,750,786,813,839,871,907,937,967,994,1076,1144,1161,1170,1235,1252],{"type":59,"tag":259,"props":260,"children":263},"span",{"class":261,"line":262},"line",1,[264,270,276,282,287,292,298,302,307,311],{"type":59,"tag":259,"props":265,"children":267},{"style":266},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[268],{"type":64,"value":269},"\u003C",{"type":59,"tag":259,"props":271,"children":273},{"style":272},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[274],{"type":64,"value":275},"script",{"type":59,"tag":259,"props":277,"children":279},{"style":278},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[280],{"type":64,"value":281}," src",{"type":59,"tag":259,"props":283,"children":284},{"style":266},[285],{"type":64,"value":286},"=",{"type":59,"tag":259,"props":288,"children":289},{"style":266},[290],{"type":64,"value":291},"\"",{"type":59,"tag":259,"props":293,"children":295},{"style":294},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[296],{"type":64,"value":297},"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Freact.min.js",{"type":59,"tag":259,"props":299,"children":300},{"style":266},[301],{"type":64,"value":291},{"type":59,"tag":259,"props":303,"children":304},{"style":266},[305],{"type":64,"value":306},">\u003C\u002F",{"type":59,"tag":259,"props":308,"children":309},{"style":272},[310],{"type":64,"value":275},{"type":59,"tag":259,"props":312,"children":313},{"style":266},[314],{"type":64,"value":315},">\n",{"type":59,"tag":259,"props":317,"children":319},{"class":261,"line":318},2,[320,324,328,332,336,340,345,349,353,357],{"type":59,"tag":259,"props":321,"children":322},{"style":266},[323],{"type":64,"value":269},{"type":59,"tag":259,"props":325,"children":326},{"style":272},[327],{"type":64,"value":275},{"type":59,"tag":259,"props":329,"children":330},{"style":278},[331],{"type":64,"value":281},{"type":59,"tag":259,"props":333,"children":334},{"style":266},[335],{"type":64,"value":286},{"type":59,"tag":259,"props":337,"children":338},{"style":266},[339],{"type":64,"value":291},{"type":59,"tag":259,"props":341,"children":342},{"style":294},[343],{"type":64,"value":344},"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Freact-dom.min.js",{"type":59,"tag":259,"props":346,"children":347},{"style":266},[348],{"type":64,"value":291},{"type":59,"tag":259,"props":350,"children":351},{"style":266},[352],{"type":64,"value":306},{"type":59,"tag":259,"props":354,"children":355},{"style":272},[356],{"type":64,"value":275},{"type":59,"tag":259,"props":358,"children":359},{"style":266},[360],{"type":64,"value":315},{"type":59,"tag":259,"props":362,"children":364},{"class":261,"line":363},3,[365,369,373,377,381,385,390,394,398,402],{"type":59,"tag":259,"props":366,"children":367},{"style":266},[368],{"type":64,"value":269},{"type":59,"tag":259,"props":370,"children":371},{"style":272},[372],{"type":64,"value":275},{"type":59,"tag":259,"props":374,"children":375},{"style":278},[376],{"type":64,"value":281},{"type":59,"tag":259,"props":378,"children":379},{"style":266},[380],{"type":64,"value":286},{"type":59,"tag":259,"props":382,"children":383},{"style":266},[384],{"type":64,"value":291},{"type":59,"tag":259,"props":386,"children":387},{"style":294},[388],{"type":64,"value":389},"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Fredux.min.js",{"type":59,"tag":259,"props":391,"children":392},{"style":266},[393],{"type":64,"value":291},{"type":59,"tag":259,"props":395,"children":396},{"style":266},[397],{"type":64,"value":306},{"type":59,"tag":259,"props":399,"children":400},{"style":272},[401],{"type":64,"value":275},{"type":59,"tag":259,"props":403,"children":404},{"style":266},[405],{"type":64,"value":315},{"type":59,"tag":259,"props":407,"children":409},{"class":261,"line":408},4,[410,414,418,422,426,430,435,439,443,447],{"type":59,"tag":259,"props":411,"children":412},{"style":266},[413],{"type":64,"value":269},{"type":59,"tag":259,"props":415,"children":416},{"style":272},[417],{"type":64,"value":275},{"type":59,"tag":259,"props":419,"children":420},{"style":278},[421],{"type":64,"value":281},{"type":59,"tag":259,"props":423,"children":424},{"style":266},[425],{"type":64,"value":286},{"type":59,"tag":259,"props":427,"children":428},{"style":266},[429],{"type":64,"value":291},{"type":59,"tag":259,"props":431,"children":432},{"style":294},[433],{"type":64,"value":434},"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Fredux-thunk.min.js",{"type":59,"tag":259,"props":436,"children":437},{"style":266},[438],{"type":64,"value":291},{"type":59,"tag":259,"props":440,"children":441},{"style":266},[442],{"type":64,"value":306},{"type":59,"tag":259,"props":444,"children":445},{"style":272},[446],{"type":64,"value":275},{"type":59,"tag":259,"props":448,"children":449},{"style":266},[450],{"type":64,"value":315},{"type":59,"tag":259,"props":452,"children":454},{"class":261,"line":453},5,[455,459,463,467,471,475,480,484,488,492],{"type":59,"tag":259,"props":456,"children":457},{"style":266},[458],{"type":64,"value":269},{"type":59,"tag":259,"props":460,"children":461},{"style":272},[462],{"type":64,"value":275},{"type":59,"tag":259,"props":464,"children":465},{"style":278},[466],{"type":64,"value":281},{"type":59,"tag":259,"props":468,"children":469},{"style":266},[470],{"type":64,"value":286},{"type":59,"tag":259,"props":472,"children":473},{"style":266},[474],{"type":64,"value":291},{"type":59,"tag":259,"props":476,"children":477},{"style":294},[478],{"type":64,"value":479},"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Flib\u002Fvendor\u002Flodash.min.js",{"type":59,"tag":259,"props":481,"children":482},{"style":266},[483],{"type":64,"value":291},{"type":59,"tag":259,"props":485,"children":486},{"style":266},[487],{"type":64,"value":306},{"type":59,"tag":259,"props":489,"children":490},{"style":272},[491],{"type":64,"value":275},{"type":59,"tag":259,"props":493,"children":494},{"style":266},[495],{"type":64,"value":315},{"type":59,"tag":259,"props":497,"children":499},{"class":261,"line":498},6,[500,504,508,512,516,520,525,529,533,537],{"type":59,"tag":259,"props":501,"children":502},{"style":266},[503],{"type":64,"value":269},{"type":59,"tag":259,"props":505,"children":506},{"style":272},[507],{"type":64,"value":275},{"type":59,"tag":259,"props":509,"children":510},{"style":278},[511],{"type":64,"value":281},{"type":59,"tag":259,"props":513,"children":514},{"style":266},[515],{"type":64,"value":286},{"type":59,"tag":259,"props":517,"children":518},{"style":266},[519],{"type":64,"value":291},{"type":59,"tag":259,"props":521,"children":522},{"style":294},[523],{"type":64,"value":524},"https:\u002F\u002Fsource.zoom.us\u002F3.1.6\u002Fzoom-meeting-3.1.6.min.js",{"type":59,"tag":259,"props":526,"children":527},{"style":266},[528],{"type":64,"value":291},{"type":59,"tag":259,"props":530,"children":531},{"style":266},[532],{"type":64,"value":306},{"type":59,"tag":259,"props":534,"children":535},{"style":272},[536],{"type":64,"value":275},{"type":59,"tag":259,"props":538,"children":539},{"style":266},[540],{"type":64,"value":315},{"type":59,"tag":259,"props":542,"children":544},{"class":261,"line":543},7,[545],{"type":59,"tag":259,"props":546,"children":548},{"emptyLinePlaceholder":547},true,[549],{"type":64,"value":550},"\n",{"type":59,"tag":259,"props":552,"children":554},{"class":261,"line":553},8,[555,559,563],{"type":59,"tag":259,"props":556,"children":557},{"style":266},[558],{"type":64,"value":269},{"type":59,"tag":259,"props":560,"children":561},{"style":272},[562],{"type":64,"value":275},{"type":59,"tag":259,"props":564,"children":565},{"style":266},[566],{"type":64,"value":315},{"type":59,"tag":259,"props":568,"children":570},{"class":261,"line":569},9,[571],{"type":59,"tag":259,"props":572,"children":574},{"style":573},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[575],{"type":64,"value":576},"\u002F\u002F CDN provides ZoomMtg (Client View - full page)\n",{"type":59,"tag":259,"props":578,"children":580},{"class":261,"line":579},10,[581],{"type":59,"tag":259,"props":582,"children":583},{"style":573},[584],{"type":64,"value":585},"\u002F\u002F For ZoomMtgEmbedded (Component View), use npm instead\n",{"type":59,"tag":259,"props":587,"children":589},{"class":261,"line":588},11,[590],{"type":59,"tag":259,"props":591,"children":592},{"emptyLinePlaceholder":547},[593],{"type":64,"value":550},{"type":59,"tag":259,"props":595,"children":597},{"class":261,"line":596},12,[598,604,609,615,620],{"type":59,"tag":259,"props":599,"children":601},{"style":600},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[602],{"type":64,"value":603},"ZoomMtg",{"type":59,"tag":259,"props":605,"children":606},{"style":266},[607],{"type":64,"value":608},".",{"type":59,"tag":259,"props":610,"children":612},{"style":611},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[613],{"type":64,"value":614},"preLoadWasm",{"type":59,"tag":259,"props":616,"children":617},{"style":600},[618],{"type":64,"value":619},"()",{"type":59,"tag":259,"props":621,"children":622},{"style":266},[623],{"type":64,"value":624},";\n",{"type":59,"tag":259,"props":626,"children":628},{"class":261,"line":627},13,[629,633,637,642,646],{"type":59,"tag":259,"props":630,"children":631},{"style":600},[632],{"type":64,"value":603},{"type":59,"tag":259,"props":634,"children":635},{"style":266},[636],{"type":64,"value":608},{"type":59,"tag":259,"props":638,"children":639},{"style":611},[640],{"type":64,"value":641},"prepareWebSDK",{"type":59,"tag":259,"props":643,"children":644},{"style":600},[645],{"type":64,"value":619},{"type":59,"tag":259,"props":647,"children":648},{"style":266},[649],{"type":64,"value":624},{"type":59,"tag":259,"props":651,"children":653},{"class":261,"line":652},14,[654],{"type":59,"tag":259,"props":655,"children":656},{"emptyLinePlaceholder":547},[657],{"type":64,"value":550},{"type":59,"tag":259,"props":659,"children":661},{"class":261,"line":660},15,[662,666,670,675,680],{"type":59,"tag":259,"props":663,"children":664},{"style":600},[665],{"type":64,"value":603},{"type":59,"tag":259,"props":667,"children":668},{"style":266},[669],{"type":64,"value":608},{"type":59,"tag":259,"props":671,"children":672},{"style":611},[673],{"type":64,"value":674},"init",{"type":59,"tag":259,"props":676,"children":677},{"style":600},[678],{"type":64,"value":679},"(",{"type":59,"tag":259,"props":681,"children":682},{"style":266},[683],{"type":64,"value":684},"{\n",{"type":59,"tag":259,"props":686,"children":688},{"class":261,"line":687},16,[689,694,699,704,708,713,717,722],{"type":59,"tag":259,"props":690,"children":691},{"style":272},[692],{"type":64,"value":693},"  leaveUrl",{"type":59,"tag":259,"props":695,"children":696},{"style":266},[697],{"type":64,"value":698},":",{"type":59,"tag":259,"props":700,"children":701},{"style":600},[702],{"type":64,"value":703}," window",{"type":59,"tag":259,"props":705,"children":706},{"style":266},[707],{"type":64,"value":608},{"type":59,"tag":259,"props":709,"children":710},{"style":600},[711],{"type":64,"value":712},"location",{"type":59,"tag":259,"props":714,"children":715},{"style":266},[716],{"type":64,"value":608},{"type":59,"tag":259,"props":718,"children":719},{"style":600},[720],{"type":64,"value":721},"href",{"type":59,"tag":259,"props":723,"children":724},{"style":266},[725],{"type":64,"value":726},",\n",{"type":59,"tag":259,"props":728,"children":730},{"class":261,"line":729},17,[731,736,740,746],{"type":59,"tag":259,"props":732,"children":733},{"style":272},[734],{"type":64,"value":735},"  patchJsMedia",{"type":59,"tag":259,"props":737,"children":738},{"style":266},[739],{"type":64,"value":698},{"type":59,"tag":259,"props":741,"children":743},{"style":742},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[744],{"type":64,"value":745}," true",{"type":59,"tag":259,"props":747,"children":748},{"style":266},[749],{"type":64,"value":726},{"type":59,"tag":259,"props":751,"children":753},{"class":261,"line":752},18,[754,759,763,768,773,777,782],{"type":59,"tag":259,"props":755,"children":756},{"style":272},[757],{"type":64,"value":758},"  disableCORP",{"type":59,"tag":259,"props":760,"children":761},{"style":266},[762],{"type":64,"value":698},{"type":59,"tag":259,"props":764,"children":765},{"style":266},[766],{"type":64,"value":767}," !",{"type":59,"tag":259,"props":769,"children":770},{"style":600},[771],{"type":64,"value":772},"window",{"type":59,"tag":259,"props":774,"children":775},{"style":266},[776],{"type":64,"value":608},{"type":59,"tag":259,"props":778,"children":779},{"style":600},[780],{"type":64,"value":781},"crossOriginIsolated",{"type":59,"tag":259,"props":783,"children":784},{"style":266},[785],{"type":64,"value":726},{"type":59,"tag":259,"props":787,"children":789},{"class":261,"line":788},19,[790,795,799,804,808],{"type":59,"tag":259,"props":791,"children":792},{"style":611},[793],{"type":64,"value":794},"  success",{"type":59,"tag":259,"props":796,"children":797},{"style":266},[798],{"type":64,"value":698},{"type":59,"tag":259,"props":800,"children":801},{"style":278},[802],{"type":64,"value":803}," function",{"type":59,"tag":259,"props":805,"children":806},{"style":266},[807],{"type":64,"value":619},{"type":59,"tag":259,"props":809,"children":810},{"style":266},[811],{"type":64,"value":812}," {\n",{"type":59,"tag":259,"props":814,"children":816},{"class":261,"line":815},20,[817,822,826,831,835],{"type":59,"tag":259,"props":818,"children":819},{"style":600},[820],{"type":64,"value":821},"    ZoomMtg",{"type":59,"tag":259,"props":823,"children":824},{"style":266},[825],{"type":64,"value":608},{"type":59,"tag":259,"props":827,"children":828},{"style":611},[829],{"type":64,"value":830},"join",{"type":59,"tag":259,"props":832,"children":833},{"style":272},[834],{"type":64,"value":679},{"type":59,"tag":259,"props":836,"children":837},{"style":266},[838],{"type":64,"value":684},{"type":59,"tag":259,"props":840,"children":842},{"class":261,"line":841},21,[843,848,852,857,862,867],{"type":59,"tag":259,"props":844,"children":845},{"style":272},[846],{"type":64,"value":847},"      sdkKey",{"type":59,"tag":259,"props":849,"children":850},{"style":266},[851],{"type":64,"value":698},{"type":59,"tag":259,"props":853,"children":854},{"style":266},[855],{"type":64,"value":856}," '",{"type":59,"tag":259,"props":858,"children":859},{"style":294},[860],{"type":64,"value":861},"YOUR_SDK_KEY",{"type":59,"tag":259,"props":863,"children":864},{"style":266},[865],{"type":64,"value":866},"'",{"type":59,"tag":259,"props":868,"children":869},{"style":266},[870],{"type":64,"value":726},{"type":59,"tag":259,"props":872,"children":874},{"class":261,"line":873},22,[875,880,884,888,893,897,902],{"type":59,"tag":259,"props":876,"children":877},{"style":272},[878],{"type":64,"value":879},"      signature",{"type":59,"tag":259,"props":881,"children":882},{"style":266},[883],{"type":64,"value":698},{"type":59,"tag":259,"props":885,"children":886},{"style":266},[887],{"type":64,"value":856},{"type":59,"tag":259,"props":889,"children":890},{"style":294},[891],{"type":64,"value":892},"YOUR_SIGNATURE",{"type":59,"tag":259,"props":894,"children":895},{"style":266},[896],{"type":64,"value":866},{"type":59,"tag":259,"props":898,"children":899},{"style":266},[900],{"type":64,"value":901},",",{"type":59,"tag":259,"props":903,"children":904},{"style":573},[905],{"type":64,"value":906},"  \u002F\u002F Generate server-side!\n",{"type":59,"tag":259,"props":908,"children":910},{"class":261,"line":909},23,[911,916,920,924,929,933],{"type":59,"tag":259,"props":912,"children":913},{"style":272},[914],{"type":64,"value":915},"      meetingNumber",{"type":59,"tag":259,"props":917,"children":918},{"style":266},[919],{"type":64,"value":698},{"type":59,"tag":259,"props":921,"children":922},{"style":266},[923],{"type":64,"value":856},{"type":59,"tag":259,"props":925,"children":926},{"style":294},[927],{"type":64,"value":928},"MEETING_NUMBER",{"type":59,"tag":259,"props":930,"children":931},{"style":266},[932],{"type":64,"value":866},{"type":59,"tag":259,"props":934,"children":935},{"style":266},[936],{"type":64,"value":726},{"type":59,"tag":259,"props":938,"children":940},{"class":261,"line":939},24,[941,946,950,954,959,963],{"type":59,"tag":259,"props":942,"children":943},{"style":272},[944],{"type":64,"value":945},"      userName",{"type":59,"tag":259,"props":947,"children":948},{"style":266},[949],{"type":64,"value":698},{"type":59,"tag":259,"props":951,"children":952},{"style":266},[953],{"type":64,"value":856},{"type":59,"tag":259,"props":955,"children":956},{"style":294},[957],{"type":64,"value":958},"User Name",{"type":59,"tag":259,"props":960,"children":961},{"style":266},[962],{"type":64,"value":866},{"type":59,"tag":259,"props":964,"children":965},{"style":266},[966],{"type":64,"value":726},{"type":59,"tag":259,"props":968,"children":970},{"class":261,"line":969},25,[971,976,980,985,989],{"type":59,"tag":259,"props":972,"children":973},{"style":272},[974],{"type":64,"value":975},"      passWord",{"type":59,"tag":259,"props":977,"children":978},{"style":266},[979],{"type":64,"value":698},{"type":59,"tag":259,"props":981,"children":982},{"style":266},[983],{"type":64,"value":984}," ''",{"type":59,"tag":259,"props":986,"children":987},{"style":266},[988],{"type":64,"value":901},{"type":59,"tag":259,"props":990,"children":991},{"style":573},[992],{"type":64,"value":993},"  \u002F\u002F Note: camelCase with capital W\n",{"type":59,"tag":259,"props":995,"children":997},{"class":261,"line":996},26,[998,1003,1007,1011,1015,1021,1026,1031,1036,1040,1045,1049,1053,1058,1062,1066,1071],{"type":59,"tag":259,"props":999,"children":1000},{"style":611},[1001],{"type":64,"value":1002},"      success",{"type":59,"tag":259,"props":1004,"children":1005},{"style":266},[1006],{"type":64,"value":698},{"type":59,"tag":259,"props":1008,"children":1009},{"style":278},[1010],{"type":64,"value":803},{"type":59,"tag":259,"props":1012,"children":1013},{"style":266},[1014],{"type":64,"value":679},{"type":59,"tag":259,"props":1016,"children":1018},{"style":1017},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1019],{"type":64,"value":1020},"res",{"type":59,"tag":259,"props":1022,"children":1023},{"style":266},[1024],{"type":64,"value":1025},")",{"type":59,"tag":259,"props":1027,"children":1028},{"style":266},[1029],{"type":64,"value":1030}," {",{"type":59,"tag":259,"props":1032,"children":1033},{"style":600},[1034],{"type":64,"value":1035}," console",{"type":59,"tag":259,"props":1037,"children":1038},{"style":266},[1039],{"type":64,"value":608},{"type":59,"tag":259,"props":1041,"children":1042},{"style":611},[1043],{"type":64,"value":1044},"log",{"type":59,"tag":259,"props":1046,"children":1047},{"style":272},[1048],{"type":64,"value":679},{"type":59,"tag":259,"props":1050,"children":1051},{"style":266},[1052],{"type":64,"value":866},{"type":59,"tag":259,"props":1054,"children":1055},{"style":294},[1056],{"type":64,"value":1057},"Joined",{"type":59,"tag":259,"props":1059,"children":1060},{"style":266},[1061],{"type":64,"value":866},{"type":59,"tag":259,"props":1063,"children":1064},{"style":272},[1065],{"type":64,"value":1025},{"type":59,"tag":259,"props":1067,"children":1068},{"style":266},[1069],{"type":64,"value":1070},";",{"type":59,"tag":259,"props":1072,"children":1073},{"style":266},[1074],{"type":64,"value":1075}," },\n",{"type":59,"tag":259,"props":1077,"children":1079},{"class":261,"line":1078},27,[1080,1085,1089,1093,1097,1102,1106,1110,1114,1118,1123,1127,1131,1135,1139],{"type":59,"tag":259,"props":1081,"children":1082},{"style":611},[1083],{"type":64,"value":1084},"      error",{"type":59,"tag":259,"props":1086,"children":1087},{"style":266},[1088],{"type":64,"value":698},{"type":59,"tag":259,"props":1090,"children":1091},{"style":278},[1092],{"type":64,"value":803},{"type":59,"tag":259,"props":1094,"children":1095},{"style":266},[1096],{"type":64,"value":679},{"type":59,"tag":259,"props":1098,"children":1099},{"style":1017},[1100],{"type":64,"value":1101},"err",{"type":59,"tag":259,"props":1103,"children":1104},{"style":266},[1105],{"type":64,"value":1025},{"type":59,"tag":259,"props":1107,"children":1108},{"style":266},[1109],{"type":64,"value":1030},{"type":59,"tag":259,"props":1111,"children":1112},{"style":600},[1113],{"type":64,"value":1035},{"type":59,"tag":259,"props":1115,"children":1116},{"style":266},[1117],{"type":64,"value":608},{"type":59,"tag":259,"props":1119,"children":1120},{"style":611},[1121],{"type":64,"value":1122},"error",{"type":59,"tag":259,"props":1124,"children":1125},{"style":272},[1126],{"type":64,"value":679},{"type":59,"tag":259,"props":1128,"children":1129},{"style":600},[1130],{"type":64,"value":1101},{"type":59,"tag":259,"props":1132,"children":1133},{"style":272},[1134],{"type":64,"value":1025},{"type":59,"tag":259,"props":1136,"children":1137},{"style":266},[1138],{"type":64,"value":1070},{"type":59,"tag":259,"props":1140,"children":1141},{"style":266},[1142],{"type":64,"value":1143}," }\n",{"type":59,"tag":259,"props":1145,"children":1147},{"class":261,"line":1146},28,[1148,1153,1157],{"type":59,"tag":259,"props":1149,"children":1150},{"style":266},[1151],{"type":64,"value":1152},"    }",{"type":59,"tag":259,"props":1154,"children":1155},{"style":272},[1156],{"type":64,"value":1025},{"type":59,"tag":259,"props":1158,"children":1159},{"style":266},[1160],{"type":64,"value":624},{"type":59,"tag":259,"props":1162,"children":1164},{"class":261,"line":1163},29,[1165],{"type":59,"tag":259,"props":1166,"children":1167},{"style":266},[1168],{"type":64,"value":1169},"  },\n",{"type":59,"tag":259,"props":1171,"children":1173},{"class":261,"line":1172},30,[1174,1179,1183,1187,1191,1195,1199,1203,1207,1211,1215,1219,1223,1227,1231],{"type":59,"tag":259,"props":1175,"children":1176},{"style":611},[1177],{"type":64,"value":1178},"  error",{"type":59,"tag":259,"props":1180,"children":1181},{"style":266},[1182],{"type":64,"value":698},{"type":59,"tag":259,"props":1184,"children":1185},{"style":278},[1186],{"type":64,"value":803},{"type":59,"tag":259,"props":1188,"children":1189},{"style":266},[1190],{"type":64,"value":679},{"type":59,"tag":259,"props":1192,"children":1193},{"style":1017},[1194],{"type":64,"value":1101},{"type":59,"tag":259,"props":1196,"children":1197},{"style":266},[1198],{"type":64,"value":1025},{"type":59,"tag":259,"props":1200,"children":1201},{"style":266},[1202],{"type":64,"value":1030},{"type":59,"tag":259,"props":1204,"children":1205},{"style":600},[1206],{"type":64,"value":1035},{"type":59,"tag":259,"props":1208,"children":1209},{"style":266},[1210],{"type":64,"value":608},{"type":59,"tag":259,"props":1212,"children":1213},{"style":611},[1214],{"type":64,"value":1122},{"type":59,"tag":259,"props":1216,"children":1217},{"style":272},[1218],{"type":64,"value":679},{"type":59,"tag":259,"props":1220,"children":1221},{"style":600},[1222],{"type":64,"value":1101},{"type":59,"tag":259,"props":1224,"children":1225},{"style":272},[1226],{"type":64,"value":1025},{"type":59,"tag":259,"props":1228,"children":1229},{"style":266},[1230],{"type":64,"value":1070},{"type":59,"tag":259,"props":1232,"children":1233},{"style":266},[1234],{"type":64,"value":1143},{"type":59,"tag":259,"props":1236,"children":1238},{"class":261,"line":1237},31,[1239,1244,1248],{"type":59,"tag":259,"props":1240,"children":1241},{"style":266},[1242],{"type":64,"value":1243},"}",{"type":59,"tag":259,"props":1245,"children":1246},{"style":600},[1247],{"type":64,"value":1025},{"type":59,"tag":259,"props":1249,"children":1250},{"style":266},[1251],{"type":64,"value":624},{"type":59,"tag":259,"props":1253,"children":1255},{"class":261,"line":1254},32,[1256,1261,1265],{"type":59,"tag":259,"props":1257,"children":1258},{"style":266},[1259],{"type":64,"value":1260},"\u003C\u002F",{"type":59,"tag":259,"props":1262,"children":1263},{"style":272},[1264],{"type":64,"value":275},{"type":59,"tag":259,"props":1266,"children":1267},{"style":266},[1268],{"type":64,"value":315},{"type":59,"tag":101,"props":1270,"children":1272},{"id":1271},"critical-notes-web",[1273],{"type":64,"value":1274},"Critical Notes (Web)",{"type":59,"tag":1276,"props":1277,"children":1279},"h3",{"id":1278},"_1-cdn-vs-npm-different-apis",[1280],{"type":64,"value":1281},"1. CDN vs npm - Different APIs!",{"type":59,"tag":1283,"props":1284,"children":1285},"table",{},[1286,1315],{"type":59,"tag":1287,"props":1288,"children":1289},"thead",{},[1290],{"type":59,"tag":1291,"props":1292,"children":1293},"tr",{},[1294,1300,1305,1310],{"type":59,"tag":1295,"props":1296,"children":1297},"th",{},[1298],{"type":64,"value":1299},"Distribution",{"type":59,"tag":1295,"props":1301,"children":1302},{},[1303],{"type":64,"value":1304},"Global Object",{"type":59,"tag":1295,"props":1306,"children":1307},{},[1308],{"type":64,"value":1309},"View Type",{"type":59,"tag":1295,"props":1311,"children":1312},{},[1313],{"type":64,"value":1314},"API Style",{"type":59,"tag":1316,"props":1317,"children":1318},"tbody",{},[1319,1353],{"type":59,"tag":1291,"props":1320,"children":1321},{},[1322,1335,1343,1348],{"type":59,"tag":1323,"props":1324,"children":1325},"td",{},[1326,1328,1334],{"type":64,"value":1327},"CDN (",{"type":59,"tag":73,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":64,"value":1333},"zoom-meeting-{ver}.min.js",{"type":64,"value":1025},{"type":59,"tag":1323,"props":1336,"children":1337},{},[1338],{"type":59,"tag":73,"props":1339,"children":1341},{"className":1340},[],[1342],{"type":64,"value":603},{"type":59,"tag":1323,"props":1344,"children":1345},{},[1346],{"type":64,"value":1347},"Client View (full-page)",{"type":59,"tag":1323,"props":1349,"children":1350},{},[1351],{"type":64,"value":1352},"Callbacks",{"type":59,"tag":1291,"props":1354,"children":1355},{},[1356,1368,1377,1382],{"type":59,"tag":1323,"props":1357,"children":1358},{},[1359,1361,1367],{"type":64,"value":1360},"npm (",{"type":59,"tag":73,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":64,"value":1366},"@zoom\u002Fmeetingsdk",{"type":64,"value":1025},{"type":59,"tag":1323,"props":1369,"children":1370},{},[1371],{"type":59,"tag":73,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":64,"value":1376},"ZoomMtgEmbedded",{"type":59,"tag":1323,"props":1378,"children":1379},{},[1380],{"type":64,"value":1381},"Component View (embeddable)",{"type":59,"tag":1323,"props":1383,"children":1384},{},[1385],{"type":64,"value":1386},"Promises",{"type":59,"tag":1276,"props":1388,"children":1390},{"id":1389},"_2-backend-required-for-production",[1391],{"type":64,"value":1392},"2. Backend Required for Production",{"type":59,"tag":67,"props":1394,"children":1395},{},[1396,1401],{"type":59,"tag":174,"props":1397,"children":1398},{},[1399],{"type":64,"value":1400},"Never expose SDK Secret in client code.",{"type":64,"value":1402}," Generate signatures server-side:",{"type":59,"tag":248,"props":1404,"children":1408},{"className":1405,"code":1406,"language":1407,"meta":253,"style":253},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F server.js (Node.js example)\nconst KJUR = require('jsrsasign');\n\napp.post('\u002Fapi\u002Fsignature', (req, res) => {\n  const { meetingNumber, role } = req.body;\n  const iat = Math.floor(Date.now() \u002F 1000) - 30;\n  const exp = iat + 60 * 60 * 2;\n  \n  const header = { alg: 'HS256', typ: 'JWT' };\n  const payload = {\n    sdkKey: process.env.ZOOM_SDK_KEY,\n    mn: String(meetingNumber).replace(\u002F\\D\u002Fg, ''),\n    role: parseInt(role, 10),\n    iat, exp, tokenExp: exp\n  };\n  \n  const signature = KJUR.jws.JWS.sign('HS256',\n    JSON.stringify(header),\n    JSON.stringify(payload),\n    process.env.ZOOM_SDK_SECRET\n  );\n  \n  res.json({ signature, sdkKey: process.env.ZOOM_SDK_KEY });\n});\n","javascript",[1409],{"type":59,"tag":73,"props":1410,"children":1411},{"__ignoreMap":253},[1412,1420,1467,1474,1544,1598,1681,1733,1741,1814,1834,1873,1950,1993,2027,2035,2042,2110,2144,2176,2201,2213,2220,2295],{"type":59,"tag":259,"props":1413,"children":1414},{"class":261,"line":262},[1415],{"type":59,"tag":259,"props":1416,"children":1417},{"style":573},[1418],{"type":64,"value":1419},"\u002F\u002F server.js (Node.js example)\n",{"type":59,"tag":259,"props":1421,"children":1422},{"class":261,"line":318},[1423,1428,1433,1437,1442,1446,1450,1455,1459,1463],{"type":59,"tag":259,"props":1424,"children":1425},{"style":278},[1426],{"type":64,"value":1427},"const",{"type":59,"tag":259,"props":1429,"children":1430},{"style":600},[1431],{"type":64,"value":1432}," KJUR ",{"type":59,"tag":259,"props":1434,"children":1435},{"style":266},[1436],{"type":64,"value":286},{"type":59,"tag":259,"props":1438,"children":1439},{"style":611},[1440],{"type":64,"value":1441}," require",{"type":59,"tag":259,"props":1443,"children":1444},{"style":600},[1445],{"type":64,"value":679},{"type":59,"tag":259,"props":1447,"children":1448},{"style":266},[1449],{"type":64,"value":866},{"type":59,"tag":259,"props":1451,"children":1452},{"style":294},[1453],{"type":64,"value":1454},"jsrsasign",{"type":59,"tag":259,"props":1456,"children":1457},{"style":266},[1458],{"type":64,"value":866},{"type":59,"tag":259,"props":1460,"children":1461},{"style":600},[1462],{"type":64,"value":1025},{"type":59,"tag":259,"props":1464,"children":1465},{"style":266},[1466],{"type":64,"value":624},{"type":59,"tag":259,"props":1468,"children":1469},{"class":261,"line":363},[1470],{"type":59,"tag":259,"props":1471,"children":1472},{"emptyLinePlaceholder":547},[1473],{"type":64,"value":550},{"type":59,"tag":259,"props":1475,"children":1476},{"class":261,"line":408},[1477,1482,1486,1491,1495,1499,1504,1508,1512,1517,1522,1526,1531,1535,1540],{"type":59,"tag":259,"props":1478,"children":1479},{"style":600},[1480],{"type":64,"value":1481},"app",{"type":59,"tag":259,"props":1483,"children":1484},{"style":266},[1485],{"type":64,"value":608},{"type":59,"tag":259,"props":1487,"children":1488},{"style":611},[1489],{"type":64,"value":1490},"post",{"type":59,"tag":259,"props":1492,"children":1493},{"style":600},[1494],{"type":64,"value":679},{"type":59,"tag":259,"props":1496,"children":1497},{"style":266},[1498],{"type":64,"value":866},{"type":59,"tag":259,"props":1500,"children":1501},{"style":294},[1502],{"type":64,"value":1503},"\u002Fapi\u002Fsignature",{"type":59,"tag":259,"props":1505,"children":1506},{"style":266},[1507],{"type":64,"value":866},{"type":59,"tag":259,"props":1509,"children":1510},{"style":266},[1511],{"type":64,"value":901},{"type":59,"tag":259,"props":1513,"children":1514},{"style":266},[1515],{"type":64,"value":1516}," (",{"type":59,"tag":259,"props":1518,"children":1519},{"style":1017},[1520],{"type":64,"value":1521},"req",{"type":59,"tag":259,"props":1523,"children":1524},{"style":266},[1525],{"type":64,"value":901},{"type":59,"tag":259,"props":1527,"children":1528},{"style":1017},[1529],{"type":64,"value":1530}," res",{"type":59,"tag":259,"props":1532,"children":1533},{"style":266},[1534],{"type":64,"value":1025},{"type":59,"tag":259,"props":1536,"children":1537},{"style":278},[1538],{"type":64,"value":1539}," =>",{"type":59,"tag":259,"props":1541,"children":1542},{"style":266},[1543],{"type":64,"value":812},{"type":59,"tag":259,"props":1545,"children":1546},{"class":261,"line":453},[1547,1552,1556,1561,1565,1570,1575,1580,1585,1589,1594],{"type":59,"tag":259,"props":1548,"children":1549},{"style":278},[1550],{"type":64,"value":1551},"  const",{"type":59,"tag":259,"props":1553,"children":1554},{"style":266},[1555],{"type":64,"value":1030},{"type":59,"tag":259,"props":1557,"children":1558},{"style":600},[1559],{"type":64,"value":1560}," meetingNumber",{"type":59,"tag":259,"props":1562,"children":1563},{"style":266},[1564],{"type":64,"value":901},{"type":59,"tag":259,"props":1566,"children":1567},{"style":600},[1568],{"type":64,"value":1569}," role",{"type":59,"tag":259,"props":1571,"children":1572},{"style":266},[1573],{"type":64,"value":1574}," }",{"type":59,"tag":259,"props":1576,"children":1577},{"style":266},[1578],{"type":64,"value":1579}," =",{"type":59,"tag":259,"props":1581,"children":1582},{"style":600},[1583],{"type":64,"value":1584}," req",{"type":59,"tag":259,"props":1586,"children":1587},{"style":266},[1588],{"type":64,"value":608},{"type":59,"tag":259,"props":1590,"children":1591},{"style":600},[1592],{"type":64,"value":1593},"body",{"type":59,"tag":259,"props":1595,"children":1596},{"style":266},[1597],{"type":64,"value":624},{"type":59,"tag":259,"props":1599,"children":1600},{"class":261,"line":498},[1601,1605,1610,1614,1619,1623,1628,1632,1637,1641,1646,1651,1656,1662,1667,1672,1677],{"type":59,"tag":259,"props":1602,"children":1603},{"style":278},[1604],{"type":64,"value":1551},{"type":59,"tag":259,"props":1606,"children":1607},{"style":600},[1608],{"type":64,"value":1609}," iat",{"type":59,"tag":259,"props":1611,"children":1612},{"style":266},[1613],{"type":64,"value":1579},{"type":59,"tag":259,"props":1615,"children":1616},{"style":600},[1617],{"type":64,"value":1618}," Math",{"type":59,"tag":259,"props":1620,"children":1621},{"style":266},[1622],{"type":64,"value":608},{"type":59,"tag":259,"props":1624,"children":1625},{"style":611},[1626],{"type":64,"value":1627},"floor",{"type":59,"tag":259,"props":1629,"children":1630},{"style":272},[1631],{"type":64,"value":679},{"type":59,"tag":259,"props":1633,"children":1634},{"style":600},[1635],{"type":64,"value":1636},"Date",{"type":59,"tag":259,"props":1638,"children":1639},{"style":266},[1640],{"type":64,"value":608},{"type":59,"tag":259,"props":1642,"children":1643},{"style":611},[1644],{"type":64,"value":1645},"now",{"type":59,"tag":259,"props":1647,"children":1648},{"style":272},[1649],{"type":64,"value":1650},"() ",{"type":59,"tag":259,"props":1652,"children":1653},{"style":266},[1654],{"type":64,"value":1655},"\u002F",{"type":59,"tag":259,"props":1657,"children":1659},{"style":1658},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1660],{"type":64,"value":1661}," 1000",{"type":59,"tag":259,"props":1663,"children":1664},{"style":272},[1665],{"type":64,"value":1666},") ",{"type":59,"tag":259,"props":1668,"children":1669},{"style":266},[1670],{"type":64,"value":1671},"-",{"type":59,"tag":259,"props":1673,"children":1674},{"style":1658},[1675],{"type":64,"value":1676}," 30",{"type":59,"tag":259,"props":1678,"children":1679},{"style":266},[1680],{"type":64,"value":624},{"type":59,"tag":259,"props":1682,"children":1683},{"class":261,"line":543},[1684,1688,1693,1697,1701,1706,1711,1716,1720,1724,1729],{"type":59,"tag":259,"props":1685,"children":1686},{"style":278},[1687],{"type":64,"value":1551},{"type":59,"tag":259,"props":1689,"children":1690},{"style":600},[1691],{"type":64,"value":1692}," exp",{"type":59,"tag":259,"props":1694,"children":1695},{"style":266},[1696],{"type":64,"value":1579},{"type":59,"tag":259,"props":1698,"children":1699},{"style":600},[1700],{"type":64,"value":1609},{"type":59,"tag":259,"props":1702,"children":1703},{"style":266},[1704],{"type":64,"value":1705}," +",{"type":59,"tag":259,"props":1707,"children":1708},{"style":1658},[1709],{"type":64,"value":1710}," 60",{"type":59,"tag":259,"props":1712,"children":1713},{"style":266},[1714],{"type":64,"value":1715}," *",{"type":59,"tag":259,"props":1717,"children":1718},{"style":1658},[1719],{"type":64,"value":1710},{"type":59,"tag":259,"props":1721,"children":1722},{"style":266},[1723],{"type":64,"value":1715},{"type":59,"tag":259,"props":1725,"children":1726},{"style":1658},[1727],{"type":64,"value":1728}," 2",{"type":59,"tag":259,"props":1730,"children":1731},{"style":266},[1732],{"type":64,"value":624},{"type":59,"tag":259,"props":1734,"children":1735},{"class":261,"line":553},[1736],{"type":59,"tag":259,"props":1737,"children":1738},{"style":272},[1739],{"type":64,"value":1740},"  \n",{"type":59,"tag":259,"props":1742,"children":1743},{"class":261,"line":569},[1744,1748,1753,1757,1761,1766,1770,1774,1779,1783,1787,1792,1796,1800,1805,1809],{"type":59,"tag":259,"props":1745,"children":1746},{"style":278},[1747],{"type":64,"value":1551},{"type":59,"tag":259,"props":1749,"children":1750},{"style":600},[1751],{"type":64,"value":1752}," header",{"type":59,"tag":259,"props":1754,"children":1755},{"style":266},[1756],{"type":64,"value":1579},{"type":59,"tag":259,"props":1758,"children":1759},{"style":266},[1760],{"type":64,"value":1030},{"type":59,"tag":259,"props":1762,"children":1763},{"style":272},[1764],{"type":64,"value":1765}," alg",{"type":59,"tag":259,"props":1767,"children":1768},{"style":266},[1769],{"type":64,"value":698},{"type":59,"tag":259,"props":1771,"children":1772},{"style":266},[1773],{"type":64,"value":856},{"type":59,"tag":259,"props":1775,"children":1776},{"style":294},[1777],{"type":64,"value":1778},"HS256",{"type":59,"tag":259,"props":1780,"children":1781},{"style":266},[1782],{"type":64,"value":866},{"type":59,"tag":259,"props":1784,"children":1785},{"style":266},[1786],{"type":64,"value":901},{"type":59,"tag":259,"props":1788,"children":1789},{"style":272},[1790],{"type":64,"value":1791}," typ",{"type":59,"tag":259,"props":1793,"children":1794},{"style":266},[1795],{"type":64,"value":698},{"type":59,"tag":259,"props":1797,"children":1798},{"style":266},[1799],{"type":64,"value":856},{"type":59,"tag":259,"props":1801,"children":1802},{"style":294},[1803],{"type":64,"value":1804},"JWT",{"type":59,"tag":259,"props":1806,"children":1807},{"style":266},[1808],{"type":64,"value":866},{"type":59,"tag":259,"props":1810,"children":1811},{"style":266},[1812],{"type":64,"value":1813}," };\n",{"type":59,"tag":259,"props":1815,"children":1816},{"class":261,"line":579},[1817,1821,1826,1830],{"type":59,"tag":259,"props":1818,"children":1819},{"style":278},[1820],{"type":64,"value":1551},{"type":59,"tag":259,"props":1822,"children":1823},{"style":600},[1824],{"type":64,"value":1825}," payload",{"type":59,"tag":259,"props":1827,"children":1828},{"style":266},[1829],{"type":64,"value":1579},{"type":59,"tag":259,"props":1831,"children":1832},{"style":266},[1833],{"type":64,"value":812},{"type":59,"tag":259,"props":1835,"children":1836},{"class":261,"line":588},[1837,1842,1846,1851,1855,1860,1864,1869],{"type":59,"tag":259,"props":1838,"children":1839},{"style":272},[1840],{"type":64,"value":1841},"    sdkKey",{"type":59,"tag":259,"props":1843,"children":1844},{"style":266},[1845],{"type":64,"value":698},{"type":59,"tag":259,"props":1847,"children":1848},{"style":600},[1849],{"type":64,"value":1850}," process",{"type":59,"tag":259,"props":1852,"children":1853},{"style":266},[1854],{"type":64,"value":608},{"type":59,"tag":259,"props":1856,"children":1857},{"style":600},[1858],{"type":64,"value":1859},"env",{"type":59,"tag":259,"props":1861,"children":1862},{"style":266},[1863],{"type":64,"value":608},{"type":59,"tag":259,"props":1865,"children":1866},{"style":600},[1867],{"type":64,"value":1868},"ZOOM_SDK_KEY",{"type":59,"tag":259,"props":1870,"children":1871},{"style":266},[1872],{"type":64,"value":726},{"type":59,"tag":259,"props":1874,"children":1875},{"class":261,"line":596},[1876,1881,1885,1890,1894,1899,1903,1907,1912,1916,1920,1925,1929,1934,1938,1942,1946],{"type":59,"tag":259,"props":1877,"children":1878},{"style":272},[1879],{"type":64,"value":1880},"    mn",{"type":59,"tag":259,"props":1882,"children":1883},{"style":266},[1884],{"type":64,"value":698},{"type":59,"tag":259,"props":1886,"children":1887},{"style":611},[1888],{"type":64,"value":1889}," String",{"type":59,"tag":259,"props":1891,"children":1892},{"style":272},[1893],{"type":64,"value":679},{"type":59,"tag":259,"props":1895,"children":1896},{"style":600},[1897],{"type":64,"value":1898},"meetingNumber",{"type":59,"tag":259,"props":1900,"children":1901},{"style":272},[1902],{"type":64,"value":1025},{"type":59,"tag":259,"props":1904,"children":1905},{"style":266},[1906],{"type":64,"value":608},{"type":59,"tag":259,"props":1908,"children":1909},{"style":611},[1910],{"type":64,"value":1911},"replace",{"type":59,"tag":259,"props":1913,"children":1914},{"style":272},[1915],{"type":64,"value":679},{"type":59,"tag":259,"props":1917,"children":1918},{"style":266},[1919],{"type":64,"value":1655},{"type":59,"tag":259,"props":1921,"children":1922},{"style":294},[1923],{"type":64,"value":1924},"\\D",{"type":59,"tag":259,"props":1926,"children":1927},{"style":266},[1928],{"type":64,"value":1655},{"type":59,"tag":259,"props":1930,"children":1931},{"style":1658},[1932],{"type":64,"value":1933},"g",{"type":59,"tag":259,"props":1935,"children":1936},{"style":266},[1937],{"type":64,"value":901},{"type":59,"tag":259,"props":1939,"children":1940},{"style":266},[1941],{"type":64,"value":984},{"type":59,"tag":259,"props":1943,"children":1944},{"style":272},[1945],{"type":64,"value":1025},{"type":59,"tag":259,"props":1947,"children":1948},{"style":266},[1949],{"type":64,"value":726},{"type":59,"tag":259,"props":1951,"children":1952},{"class":261,"line":627},[1953,1958,1962,1967,1971,1976,1980,1985,1989],{"type":59,"tag":259,"props":1954,"children":1955},{"style":272},[1956],{"type":64,"value":1957},"    role",{"type":59,"tag":259,"props":1959,"children":1960},{"style":266},[1961],{"type":64,"value":698},{"type":59,"tag":259,"props":1963,"children":1964},{"style":611},[1965],{"type":64,"value":1966}," parseInt",{"type":59,"tag":259,"props":1968,"children":1969},{"style":272},[1970],{"type":64,"value":679},{"type":59,"tag":259,"props":1972,"children":1973},{"style":600},[1974],{"type":64,"value":1975},"role",{"type":59,"tag":259,"props":1977,"children":1978},{"style":266},[1979],{"type":64,"value":901},{"type":59,"tag":259,"props":1981,"children":1982},{"style":1658},[1983],{"type":64,"value":1984}," 10",{"type":59,"tag":259,"props":1986,"children":1987},{"style":272},[1988],{"type":64,"value":1025},{"type":59,"tag":259,"props":1990,"children":1991},{"style":266},[1992],{"type":64,"value":726},{"type":59,"tag":259,"props":1994,"children":1995},{"class":261,"line":652},[1996,2001,2005,2009,2013,2018,2022],{"type":59,"tag":259,"props":1997,"children":1998},{"style":600},[1999],{"type":64,"value":2000},"    iat",{"type":59,"tag":259,"props":2002,"children":2003},{"style":266},[2004],{"type":64,"value":901},{"type":59,"tag":259,"props":2006,"children":2007},{"style":600},[2008],{"type":64,"value":1692},{"type":59,"tag":259,"props":2010,"children":2011},{"style":266},[2012],{"type":64,"value":901},{"type":59,"tag":259,"props":2014,"children":2015},{"style":272},[2016],{"type":64,"value":2017}," tokenExp",{"type":59,"tag":259,"props":2019,"children":2020},{"style":266},[2021],{"type":64,"value":698},{"type":59,"tag":259,"props":2023,"children":2024},{"style":600},[2025],{"type":64,"value":2026}," exp\n",{"type":59,"tag":259,"props":2028,"children":2029},{"class":261,"line":660},[2030],{"type":59,"tag":259,"props":2031,"children":2032},{"style":266},[2033],{"type":64,"value":2034},"  };\n",{"type":59,"tag":259,"props":2036,"children":2037},{"class":261,"line":687},[2038],{"type":59,"tag":259,"props":2039,"children":2040},{"style":272},[2041],{"type":64,"value":1740},{"type":59,"tag":259,"props":2043,"children":2044},{"class":261,"line":729},[2045,2049,2054,2058,2063,2067,2072,2076,2081,2085,2090,2094,2098,2102,2106],{"type":59,"tag":259,"props":2046,"children":2047},{"style":278},[2048],{"type":64,"value":1551},{"type":59,"tag":259,"props":2050,"children":2051},{"style":600},[2052],{"type":64,"value":2053}," signature",{"type":59,"tag":259,"props":2055,"children":2056},{"style":266},[2057],{"type":64,"value":1579},{"type":59,"tag":259,"props":2059,"children":2060},{"style":600},[2061],{"type":64,"value":2062}," KJUR",{"type":59,"tag":259,"props":2064,"children":2065},{"style":266},[2066],{"type":64,"value":608},{"type":59,"tag":259,"props":2068,"children":2069},{"style":600},[2070],{"type":64,"value":2071},"jws",{"type":59,"tag":259,"props":2073,"children":2074},{"style":266},[2075],{"type":64,"value":608},{"type":59,"tag":259,"props":2077,"children":2078},{"style":600},[2079],{"type":64,"value":2080},"JWS",{"type":59,"tag":259,"props":2082,"children":2083},{"style":266},[2084],{"type":64,"value":608},{"type":59,"tag":259,"props":2086,"children":2087},{"style":611},[2088],{"type":64,"value":2089},"sign",{"type":59,"tag":259,"props":2091,"children":2092},{"style":272},[2093],{"type":64,"value":679},{"type":59,"tag":259,"props":2095,"children":2096},{"style":266},[2097],{"type":64,"value":866},{"type":59,"tag":259,"props":2099,"children":2100},{"style":294},[2101],{"type":64,"value":1778},{"type":59,"tag":259,"props":2103,"children":2104},{"style":266},[2105],{"type":64,"value":866},{"type":59,"tag":259,"props":2107,"children":2108},{"style":266},[2109],{"type":64,"value":726},{"type":59,"tag":259,"props":2111,"children":2112},{"class":261,"line":752},[2113,2118,2122,2127,2131,2136,2140],{"type":59,"tag":259,"props":2114,"children":2115},{"style":600},[2116],{"type":64,"value":2117},"    JSON",{"type":59,"tag":259,"props":2119,"children":2120},{"style":266},[2121],{"type":64,"value":608},{"type":59,"tag":259,"props":2123,"children":2124},{"style":611},[2125],{"type":64,"value":2126},"stringify",{"type":59,"tag":259,"props":2128,"children":2129},{"style":272},[2130],{"type":64,"value":679},{"type":59,"tag":259,"props":2132,"children":2133},{"style":600},[2134],{"type":64,"value":2135},"header",{"type":59,"tag":259,"props":2137,"children":2138},{"style":272},[2139],{"type":64,"value":1025},{"type":59,"tag":259,"props":2141,"children":2142},{"style":266},[2143],{"type":64,"value":726},{"type":59,"tag":259,"props":2145,"children":2146},{"class":261,"line":788},[2147,2151,2155,2159,2163,2168,2172],{"type":59,"tag":259,"props":2148,"children":2149},{"style":600},[2150],{"type":64,"value":2117},{"type":59,"tag":259,"props":2152,"children":2153},{"style":266},[2154],{"type":64,"value":608},{"type":59,"tag":259,"props":2156,"children":2157},{"style":611},[2158],{"type":64,"value":2126},{"type":59,"tag":259,"props":2160,"children":2161},{"style":272},[2162],{"type":64,"value":679},{"type":59,"tag":259,"props":2164,"children":2165},{"style":600},[2166],{"type":64,"value":2167},"payload",{"type":59,"tag":259,"props":2169,"children":2170},{"style":272},[2171],{"type":64,"value":1025},{"type":59,"tag":259,"props":2173,"children":2174},{"style":266},[2175],{"type":64,"value":726},{"type":59,"tag":259,"props":2177,"children":2178},{"class":261,"line":815},[2179,2184,2188,2192,2196],{"type":59,"tag":259,"props":2180,"children":2181},{"style":600},[2182],{"type":64,"value":2183},"    process",{"type":59,"tag":259,"props":2185,"children":2186},{"style":266},[2187],{"type":64,"value":608},{"type":59,"tag":259,"props":2189,"children":2190},{"style":600},[2191],{"type":64,"value":1859},{"type":59,"tag":259,"props":2193,"children":2194},{"style":266},[2195],{"type":64,"value":608},{"type":59,"tag":259,"props":2197,"children":2198},{"style":600},[2199],{"type":64,"value":2200},"ZOOM_SDK_SECRET\n",{"type":59,"tag":259,"props":2202,"children":2203},{"class":261,"line":841},[2204,2209],{"type":59,"tag":259,"props":2205,"children":2206},{"style":272},[2207],{"type":64,"value":2208},"  )",{"type":59,"tag":259,"props":2210,"children":2211},{"style":266},[2212],{"type":64,"value":624},{"type":59,"tag":259,"props":2214,"children":2215},{"class":261,"line":873},[2216],{"type":59,"tag":259,"props":2217,"children":2218},{"style":272},[2219],{"type":64,"value":1740},{"type":59,"tag":259,"props":2221,"children":2222},{"class":261,"line":909},[2223,2228,2232,2237,2241,2246,2250,2254,2259,2263,2267,2271,2275,2279,2283,2287,2291],{"type":59,"tag":259,"props":2224,"children":2225},{"style":600},[2226],{"type":64,"value":2227},"  res",{"type":59,"tag":259,"props":2229,"children":2230},{"style":266},[2231],{"type":64,"value":608},{"type":59,"tag":259,"props":2233,"children":2234},{"style":611},[2235],{"type":64,"value":2236},"json",{"type":59,"tag":259,"props":2238,"children":2239},{"style":272},[2240],{"type":64,"value":679},{"type":59,"tag":259,"props":2242,"children":2243},{"style":266},[2244],{"type":64,"value":2245},"{",{"type":59,"tag":259,"props":2247,"children":2248},{"style":600},[2249],{"type":64,"value":2053},{"type":59,"tag":259,"props":2251,"children":2252},{"style":266},[2253],{"type":64,"value":901},{"type":59,"tag":259,"props":2255,"children":2256},{"style":272},[2257],{"type":64,"value":2258}," sdkKey",{"type":59,"tag":259,"props":2260,"children":2261},{"style":266},[2262],{"type":64,"value":698},{"type":59,"tag":259,"props":2264,"children":2265},{"style":600},[2266],{"type":64,"value":1850},{"type":59,"tag":259,"props":2268,"children":2269},{"style":266},[2270],{"type":64,"value":608},{"type":59,"tag":259,"props":2272,"children":2273},{"style":600},[2274],{"type":64,"value":1859},{"type":59,"tag":259,"props":2276,"children":2277},{"style":266},[2278],{"type":64,"value":608},{"type":59,"tag":259,"props":2280,"children":2281},{"style":600},[2282],{"type":64,"value":1868},{"type":59,"tag":259,"props":2284,"children":2285},{"style":266},[2286],{"type":64,"value":1574},{"type":59,"tag":259,"props":2288,"children":2289},{"style":272},[2290],{"type":64,"value":1025},{"type":59,"tag":259,"props":2292,"children":2293},{"style":266},[2294],{"type":64,"value":624},{"type":59,"tag":259,"props":2296,"children":2297},{"class":261,"line":939},[2298,2302,2306],{"type":59,"tag":259,"props":2299,"children":2300},{"style":266},[2301],{"type":64,"value":1243},{"type":59,"tag":259,"props":2303,"children":2304},{"style":600},[2305],{"type":64,"value":1025},{"type":59,"tag":259,"props":2307,"children":2308},{"style":266},[2309],{"type":64,"value":624},{"type":59,"tag":1276,"props":2311,"children":2313},{"id":2312},"_3-css-conflicts-avoid-global-resets",[2314],{"type":64,"value":2315},"3. CSS Conflicts - Avoid Global Resets",{"type":59,"tag":67,"props":2317,"children":2318},{},[2319,2321,2327],{"type":64,"value":2320},"Global ",{"type":59,"tag":73,"props":2322,"children":2324},{"className":2323},[],[2325],{"type":64,"value":2326},"* { margin: 0; }",{"type":64,"value":2328}," breaks Zoom's UI. Scope your styles:",{"type":59,"tag":248,"props":2330,"children":2334},{"className":2331,"code":2332,"language":2333,"meta":253,"style":253},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F* BAD *\u002F\n* { margin: 0; padding: 0; }\n\n\u002F* GOOD *\u002F\n.your-app, .your-app * { box-sizing: border-box; }\n","css",[2335],{"type":59,"tag":73,"props":2336,"children":2337},{"__ignoreMap":253},[2338,2346,2399,2406,2414],{"type":59,"tag":259,"props":2339,"children":2340},{"class":261,"line":262},[2341],{"type":59,"tag":259,"props":2342,"children":2343},{"style":573},[2344],{"type":64,"value":2345},"\u002F* BAD *\u002F\n",{"type":59,"tag":259,"props":2347,"children":2348},{"class":261,"line":318},[2349,2355,2359,2365,2369,2374,2378,2383,2387,2391,2395],{"type":59,"tag":259,"props":2350,"children":2352},{"style":2351},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[2353],{"type":64,"value":2354},"*",{"type":59,"tag":259,"props":2356,"children":2357},{"style":266},[2358],{"type":64,"value":1030},{"type":59,"tag":259,"props":2360,"children":2362},{"style":2361},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[2363],{"type":64,"value":2364}," margin",{"type":59,"tag":259,"props":2366,"children":2367},{"style":266},[2368],{"type":64,"value":698},{"type":59,"tag":259,"props":2370,"children":2371},{"style":1658},[2372],{"type":64,"value":2373}," 0",{"type":59,"tag":259,"props":2375,"children":2376},{"style":266},[2377],{"type":64,"value":1070},{"type":59,"tag":259,"props":2379,"children":2380},{"style":2361},[2381],{"type":64,"value":2382}," padding",{"type":59,"tag":259,"props":2384,"children":2385},{"style":266},[2386],{"type":64,"value":698},{"type":59,"tag":259,"props":2388,"children":2389},{"style":1658},[2390],{"type":64,"value":2373},{"type":59,"tag":259,"props":2392,"children":2393},{"style":266},[2394],{"type":64,"value":1070},{"type":59,"tag":259,"props":2396,"children":2397},{"style":266},[2398],{"type":64,"value":1143},{"type":59,"tag":259,"props":2400,"children":2401},{"class":261,"line":363},[2402],{"type":59,"tag":259,"props":2403,"children":2404},{"emptyLinePlaceholder":547},[2405],{"type":64,"value":550},{"type":59,"tag":259,"props":2407,"children":2408},{"class":261,"line":408},[2409],{"type":59,"tag":259,"props":2410,"children":2411},{"style":573},[2412],{"type":64,"value":2413},"\u002F* GOOD *\u002F\n",{"type":59,"tag":259,"props":2415,"children":2416},{"class":261,"line":453},[2417,2421,2426,2430,2435,2439,2443,2447,2452,2456,2461,2465],{"type":59,"tag":259,"props":2418,"children":2419},{"style":266},[2420],{"type":64,"value":608},{"type":59,"tag":259,"props":2422,"children":2423},{"style":2351},[2424],{"type":64,"value":2425},"your-app",{"type":59,"tag":259,"props":2427,"children":2428},{"style":266},[2429],{"type":64,"value":901},{"type":59,"tag":259,"props":2431,"children":2432},{"style":266},[2433],{"type":64,"value":2434}," .",{"type":59,"tag":259,"props":2436,"children":2437},{"style":2351},[2438],{"type":64,"value":2425},{"type":59,"tag":259,"props":2440,"children":2441},{"style":2351},[2442],{"type":64,"value":1715},{"type":59,"tag":259,"props":2444,"children":2445},{"style":266},[2446],{"type":64,"value":1030},{"type":59,"tag":259,"props":2448,"children":2449},{"style":2361},[2450],{"type":64,"value":2451}," box-sizing",{"type":59,"tag":259,"props":2453,"children":2454},{"style":266},[2455],{"type":64,"value":698},{"type":59,"tag":259,"props":2457,"children":2458},{"style":600},[2459],{"type":64,"value":2460}," border-box",{"type":59,"tag":259,"props":2462,"children":2463},{"style":266},[2464],{"type":64,"value":1070},{"type":59,"tag":259,"props":2466,"children":2467},{"style":266},[2468],{"type":64,"value":1143},{"type":59,"tag":1276,"props":2470,"children":2472},{"id":2471},"_4-client-view-toolbar-cropping-fix",[2473],{"type":64,"value":2474},"4. Client View Toolbar Cropping Fix",{"type":59,"tag":67,"props":2476,"children":2477},{},[2478],{"type":64,"value":2479},"If toolbar falls off screen, scale down the Zoom UI:",{"type":59,"tag":248,"props":2481,"children":2483},{"className":2331,"code":2482,"language":2333,"meta":253,"style":253},"#zmmtg-root {\n  position: fixed !important;\n  top: 0 !important;\n  left: 0 !important;\n  right: 0 !important;\n  bottom: 0 !important;\n  width: 100vw !important;\n  height: 100vh !important;\n  \u002F* Critical for SPAs (React\u002FNext\u002Fetc): ensure Zoom UI isn't behind your app shell\u002Foverlays. *\u002F\n  z-index: 9999 !important;\n  transform: scale(0.95) !important;\n  transform-origin: top center !important;\n}\n",[2484],{"type":59,"tag":73,"props":2485,"children":2486},{"__ignoreMap":253},[2487,2504,2530,2555,2579,2603,2627,2652,2677,2685,2710,2748,2773],{"type":59,"tag":259,"props":2488,"children":2489},{"class":261,"line":262},[2490,2495,2500],{"type":59,"tag":259,"props":2491,"children":2492},{"style":266},[2493],{"type":64,"value":2494},"#",{"type":59,"tag":259,"props":2496,"children":2497},{"style":1658},[2498],{"type":64,"value":2499},"zmmtg-root",{"type":59,"tag":259,"props":2501,"children":2502},{"style":266},[2503],{"type":64,"value":812},{"type":59,"tag":259,"props":2505,"children":2506},{"class":261,"line":318},[2507,2512,2516,2521,2526],{"type":59,"tag":259,"props":2508,"children":2509},{"style":2361},[2510],{"type":64,"value":2511},"  position",{"type":59,"tag":259,"props":2513,"children":2514},{"style":266},[2515],{"type":64,"value":698},{"type":59,"tag":259,"props":2517,"children":2518},{"style":600},[2519],{"type":64,"value":2520}," fixed ",{"type":59,"tag":259,"props":2522,"children":2523},{"style":1658},[2524],{"type":64,"value":2525},"!important",{"type":59,"tag":259,"props":2527,"children":2528},{"style":266},[2529],{"type":64,"value":624},{"type":59,"tag":259,"props":2531,"children":2532},{"class":261,"line":363},[2533,2538,2542,2546,2551],{"type":59,"tag":259,"props":2534,"children":2535},{"style":2361},[2536],{"type":64,"value":2537},"  top",{"type":59,"tag":259,"props":2539,"children":2540},{"style":266},[2541],{"type":64,"value":698},{"type":59,"tag":259,"props":2543,"children":2544},{"style":1658},[2545],{"type":64,"value":2373},{"type":59,"tag":259,"props":2547,"children":2548},{"style":1658},[2549],{"type":64,"value":2550}," !important",{"type":59,"tag":259,"props":2552,"children":2553},{"style":266},[2554],{"type":64,"value":624},{"type":59,"tag":259,"props":2556,"children":2557},{"class":261,"line":408},[2558,2563,2567,2571,2575],{"type":59,"tag":259,"props":2559,"children":2560},{"style":2361},[2561],{"type":64,"value":2562},"  left",{"type":59,"tag":259,"props":2564,"children":2565},{"style":266},[2566],{"type":64,"value":698},{"type":59,"tag":259,"props":2568,"children":2569},{"style":1658},[2570],{"type":64,"value":2373},{"type":59,"tag":259,"props":2572,"children":2573},{"style":1658},[2574],{"type":64,"value":2550},{"type":59,"tag":259,"props":2576,"children":2577},{"style":266},[2578],{"type":64,"value":624},{"type":59,"tag":259,"props":2580,"children":2581},{"class":261,"line":453},[2582,2587,2591,2595,2599],{"type":59,"tag":259,"props":2583,"children":2584},{"style":2361},[2585],{"type":64,"value":2586},"  right",{"type":59,"tag":259,"props":2588,"children":2589},{"style":266},[2590],{"type":64,"value":698},{"type":59,"tag":259,"props":2592,"children":2593},{"style":1658},[2594],{"type":64,"value":2373},{"type":59,"tag":259,"props":2596,"children":2597},{"style":1658},[2598],{"type":64,"value":2550},{"type":59,"tag":259,"props":2600,"children":2601},{"style":266},[2602],{"type":64,"value":624},{"type":59,"tag":259,"props":2604,"children":2605},{"class":261,"line":498},[2606,2611,2615,2619,2623],{"type":59,"tag":259,"props":2607,"children":2608},{"style":2361},[2609],{"type":64,"value":2610},"  bottom",{"type":59,"tag":259,"props":2612,"children":2613},{"style":266},[2614],{"type":64,"value":698},{"type":59,"tag":259,"props":2616,"children":2617},{"style":1658},[2618],{"type":64,"value":2373},{"type":59,"tag":259,"props":2620,"children":2621},{"style":1658},[2622],{"type":64,"value":2550},{"type":59,"tag":259,"props":2624,"children":2625},{"style":266},[2626],{"type":64,"value":624},{"type":59,"tag":259,"props":2628,"children":2629},{"class":261,"line":543},[2630,2635,2639,2644,2648],{"type":59,"tag":259,"props":2631,"children":2632},{"style":2361},[2633],{"type":64,"value":2634},"  width",{"type":59,"tag":259,"props":2636,"children":2637},{"style":266},[2638],{"type":64,"value":698},{"type":59,"tag":259,"props":2640,"children":2641},{"style":1658},[2642],{"type":64,"value":2643}," 100vw",{"type":59,"tag":259,"props":2645,"children":2646},{"style":1658},[2647],{"type":64,"value":2550},{"type":59,"tag":259,"props":2649,"children":2650},{"style":266},[2651],{"type":64,"value":624},{"type":59,"tag":259,"props":2653,"children":2654},{"class":261,"line":553},[2655,2660,2664,2669,2673],{"type":59,"tag":259,"props":2656,"children":2657},{"style":2361},[2658],{"type":64,"value":2659},"  height",{"type":59,"tag":259,"props":2661,"children":2662},{"style":266},[2663],{"type":64,"value":698},{"type":59,"tag":259,"props":2665,"children":2666},{"style":1658},[2667],{"type":64,"value":2668}," 100vh",{"type":59,"tag":259,"props":2670,"children":2671},{"style":1658},[2672],{"type":64,"value":2550},{"type":59,"tag":259,"props":2674,"children":2675},{"style":266},[2676],{"type":64,"value":624},{"type":59,"tag":259,"props":2678,"children":2679},{"class":261,"line":569},[2680],{"type":59,"tag":259,"props":2681,"children":2682},{"style":573},[2683],{"type":64,"value":2684},"  \u002F* Critical for SPAs (React\u002FNext\u002Fetc): ensure Zoom UI isn't behind your app shell\u002Foverlays. *\u002F\n",{"type":59,"tag":259,"props":2686,"children":2687},{"class":261,"line":579},[2688,2693,2697,2702,2706],{"type":59,"tag":259,"props":2689,"children":2690},{"style":2361},[2691],{"type":64,"value":2692},"  z-index",{"type":59,"tag":259,"props":2694,"children":2695},{"style":266},[2696],{"type":64,"value":698},{"type":59,"tag":259,"props":2698,"children":2699},{"style":1658},[2700],{"type":64,"value":2701}," 9999",{"type":59,"tag":259,"props":2703,"children":2704},{"style":1658},[2705],{"type":64,"value":2550},{"type":59,"tag":259,"props":2707,"children":2708},{"style":266},[2709],{"type":64,"value":624},{"type":59,"tag":259,"props":2711,"children":2712},{"class":261,"line":588},[2713,2718,2722,2727,2731,2736,2740,2744],{"type":59,"tag":259,"props":2714,"children":2715},{"style":2361},[2716],{"type":64,"value":2717},"  transform",{"type":59,"tag":259,"props":2719,"children":2720},{"style":266},[2721],{"type":64,"value":698},{"type":59,"tag":259,"props":2723,"children":2724},{"style":611},[2725],{"type":64,"value":2726}," scale",{"type":59,"tag":259,"props":2728,"children":2729},{"style":266},[2730],{"type":64,"value":679},{"type":59,"tag":259,"props":2732,"children":2733},{"style":1658},[2734],{"type":64,"value":2735},"0.95",{"type":59,"tag":259,"props":2737,"children":2738},{"style":266},[2739],{"type":64,"value":1025},{"type":59,"tag":259,"props":2741,"children":2742},{"style":1658},[2743],{"type":64,"value":2550},{"type":59,"tag":259,"props":2745,"children":2746},{"style":266},[2747],{"type":64,"value":624},{"type":59,"tag":259,"props":2749,"children":2750},{"class":261,"line":596},[2751,2756,2760,2765,2769],{"type":59,"tag":259,"props":2752,"children":2753},{"style":2361},[2754],{"type":64,"value":2755},"  transform-origin",{"type":59,"tag":259,"props":2757,"children":2758},{"style":266},[2759],{"type":64,"value":698},{"type":59,"tag":259,"props":2761,"children":2762},{"style":600},[2763],{"type":64,"value":2764}," top center ",{"type":59,"tag":259,"props":2766,"children":2767},{"style":1658},[2768],{"type":64,"value":2525},{"type":59,"tag":259,"props":2770,"children":2771},{"style":266},[2772],{"type":64,"value":624},{"type":59,"tag":259,"props":2774,"children":2775},{"class":261,"line":627},[2776],{"type":59,"tag":259,"props":2777,"children":2778},{"style":266},[2779],{"type":64,"value":2780},"}\n",{"type":59,"tag":1276,"props":2782,"children":2784},{"id":2783},"_5-hide-your-app-when-meeting-starts",[2785],{"type":64,"value":2786},"5. Hide Your App When Meeting Starts",{"type":59,"tag":67,"props":2788,"children":2789},{},[2790],{"type":64,"value":2791},"Client View takes over full page. Hide your UI:",{"type":59,"tag":248,"props":2793,"children":2795},{"className":1405,"code":2794,"language":1407,"meta":253,"style":253},"\u002F\u002F In ZoomMtg.init success callback:\ndocument.documentElement.classList.add('meeting-active');\ndocument.body.classList.add('meeting-active');\n",[2796],{"type":59,"tag":73,"props":2797,"children":2798},{"__ignoreMap":253},[2799,2807,2867],{"type":59,"tag":259,"props":2800,"children":2801},{"class":261,"line":262},[2802],{"type":59,"tag":259,"props":2803,"children":2804},{"style":573},[2805],{"type":64,"value":2806},"\u002F\u002F In ZoomMtg.init success callback:\n",{"type":59,"tag":259,"props":2808,"children":2809},{"class":261,"line":318},[2810,2815,2819,2824,2828,2833,2837,2842,2846,2850,2855,2859,2863],{"type":59,"tag":259,"props":2811,"children":2812},{"style":600},[2813],{"type":64,"value":2814},"document",{"type":59,"tag":259,"props":2816,"children":2817},{"style":266},[2818],{"type":64,"value":608},{"type":59,"tag":259,"props":2820,"children":2821},{"style":600},[2822],{"type":64,"value":2823},"documentElement",{"type":59,"tag":259,"props":2825,"children":2826},{"style":266},[2827],{"type":64,"value":608},{"type":59,"tag":259,"props":2829,"children":2830},{"style":600},[2831],{"type":64,"value":2832},"classList",{"type":59,"tag":259,"props":2834,"children":2835},{"style":266},[2836],{"type":64,"value":608},{"type":59,"tag":259,"props":2838,"children":2839},{"style":611},[2840],{"type":64,"value":2841},"add",{"type":59,"tag":259,"props":2843,"children":2844},{"style":600},[2845],{"type":64,"value":679},{"type":59,"tag":259,"props":2847,"children":2848},{"style":266},[2849],{"type":64,"value":866},{"type":59,"tag":259,"props":2851,"children":2852},{"style":294},[2853],{"type":64,"value":2854},"meeting-active",{"type":59,"tag":259,"props":2856,"children":2857},{"style":266},[2858],{"type":64,"value":866},{"type":59,"tag":259,"props":2860,"children":2861},{"style":600},[2862],{"type":64,"value":1025},{"type":59,"tag":259,"props":2864,"children":2865},{"style":266},[2866],{"type":64,"value":624},{"type":59,"tag":259,"props":2868,"children":2869},{"class":261,"line":363},[2870,2874,2878,2882,2886,2890,2894,2898,2902,2906,2910,2914,2918],{"type":59,"tag":259,"props":2871,"children":2872},{"style":600},[2873],{"type":64,"value":2814},{"type":59,"tag":259,"props":2875,"children":2876},{"style":266},[2877],{"type":64,"value":608},{"type":59,"tag":259,"props":2879,"children":2880},{"style":600},[2881],{"type":64,"value":1593},{"type":59,"tag":259,"props":2883,"children":2884},{"style":266},[2885],{"type":64,"value":608},{"type":59,"tag":259,"props":2887,"children":2888},{"style":600},[2889],{"type":64,"value":2832},{"type":59,"tag":259,"props":2891,"children":2892},{"style":266},[2893],{"type":64,"value":608},{"type":59,"tag":259,"props":2895,"children":2896},{"style":611},[2897],{"type":64,"value":2841},{"type":59,"tag":259,"props":2899,"children":2900},{"style":600},[2901],{"type":64,"value":679},{"type":59,"tag":259,"props":2903,"children":2904},{"style":266},[2905],{"type":64,"value":866},{"type":59,"tag":259,"props":2907,"children":2908},{"style":294},[2909],{"type":64,"value":2854},{"type":59,"tag":259,"props":2911,"children":2912},{"style":266},[2913],{"type":64,"value":866},{"type":59,"tag":259,"props":2915,"children":2916},{"style":600},[2917],{"type":64,"value":1025},{"type":59,"tag":259,"props":2919,"children":2920},{"style":266},[2921],{"type":64,"value":624},{"type":59,"tag":248,"props":2923,"children":2925},{"className":2331,"code":2924,"language":2333,"meta":253,"style":253},"body.meeting-active .your-app { display: none !important; }\nbody.meeting-active { background: #000 !important; }\n",[2926],{"type":59,"tag":73,"props":2927,"children":2928},{"__ignoreMap":253},[2929,2982],{"type":59,"tag":259,"props":2930,"children":2931},{"class":261,"line":262},[2932,2936,2940,2944,2948,2952,2956,2961,2965,2970,2974,2978],{"type":59,"tag":259,"props":2933,"children":2934},{"style":2351},[2935],{"type":64,"value":1593},{"type":59,"tag":259,"props":2937,"children":2938},{"style":266},[2939],{"type":64,"value":608},{"type":59,"tag":259,"props":2941,"children":2942},{"style":2351},[2943],{"type":64,"value":2854},{"type":59,"tag":259,"props":2945,"children":2946},{"style":266},[2947],{"type":64,"value":2434},{"type":59,"tag":259,"props":2949,"children":2950},{"style":2351},[2951],{"type":64,"value":2425},{"type":59,"tag":259,"props":2953,"children":2954},{"style":266},[2955],{"type":64,"value":1030},{"type":59,"tag":259,"props":2957,"children":2958},{"style":2361},[2959],{"type":64,"value":2960}," display",{"type":59,"tag":259,"props":2962,"children":2963},{"style":266},[2964],{"type":64,"value":698},{"type":59,"tag":259,"props":2966,"children":2967},{"style":600},[2968],{"type":64,"value":2969}," none ",{"type":59,"tag":259,"props":2971,"children":2972},{"style":1658},[2973],{"type":64,"value":2525},{"type":59,"tag":259,"props":2975,"children":2976},{"style":266},[2977],{"type":64,"value":1070},{"type":59,"tag":259,"props":2979,"children":2980},{"style":266},[2981],{"type":64,"value":1143},{"type":59,"tag":259,"props":2983,"children":2984},{"class":261,"line":318},[2985,2989,2993,2997,3001,3006,3010,3015,3020,3024,3028],{"type":59,"tag":259,"props":2986,"children":2987},{"style":2351},[2988],{"type":64,"value":1593},{"type":59,"tag":259,"props":2990,"children":2991},{"style":266},[2992],{"type":64,"value":608},{"type":59,"tag":259,"props":2994,"children":2995},{"style":2351},[2996],{"type":64,"value":2854},{"type":59,"tag":259,"props":2998,"children":2999},{"style":266},[3000],{"type":64,"value":1030},{"type":59,"tag":259,"props":3002,"children":3003},{"style":2361},[3004],{"type":64,"value":3005}," background",{"type":59,"tag":259,"props":3007,"children":3008},{"style":266},[3009],{"type":64,"value":698},{"type":59,"tag":259,"props":3011,"children":3012},{"style":266},[3013],{"type":64,"value":3014}," #",{"type":59,"tag":259,"props":3016,"children":3017},{"style":600},[3018],{"type":64,"value":3019},"000 ",{"type":59,"tag":259,"props":3021,"children":3022},{"style":1658},[3023],{"type":64,"value":2525},{"type":59,"tag":259,"props":3025,"children":3026},{"style":266},[3027],{"type":64,"value":1070},{"type":59,"tag":259,"props":3029,"children":3030},{"style":266},[3031],{"type":64,"value":1143},{"type":59,"tag":101,"props":3033,"children":3035},{"id":3034},"ui-options-web",[3036],{"type":64,"value":3037},"UI Options (Web)",{"type":59,"tag":67,"props":3039,"children":3040},{},[3041,3043,3048],{"type":64,"value":3042},"Meeting SDK provides ",{"type":59,"tag":174,"props":3044,"children":3045},{},[3046],{"type":64,"value":3047},"Zoom's UI with customization options",{"type":64,"value":698},{"type":59,"tag":1283,"props":3050,"children":3051},{},[3052,3068],{"type":59,"tag":1287,"props":3053,"children":3054},{},[3055],{"type":59,"tag":1291,"props":3056,"children":3057},{},[3058,3063],{"type":59,"tag":1295,"props":3059,"children":3060},{},[3061],{"type":64,"value":3062},"View",{"type":59,"tag":1295,"props":3064,"children":3065},{},[3066],{"type":64,"value":3067},"Description",{"type":59,"tag":1316,"props":3069,"children":3070},{},[3071,3087],{"type":59,"tag":1291,"props":3072,"children":3073},{},[3074,3082],{"type":59,"tag":1323,"props":3075,"children":3076},{},[3077],{"type":59,"tag":174,"props":3078,"children":3079},{},[3080],{"type":64,"value":3081},"Component View",{"type":59,"tag":1323,"props":3083,"children":3084},{},[3085],{"type":64,"value":3086},"Extractable, customizable UI - embed meeting in a div",{"type":59,"tag":1291,"props":3088,"children":3089},{},[3090,3098],{"type":59,"tag":1323,"props":3091,"children":3092},{},[3093],{"type":59,"tag":174,"props":3094,"children":3095},{},[3096],{"type":64,"value":3097},"Client View",{"type":59,"tag":1323,"props":3099,"children":3100},{},[3101],{"type":64,"value":3102},"Full-page Zoom UI experience",{"type":59,"tag":67,"props":3104,"children":3105},{},[3106,3111],{"type":59,"tag":174,"props":3107,"children":3108},{},[3109],{"type":64,"value":3110},"Note",{"type":64,"value":3112},": Unlike Video SDK where you build the UI from scratch, Meeting SDK uses Zoom's UI as the base with customization on top.",{"type":59,"tag":101,"props":3114,"children":3116},{"id":3115},"key-concepts",[3117],{"type":64,"value":3118},"Key Concepts",{"type":59,"tag":1283,"props":3120,"children":3121},{},[3122,3137],{"type":59,"tag":1287,"props":3123,"children":3124},{},[3125],{"type":59,"tag":1291,"props":3126,"children":3127},{},[3128,3133],{"type":59,"tag":1295,"props":3129,"children":3130},{},[3131],{"type":64,"value":3132},"Concept",{"type":59,"tag":1295,"props":3134,"children":3135},{},[3136],{"type":64,"value":3067},{"type":59,"tag":1316,"props":3138,"children":3139},{},[3140,3153,3166,3178],{"type":59,"tag":1291,"props":3141,"children":3142},{},[3143,3148],{"type":59,"tag":1323,"props":3144,"children":3145},{},[3146],{"type":64,"value":3147},"SDK Key\u002FSecret",{"type":59,"tag":1323,"props":3149,"children":3150},{},[3151],{"type":64,"value":3152},"Credentials from Marketplace",{"type":59,"tag":1291,"props":3154,"children":3155},{},[3156,3161],{"type":59,"tag":1323,"props":3157,"children":3158},{},[3159],{"type":64,"value":3160},"Signature",{"type":59,"tag":1323,"props":3162,"children":3163},{},[3164],{"type":64,"value":3165},"JWT signed with SDK Secret",{"type":59,"tag":1291,"props":3167,"children":3168},{},[3169,3173],{"type":59,"tag":1323,"props":3170,"children":3171},{},[3172],{"type":64,"value":3081},{"type":59,"tag":1323,"props":3174,"children":3175},{},[3176],{"type":64,"value":3177},"Extractable, customizable UI (Web)",{"type":59,"tag":1291,"props":3179,"children":3180},{},[3181,3185],{"type":59,"tag":1323,"props":3182,"children":3183},{},[3184],{"type":64,"value":3097},{"type":59,"tag":1323,"props":3186,"children":3187},{},[3188],{"type":64,"value":3189},"Full-page Zoom UI (Web)",{"type":59,"tag":101,"props":3191,"children":3193},{"id":3192},"detailed-references",[3194],{"type":64,"value":3195},"Detailed References",{"type":59,"tag":1276,"props":3197,"children":3199},{"id":3198},"platform-guides",[3200],{"type":64,"value":3201},"Platform Guides",{"type":59,"tag":108,"props":3203,"children":3204},{},[3205,3218,3231,3244,3257,3270,3283,3296,3309,3322,3335,3348,3361,3374,3387,3400,3413,3425,3438,3450,3463,3476,3489],{"type":59,"tag":112,"props":3206,"children":3207},{},[3208,3216],{"type":59,"tag":174,"props":3209,"children":3210},{},[3211],{"type":59,"tag":185,"props":3212,"children":3214},{"href":3213},"android\u002FSKILL.md",[3215],{"type":64,"value":3213},{"type":64,"value":3217}," - Android SDK (default\u002Fcustom UI, join\u002Fstart\u002Fauth lifecycle, mobile integration)",{"type":59,"tag":112,"props":3219,"children":3220},{},[3221,3229],{"type":59,"tag":174,"props":3222,"children":3223},{},[3224],{"type":59,"tag":185,"props":3225,"children":3227},{"href":3226},"android\u002Freferences\u002Fandroid-reference-map.md",[3228],{"type":64,"value":3226},{"type":64,"value":3230}," - Android API surface map and drift watchpoints",{"type":59,"tag":112,"props":3232,"children":3233},{},[3234,3242],{"type":59,"tag":174,"props":3235,"children":3236},{},[3237],{"type":59,"tag":185,"props":3238,"children":3240},{"href":3239},"ios\u002FSKILL.md",[3241],{"type":64,"value":3239},{"type":64,"value":3243}," - iOS SDK (default\u002Fcustom UI, join\u002Fstart\u002Fauth lifecycle, mobile integration)",{"type":59,"tag":112,"props":3245,"children":3246},{},[3247,3255],{"type":59,"tag":174,"props":3248,"children":3249},{},[3250],{"type":59,"tag":185,"props":3251,"children":3253},{"href":3252},"ios\u002Freferences\u002Fios-reference-map.md",[3254],{"type":64,"value":3252},{"type":64,"value":3256}," - iOS API surface map and drift watchpoints",{"type":59,"tag":112,"props":3258,"children":3259},{},[3260,3268],{"type":59,"tag":174,"props":3261,"children":3262},{},[3263],{"type":59,"tag":185,"props":3264,"children":3266},{"href":3265},"macos\u002FSKILL.md",[3267],{"type":64,"value":3265},{"type":64,"value":3269}," - macOS SDK (desktop default\u002Fcustom UI, service controllers, host flows)",{"type":59,"tag":112,"props":3271,"children":3272},{},[3273,3281],{"type":59,"tag":174,"props":3274,"children":3275},{},[3276],{"type":59,"tag":185,"props":3277,"children":3279},{"href":3278},"macos\u002Freferences\u002Fmacos-reference-map.md",[3280],{"type":64,"value":3278},{"type":64,"value":3282}," - macOS API surface map and drift watchpoints",{"type":59,"tag":112,"props":3284,"children":3285},{},[3286,3294],{"type":59,"tag":174,"props":3287,"children":3288},{},[3289],{"type":59,"tag":185,"props":3290,"children":3292},{"href":3291},"unreal\u002FSKILL.md",[3293],{"type":64,"value":3291},{"type":64,"value":3295}," - Unreal Engine wrapper (C++\u002FBlueprint wrapper behavior and SDK mapping)",{"type":59,"tag":112,"props":3297,"children":3298},{},[3299,3307],{"type":59,"tag":174,"props":3300,"children":3301},{},[3302],{"type":59,"tag":185,"props":3303,"children":3305},{"href":3304},"unreal\u002Freferences\u002Funreal-reference-map.md",[3306],{"type":64,"value":3304},{"type":64,"value":3308}," - Unreal wrapper reference map and version-lag notes",{"type":59,"tag":112,"props":3310,"children":3311},{},[3312,3320],{"type":59,"tag":174,"props":3313,"children":3314},{},[3315],{"type":59,"tag":185,"props":3316,"children":3318},{"href":3317},"references\u002Fandroid.md",[3319],{"type":64,"value":3317},{"type":64,"value":3321}," - Android pointer doc for fast routing from broad Meeting SDK queries",{"type":59,"tag":112,"props":3323,"children":3324},{},[3325,3333],{"type":59,"tag":174,"props":3326,"children":3327},{},[3328],{"type":59,"tag":185,"props":3329,"children":3331},{"href":3330},"references\u002Fios.md",[3332],{"type":64,"value":3330},{"type":64,"value":3334}," - iOS pointer doc for fast routing from broad Meeting SDK queries",{"type":59,"tag":112,"props":3336,"children":3337},{},[3338,3346],{"type":59,"tag":174,"props":3339,"children":3340},{},[3341],{"type":59,"tag":185,"props":3342,"children":3344},{"href":3343},"references\u002Fmacos.md",[3345],{"type":64,"value":3343},{"type":64,"value":3347}," - macOS pointer doc for fast routing from broad Meeting SDK queries",{"type":59,"tag":112,"props":3349,"children":3350},{},[3351,3359],{"type":59,"tag":174,"props":3352,"children":3353},{},[3354],{"type":59,"tag":185,"props":3355,"children":3357},{"href":3356},"references\u002Funreal.md",[3358],{"type":64,"value":3356},{"type":64,"value":3360}," - Unreal pointer doc for fast routing from broad Meeting SDK queries",{"type":59,"tag":112,"props":3362,"children":3363},{},[3364,3372],{"type":59,"tag":174,"props":3365,"children":3366},{},[3367],{"type":59,"tag":185,"props":3368,"children":3370},{"href":3369},"linux\u002FSKILL.md",[3371],{"type":64,"value":3369},{"type":64,"value":3373}," - Linux SDK headless bot skill entrypoint",{"type":59,"tag":112,"props":3375,"children":3376},{},[3377,3385],{"type":59,"tag":174,"props":3378,"children":3379},{},[3380],{"type":59,"tag":185,"props":3381,"children":3383},{"href":3382},"linux\u002Flinux.md",[3384],{"type":64,"value":3382},{"type":64,"value":3386}," - Linux SDK (C++ headless bots, raw media access)",{"type":59,"tag":112,"props":3388,"children":3389},{},[3390,3398],{"type":59,"tag":174,"props":3391,"children":3392},{},[3393],{"type":59,"tag":185,"props":3394,"children":3396},{"href":3395},"linux\u002Freferences\u002Flinux-reference.md",[3397],{"type":64,"value":3395},{"type":64,"value":3399}," - Linux dependencies, Docker, troubleshooting",{"type":59,"tag":112,"props":3401,"children":3402},{},[3403,3411],{"type":59,"tag":174,"props":3404,"children":3405},{},[3406],{"type":59,"tag":185,"props":3407,"children":3409},{"href":3408},"react-native\u002FSKILL.md",[3410],{"type":64,"value":3408},{"type":64,"value":3412}," - React Native SDK (iOS\u002FAndroid wrapper, join\u002Fstart flows, bridge setup)",{"type":59,"tag":112,"props":3414,"children":3415},{},[3416,3423],{"type":59,"tag":174,"props":3417,"children":3418},{},[3419],{"type":59,"tag":185,"props":3420,"children":3421},{"href":3408},[3422],{"type":64,"value":3408},{"type":64,"value":3424}," - React Native complete navigation",{"type":59,"tag":112,"props":3426,"children":3427},{},[3428,3436],{"type":59,"tag":174,"props":3429,"children":3430},{},[3431],{"type":59,"tag":185,"props":3432,"children":3434},{"href":3433},"electron\u002FSKILL.md",[3435],{"type":64,"value":3433},{"type":64,"value":3437}," - Electron SDK (desktop wrapper, auth\u002Fjoin flows, module controllers, raw data)",{"type":59,"tag":112,"props":3439,"children":3440},{},[3441,3448],{"type":59,"tag":174,"props":3442,"children":3443},{},[3444],{"type":59,"tag":185,"props":3445,"children":3446},{"href":3433},[3447],{"type":64,"value":3433},{"type":64,"value":3449}," - Electron complete navigation",{"type":59,"tag":112,"props":3451,"children":3452},{},[3453,3461],{"type":59,"tag":174,"props":3454,"children":3455},{},[3456],{"type":59,"tag":185,"props":3457,"children":3459},{"href":3458},"windows\u002FSKILL.md",[3460],{"type":64,"value":3458},{"type":64,"value":3462}," - Windows SDK (C++ desktop applications, raw media access)",{"type":59,"tag":112,"props":3464,"children":3465},{},[3466,3474],{"type":59,"tag":174,"props":3467,"children":3468},{},[3469],{"type":59,"tag":185,"props":3470,"children":3472},{"href":3471},"windows\u002Freferences\u002Fwindows-reference.md",[3473],{"type":64,"value":3471},{"type":64,"value":3475}," - Windows dependencies, Visual Studio setup, troubleshooting",{"type":59,"tag":112,"props":3477,"children":3478},{},[3479,3487],{"type":59,"tag":174,"props":3480,"children":3481},{},[3482],{"type":59,"tag":185,"props":3483,"children":3485},{"href":3484},"web\u002Freferences\u002Fweb.md",[3486],{"type":64,"value":3484},{"type":64,"value":3488}," - Web SDK (Component + Client View)",{"type":59,"tag":112,"props":3490,"children":3491},{},[3492,3500],{"type":59,"tag":174,"props":3493,"children":3494},{},[3495],{"type":59,"tag":185,"props":3496,"children":3498},{"href":3497},"web\u002Freferences\u002Fweb-tracking-id.md",[3499],{"type":64,"value":3497},{"type":64,"value":3501}," - Tracking ID configuration",{"type":59,"tag":1276,"props":3503,"children":3505},{"id":3504},"features",[3506],{"type":64,"value":3507},"Features",{"type":59,"tag":108,"props":3509,"children":3510},{},[3511,3524,3537,3550,3563,3576,3589,3602,3615,3628],{"type":59,"tag":112,"props":3512,"children":3513},{},[3514,3522],{"type":59,"tag":174,"props":3515,"children":3516},{},[3517],{"type":59,"tag":185,"props":3518,"children":3520},{"href":3519},"references\u002Fauthorization.md",[3521],{"type":64,"value":3519},{"type":64,"value":3523}," - SDK JWT generation",{"type":59,"tag":112,"props":3525,"children":3526},{},[3527,3535],{"type":59,"tag":174,"props":3528,"children":3529},{},[3530],{"type":59,"tag":185,"props":3531,"children":3533},{"href":3532},"references\u002Fbot-authentication.md",[3534],{"type":64,"value":3532},{"type":64,"value":3536}," - ZAK vs OBF vs JWT tokens for bots",{"type":59,"tag":112,"props":3538,"children":3539},{},[3540,3548],{"type":59,"tag":174,"props":3541,"children":3542},{},[3543],{"type":59,"tag":185,"props":3544,"children":3546},{"href":3545},"references\u002Fbreakout-rooms.md",[3547],{"type":64,"value":3545},{"type":64,"value":3549}," - Programmatic breakout room management",{"type":59,"tag":112,"props":3551,"children":3552},{},[3553,3561],{"type":59,"tag":174,"props":3554,"children":3555},{},[3556],{"type":59,"tag":185,"props":3557,"children":3559},{"href":3558},"references\u002Fai-companion.md",[3560],{"type":64,"value":3558},{"type":64,"value":3562}," - AI Companion controls in meetings",{"type":59,"tag":112,"props":3564,"children":3565},{},[3566,3574],{"type":59,"tag":174,"props":3567,"children":3568},{},[3569],{"type":59,"tag":185,"props":3570,"children":3572},{"href":3571},"references\u002Fwebinars.md",[3573],{"type":64,"value":3571},{"type":64,"value":3575}," - Webinar SDK features",{"type":59,"tag":112,"props":3577,"children":3578},{},[3579,3587],{"type":59,"tag":174,"props":3580,"children":3581},{},[3582],{"type":59,"tag":185,"props":3583,"children":3585},{"href":3584},"references\u002Fforum-top-questions.md",[3586],{"type":64,"value":3584},{"type":64,"value":3588}," - Common forum question patterns (what to cover)",{"type":59,"tag":112,"props":3590,"children":3591},{},[3592,3600],{"type":59,"tag":174,"props":3593,"children":3594},{},[3595],{"type":59,"tag":185,"props":3596,"children":3598},{"href":3597},"references\u002Ftriage-intake.md",[3599],{"type":64,"value":3597},{"type":64,"value":3601}," - What to ask first (turn vague reports into answers)",{"type":59,"tag":112,"props":3603,"children":3604},{},[3605,3613],{"type":59,"tag":174,"props":3606,"children":3607},{},[3608],{"type":59,"tag":185,"props":3609,"children":3611},{"href":3610},"references\u002Fsignature-playbook.md",[3612],{"type":64,"value":3610},{"type":64,"value":3614}," - Signature\u002Froot-cause playbook",{"type":59,"tag":112,"props":3616,"children":3617},{},[3618,3626],{"type":59,"tag":174,"props":3619,"children":3620},{},[3621],{"type":59,"tag":185,"props":3622,"children":3624},{"href":3623},"references\u002Fmultiple-meetings.md",[3625],{"type":64,"value":3623},{"type":64,"value":3627}," - Joining multiple meetings \u002F multiple instances",{"type":59,"tag":112,"props":3629,"children":3630},{},[3631,3639],{"type":59,"tag":174,"props":3632,"children":3633},{},[3634],{"type":59,"tag":185,"props":3635,"children":3637},{"href":3636},"references\u002Ftroubleshooting.md",[3638],{"type":64,"value":3636},{"type":64,"value":3640}," - Common issues and solutions",{"type":59,"tag":101,"props":3642,"children":3644},{"id":3643},"sample-repositories",[3645],{"type":64,"value":3646},"Sample Repositories",{"type":59,"tag":1276,"props":3648,"children":3650},{"id":3649},"official-by-zoom",[3651],{"type":64,"value":3652},"Official (by Zoom)",{"type":59,"tag":1283,"props":3654,"children":3655},{},[3656,3677],{"type":59,"tag":1287,"props":3657,"children":3658},{},[3659],{"type":59,"tag":1291,"props":3660,"children":3661},{},[3662,3667,3672],{"type":59,"tag":1295,"props":3663,"children":3664},{},[3665],{"type":64,"value":3666},"Type",{"type":59,"tag":1295,"props":3668,"children":3669},{},[3670],{"type":64,"value":3671},"Repository",{"type":59,"tag":1295,"props":3673,"children":3674},{},[3675],{"type":64,"value":3676},"Stars",{"type":59,"tag":1316,"props":3678,"children":3679},{},[3680,3704,3727,3750,3773,3796,3819,3842],{"type":59,"tag":1291,"props":3681,"children":3682},{},[3683,3688,3699],{"type":59,"tag":1323,"props":3684,"children":3685},{},[3686],{"type":64,"value":3687},"Linux Headless",{"type":59,"tag":1323,"props":3689,"children":3690},{},[3691],{"type":59,"tag":185,"props":3692,"children":3696},{"href":3693,"rel":3694},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-headless-linux-sample",[3695],"nofollow",[3697],{"type":64,"value":3698},"meetingsdk-headless-linux-sample",{"type":59,"tag":1323,"props":3700,"children":3701},{},[3702],{"type":64,"value":3703},"4",{"type":59,"tag":1291,"props":3705,"children":3706},{},[3707,3712,3722],{"type":59,"tag":1323,"props":3708,"children":3709},{},[3710],{"type":64,"value":3711},"Linux Raw Data",{"type":59,"tag":1323,"props":3713,"children":3714},{},[3715],{"type":59,"tag":185,"props":3716,"children":3719},{"href":3717,"rel":3718},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-linux-raw-recording-sample",[3695],[3720],{"type":64,"value":3721},"meetingsdk-linux-raw-recording-sample",{"type":59,"tag":1323,"props":3723,"children":3724},{},[3725],{"type":64,"value":3726},"0",{"type":59,"tag":1291,"props":3728,"children":3729},{},[3730,3735,3745],{"type":59,"tag":1323,"props":3731,"children":3732},{},[3733],{"type":64,"value":3734},"Web",{"type":59,"tag":1323,"props":3736,"children":3737},{},[3738],{"type":59,"tag":185,"props":3739,"children":3742},{"href":3740,"rel":3741},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web-sample",[3695],[3743],{"type":64,"value":3744},"meetingsdk-web-sample",{"type":59,"tag":1323,"props":3746,"children":3747},{},[3748],{"type":64,"value":3749},"643",{"type":59,"tag":1291,"props":3751,"children":3752},{},[3753,3758,3768],{"type":59,"tag":1323,"props":3754,"children":3755},{},[3756],{"type":64,"value":3757},"Web NPM",{"type":59,"tag":1323,"props":3759,"children":3760},{},[3761],{"type":59,"tag":185,"props":3762,"children":3765},{"href":3763,"rel":3764},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-web",[3695],[3766],{"type":64,"value":3767},"meetingsdk-web",{"type":59,"tag":1323,"props":3769,"children":3770},{},[3771],{"type":64,"value":3772},"324",{"type":59,"tag":1291,"props":3774,"children":3775},{},[3776,3781,3791],{"type":59,"tag":1323,"props":3777,"children":3778},{},[3779],{"type":64,"value":3780},"React",{"type":59,"tag":1323,"props":3782,"children":3783},{},[3784],{"type":59,"tag":185,"props":3785,"children":3788},{"href":3786,"rel":3787},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-react-sample",[3695],[3789],{"type":64,"value":3790},"meetingsdk-react-sample",{"type":59,"tag":1323,"props":3792,"children":3793},{},[3794],{"type":64,"value":3795},"177",{"type":59,"tag":1291,"props":3797,"children":3798},{},[3799,3804,3814],{"type":59,"tag":1323,"props":3800,"children":3801},{},[3802],{"type":64,"value":3803},"Auth",{"type":59,"tag":1323,"props":3805,"children":3806},{},[3807],{"type":59,"tag":185,"props":3808,"children":3811},{"href":3809,"rel":3810},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-auth-endpoint-sample",[3695],[3812],{"type":64,"value":3813},"meetingsdk-auth-endpoint-sample",{"type":59,"tag":1323,"props":3815,"children":3816},{},[3817],{"type":64,"value":3818},"124",{"type":59,"tag":1291,"props":3820,"children":3821},{},[3822,3827,3837],{"type":59,"tag":1323,"props":3823,"children":3824},{},[3825],{"type":64,"value":3826},"Angular",{"type":59,"tag":1323,"props":3828,"children":3829},{},[3830],{"type":59,"tag":185,"props":3831,"children":3834},{"href":3832,"rel":3833},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-angular-sample",[3695],[3835],{"type":64,"value":3836},"meetingsdk-angular-sample",{"type":59,"tag":1323,"props":3838,"children":3839},{},[3840],{"type":64,"value":3841},"60",{"type":59,"tag":1291,"props":3843,"children":3844},{},[3845,3850,3860],{"type":59,"tag":1323,"props":3846,"children":3847},{},[3848],{"type":64,"value":3849},"Vue.js",{"type":59,"tag":1323,"props":3851,"children":3852},{},[3853],{"type":59,"tag":185,"props":3854,"children":3857},{"href":3855,"rel":3856},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fmeetingsdk-vuejs-sample",[3695],[3858],{"type":64,"value":3859},"meetingsdk-vuejs-sample",{"type":59,"tag":1323,"props":3861,"children":3862},{},[3863],{"type":64,"value":3864},"42",{"type":59,"tag":67,"props":3866,"children":3867},{},[3868,3873,3875],{"type":59,"tag":174,"props":3869,"children":3870},{},[3871],{"type":64,"value":3872},"Full list",{"type":64,"value":3874},": See ",{"type":59,"tag":185,"props":3876,"children":3878},{"href":3877},"..\u002Fgeneral\u002Freferences\u002Fcommunity-repos.md",[3879],{"type":64,"value":3880},"general\u002Freferences\u002Fcommunity-repos.md",{"type":59,"tag":101,"props":3882,"children":3884},{"id":3883},"resources",[3885],{"type":64,"value":3886},"Resources",{"type":59,"tag":108,"props":3888,"children":3889},{},[3890,3906],{"type":59,"tag":112,"props":3891,"children":3892},{},[3893,3898,3900],{"type":59,"tag":174,"props":3894,"children":3895},{},[3896],{"type":64,"value":3897},"Official docs",{"type":64,"value":3899},": ",{"type":59,"tag":185,"props":3901,"children":3904},{"href":3902,"rel":3903},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Fmeeting-sdk\u002F",[3695],[3905],{"type":64,"value":3902},{"type":59,"tag":112,"props":3907,"children":3908},{},[3909,3914,3915],{"type":59,"tag":174,"props":3910,"children":3911},{},[3912],{"type":64,"value":3913},"Developer forum",{"type":64,"value":3899},{"type":59,"tag":185,"props":3916,"children":3919},{"href":3917,"rel":3918},"https:\u002F\u002Fdevforum.zoom.us\u002F",[3695],[3920],{"type":64,"value":3917},{"type":59,"tag":101,"props":3922,"children":3924},{"id":3923},"environment-variables",[3925],{"type":64,"value":3926},"Environment Variables",{"type":59,"tag":108,"props":3928,"children":3929},{},[3930],{"type":59,"tag":112,"props":3931,"children":3932},{},[3933,3935,3940,3942,3948],{"type":64,"value":3934},"See ",{"type":59,"tag":185,"props":3936,"children":3938},{"href":3937},"references\u002Fenvironment-variables.md",[3939],{"type":64,"value":3937},{"type":64,"value":3941}," for standardized ",{"type":59,"tag":73,"props":3943,"children":3945},{"className":3944},[],[3946],{"type":64,"value":3947},".env",{"type":64,"value":3949}," keys and where to find each value.",{"type":59,"tag":3951,"props":3952,"children":3953},"style",{},[3954],{"type":64,"value":3955},"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":3957,"total":4140},[3958,3978,3992,4004,4023,4036,4057,4074,4088,4103,4111,4124],{"slug":3959,"name":3959,"fn":3960,"description":3961,"org":3962,"tags":3963,"stars":3975,"repoUrl":3976,"updatedAt":3977},"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},[3964,3967,3970,3973],{"name":3965,"slug":3966,"type":16},"Creative","creative",{"name":3968,"slug":3969,"type":16},"Design","design",{"name":3971,"slug":3972,"type":16},"Generative Art","generative-art",{"name":3974,"slug":1407,"type":16},"JavaScript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":3979,"name":3979,"fn":3980,"description":3981,"org":3982,"tags":3983,"stars":3975,"repoUrl":3976,"updatedAt":3991},"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},[3984,3987,3988],{"name":3985,"slug":3986,"type":16},"Branding","branding",{"name":3968,"slug":3969,"type":16},{"name":3989,"slug":3990,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":3993,"name":3993,"fn":3994,"description":3995,"org":3996,"tags":3997,"stars":3975,"repoUrl":3976,"updatedAt":4003},"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},[3998,3999,4000],{"name":3965,"slug":3966,"type":16},{"name":3968,"slug":3969,"type":16},{"name":4001,"slug":4002,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":4005,"name":4005,"fn":4006,"description":4007,"org":4008,"tags":4009,"stars":3975,"repoUrl":3976,"updatedAt":4022},"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},[4010,4013,4014,4017,4019],{"name":4011,"slug":4012,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":4015,"slug":4016,"type":16},"Anthropic SDK","anthropic-sdk",{"name":4018,"slug":4005,"type":16},"Claude API",{"name":4020,"slug":4021,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":4024,"name":4024,"fn":4025,"description":4026,"org":4027,"tags":4028,"stars":3975,"repoUrl":3976,"updatedAt":4035},"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},[4029,4032],{"name":4030,"slug":4031,"type":16},"Documentation","documentation",{"name":4033,"slug":4034,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":4037,"name":4037,"fn":4038,"description":4039,"org":4040,"tags":4041,"stars":3975,"repoUrl":3976,"updatedAt":4056},"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},[4042,4045,4047,4050,4053],{"name":4043,"slug":4044,"type":16},"Documents","documents",{"name":4046,"slug":4037,"type":16},"DOCX",{"name":4048,"slug":4049,"type":16},"Office","office",{"name":4051,"slug":4052,"type":16},"Templates","templates",{"name":4054,"slug":4055,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":4058,"name":4058,"fn":4059,"description":4060,"org":4061,"tags":4062,"stars":3975,"repoUrl":3976,"updatedAt":4073},"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},[4063,4064,4065,4067,4070],{"name":3968,"slug":3969,"type":16},{"name":24,"slug":25,"type":16},{"name":3780,"slug":4066,"type":16},"react",{"name":4068,"slug":4069,"type":16},"Tailwind CSS","tailwind-css",{"name":4071,"slug":4072,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":4075,"name":4075,"fn":4076,"description":4077,"org":4078,"tags":4079,"stars":3975,"repoUrl":3976,"updatedAt":4087},"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},[4080,4083,4084],{"name":4081,"slug":4082,"type":16},"Communications","communications",{"name":4051,"slug":4052,"type":16},{"name":4085,"slug":4086,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":4089,"name":4089,"fn":4090,"description":4091,"org":4092,"tags":4093,"stars":3975,"repoUrl":3976,"updatedAt":4102},"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},[4094,4095,4098,4099],{"name":4011,"slug":4012,"type":16},{"name":4096,"slug":4097,"type":16},"API Development","api-development",{"name":4020,"slug":4021,"type":16},{"name":4100,"slug":4101,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":4002,"name":4002,"fn":4104,"description":4105,"org":4106,"tags":4107,"stars":3975,"repoUrl":3976,"updatedAt":4110},"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},[4108,4109],{"name":4043,"slug":4044,"type":16},{"name":4001,"slug":4002,"type":16},"2026-04-06T17:56:02.483316",{"slug":4112,"name":4112,"fn":4113,"description":4114,"org":4115,"tags":4116,"stars":3975,"repoUrl":3976,"updatedAt":4123},"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},[4117,4120],{"name":4118,"slug":4119,"type":16},"PowerPoint","powerpoint",{"name":4121,"slug":4122,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":4125,"name":4125,"fn":4126,"description":4127,"org":4128,"tags":4129,"stars":3975,"repoUrl":3976,"updatedAt":4139},"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},[4130,4131,4132,4135,4138],{"name":4011,"slug":4012,"type":16},{"name":4030,"slug":4031,"type":16},{"name":4133,"slug":4134,"type":16},"Evals","evals",{"name":4136,"slug":4137,"type":16},"Performance","performance",{"name":4033,"slug":4034,"type":16},"2026-04-19T06:45:40.804",490,{"items":4142,"total":4249},[4143,4157,4173,4189,4205,4224,4236],{"slug":4144,"name":4144,"fn":4145,"description":4146,"org":4147,"tags":4148,"stars":26,"repoUrl":27,"updatedAt":4156},"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},[4149,4152,4153],{"name":4150,"slug":4151,"type":16},"Accessibility","accessibility",{"name":3968,"slug":3969,"type":16},{"name":4154,"slug":4155,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":4158,"name":4158,"fn":4159,"description":4160,"org":4161,"tags":4162,"stars":26,"repoUrl":27,"updatedAt":4172},"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},[4163,4166,4169],{"name":4164,"slug":4165,"type":16},"CRM","crm",{"name":4167,"slug":4168,"type":16},"Research","research",{"name":4170,"slug":4171,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":4174,"name":4174,"fn":4175,"description":4176,"org":4177,"tags":4178,"stars":26,"repoUrl":27,"updatedAt":4188},"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},[4179,4182,4185],{"name":4180,"slug":4181,"type":16},"Analytics","analytics",{"name":4183,"slug":4184,"type":16},"Data Analysis","data-analysis",{"name":4186,"slug":4187,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":4190,"name":4190,"fn":4191,"description":4192,"org":4193,"tags":4194,"stars":26,"repoUrl":27,"updatedAt":4204},"architecture","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},[4195,4198,4200,4201],{"name":4196,"slug":4197,"type":16},"ADR","adr",{"name":4199,"slug":4190,"type":16},"Architecture",{"name":4030,"slug":4031,"type":16},{"name":4202,"slug":4203,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":4206,"name":4206,"fn":4207,"description":4208,"org":4209,"tags":4210,"stars":26,"repoUrl":27,"updatedAt":4223},"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},[4211,4214,4217,4220],{"name":4212,"slug":4213,"type":16},"Audit","audit",{"name":4215,"slug":4216,"type":16},"Finance","finance",{"name":4218,"slug":4219,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":4221,"slug":4222,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":4225,"name":4225,"fn":4226,"description":4227,"org":4228,"tags":4229,"stars":26,"repoUrl":27,"updatedAt":4235},"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},[4230,4231,4234],{"name":3985,"slug":3986,"type":16},{"name":4232,"slug":4233,"type":16},"Marketing","marketing",{"name":4085,"slug":4086,"type":16},"2026-04-06T17:58:19.548331",{"slug":4237,"name":4237,"fn":4238,"description":4239,"org":4240,"tags":4241,"stars":26,"repoUrl":27,"updatedAt":4248},"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},[4242,4243,4244,4247],{"name":3985,"slug":3986,"type":16},{"name":4081,"slug":4082,"type":16},{"name":4245,"slug":4246,"type":16},"Content Creation","content-creation",{"name":4085,"slug":4086,"type":16},"2026-04-06T18:00:23.528956",200]