← All plugins
zoom
v1.0.2Connect Codex to Zoom meeting context and build Zoom apps, bots, API integrations, SDK workflows, webhooks, and automations.
Codex14 skills
by ZoomMIT5kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/zoom/ inside the repository.
Layout
plugins/zoom/
├── .codex-plugin/plugin.json├── skills/build-zoom-bot/SKILL.md├── skills/build-zoom-meeting-app/SKILL.md├── skills/choose-zoom-approach/SKILL.md├── skills/debug-zoom/SKILL.md├── skills/debug-zoom-integration/SKILL.md├── skills/plan-zoom-integration/SKILL.md├── skills/plan-zoom-product/SKILL.md├── skills/probe-sdk/SKILL.md├── skills/rivet-sdk/SKILL.md├── skills/scribe/SKILL.md├── skills/setup-zoom-oauth/SKILL.md├── skills/start/SKILL.md├── skills/ui-toolkit/SKILL.md└── skills/zoom-apps-sdk/SKILL.md
Skills14
build-zoom-botskills/build-zoom-bot/SKILL.md
Use when building bots.
build-zoom-meeting-appskills/build-zoom-meeting-app/SKILL.md
Use when embedding meetings.
choose-zoom-approachskills/choose-zoom-approach/SKILL.md
Use when choosing architecture.
debug-zoomskills/debug-zoom/SKILL.md
Use when debugging issues.
debug-zoom-integrationskills/debug-zoom-integration/SKILL.md
Use when isolating failures.
plan-zoom-integrationskills/plan-zoom-integration/SKILL.md
Use when planning Zoom integrations.
plan-zoom-productskills/plan-zoom-product/SKILL.md
Use when choosing products.
probe-sdkskills/probe-sdk/SKILL.md
Use when using Probe SDK.
rivet-sdkskills/rivet-sdk/SKILL.md
Use when using Rivet SDK.
scribeskills/scribe/SKILL.md
Use when using Scribe.
setup-zoom-oauthskills/setup-zoom-oauth/SKILL.md
Use when setting up OAuth.
startskills/start/SKILL.md
Use when starting Zoom work.
ui-toolkitskills/ui-toolkit/SKILL.md
Use when using Zoom UI Toolkit.
zoom-apps-sdkskills/zoom-apps-sdk/SKILL.md
Use when using Apps SDK.
Manifests1
plugins/zoom/.codex-plugin/plugin.json
{
"name": "zoom",
"version": "1.0.2",
"description": "Connect Codex to Zoom meeting context and build Zoom apps, bots, API integrations, SDK workflows, webhooks, and automations.",
"author": {
"name": "Zoom",
"url": "https://github.com/zoom"
},
"homepage": "https://developers.zoom.us/",
"repository": "https://github.com/zoom/zoom-plugin-codex",
"license": "MIT",
"keywords": [
"zoom",
"codex-plugin",
"connector",
"meetings",
"transcripts",
"recordings",
"docs",
"developers",
"rest-api",
"meeting-sdk",
"video-sdk",
"webhooks",
"oauth"
],
"apps": "./.app.json",
"skills": "./skills/",
"interface": {
"displayName": "Zoom",
"shortDescription": "Use Zoom meeting context and build Zoom integrations.",
"longDescription": "Zoom connects Codex to Zoom meeting context through the Zoom app connector and provides developer workflows for planning, building, debugging, and reviewing Zoom integrations across APIs, SDKs, webhooks, WebSockets, bots, and automation use cases.",
"developerName": "Zoom",
"category": "Communication",
"capabilities": [
"Interactive",
"Read",
"Write"
],
"websiteURL": "https://developers.zoom.us/",
"privacyPolicyURL": "https://www.zoom.com/en/trust/privacy/",
"termsOfServiceURL": "https://www.zoom.com/en/trust/terms/",
"defaultPrompt": [
"Search my recent Zoom meetings for the discussion about pricing.",
"Run /plan-zoom-product for a Zoom integration idea."
],
"brandColor": "#0B5CFF",
"composerIcon": "./assets/zoom-small.svg",
"logo": "./assets/app-icon.svg",
"screenshots": [
"./assets/screenshot-1.png",
"./assets/screenshot-2.png",
"./assets/screenshot-3.png",
"./assets/screenshot-4.png"
]
}
}