Skip to content
Open

Zoom #215

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,18 @@
"authentication": "ON_INSTALL"
},
"category": "Coding"
},
{
"name": "zoom",
"source": {
"source": "local",
"path": "./plugins/zoom"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Productivity"
}
]
}
7 changes: 7 additions & 0 deletions plugins/zoom/.app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"apps": {
"zoom": {
"id": "asdk_app_69373a13116c819189d046aea1278836"
}
}
}
49 changes: 49 additions & 0 deletions plugins/zoom/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"name": "zoom",
"version": "1.0.0",
"description": "Zoom connector for Codex",
"author": {
"name": "Zoom",
"url": "https://github.com/zoom"
},
"homepage": "https://developers.zoom.us/",
"repository": "https://github.com/openai/plugins",
"license": "MIT",
"keywords": [
"zoom",
"codex-plugin",
"connector",
"meetings",
"transcripts",
"recordings",
"docs"
],
"apps": "./.app.json",
"interface": {
"displayName": "Zoom",
"shortDescription": "Connect Codex to Zoom meeting intelligence.",
"longDescription": "Zoom connects Codex to your Zoom meeting intelligence so you can search meetings, retrieve summaries, transcripts, recordings, and related assets, and use live Zoom context directly inside Codex.",
"developerName": "Zoom",
"category": "Productivity",
"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 Zoom meetings and pull the relevant summaries, transcripts, and recordings."
],
"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"
]
}
}
1 change: 1 addition & 0 deletions plugins/zoom/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
publishing-guide.md
9 changes: 9 additions & 0 deletions plugins/zoom/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Zoom

This repository contains the app-backed `Zoom` connector plugin for Codex.

Its purpose is simple:

- connect Codex to live Zoom meeting context through the Zoom app connector
- provide marketplace-ready metadata and branding for the `Zoom` plugin
- keep this repository focused on connector packaging
8 changes: 8 additions & 0 deletions plugins/zoom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

All notable changes to this plugin are documented in this file.

## Unreleased

- narrowed this repository to the app-backed `Zoom` connector plugin
- kept the Zoom app mapping and screenshots in this repo
13 changes: 13 additions & 0 deletions plugins/zoom/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Contributing

Keep this repository focused on the `Zoom` connector plugin for Codex.

## Scope

Changes here should stay limited to:

- connector-facing metadata
- app mapping
- plugin branding assets
- marketplace setup
- user-facing connector documentation
21 changes: 21 additions & 0 deletions plugins/zoom/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Zoom Video Communications, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
51 changes: 51 additions & 0 deletions plugins/zoom/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Zoom

Zoom is a Codex connector plugin that gives Codex access to live Zoom meeting context through the Zoom app connector.

## What This Plugin Includes

- plugin manifest: [`.codex-plugin/plugin.json`](.codex-plugin/plugin.json)
- repo marketplace entry: [`../../.agents/plugins/marketplace.json`](../../.agents/plugins/marketplace.json)
- Zoom app mapping: [`.app.json`](.app.json)
- branding assets: [`assets/`](assets/)

This plugin contains the Zoom app mapping, connector metadata, and branding assets.

## What Zoom Does In Codex

Use `Zoom` when you want Codex to work with live Zoom context, such as:

- searching meetings by topic, attendee, or content
- retrieving summaries, transcripts, recordings, and related meeting assets
- pulling meeting context into a coding or follow-up workflow
- working with Zoom data through the authenticated app connector

## Using In Codex

1. Install the plugin from `/plugins`.
2. Authenticate the Zoom app connector when Codex prompts for it.
3. Mention `@Zoom` or use natural language requests that need live Zoom meeting context.

The Zoom app connector auth is managed by Codex. It is not exposed as a shell environment variable or raw bearer token.

## Example Prompts

```text
Search my recent Zoom meetings for the discussion about pricing.
```

```text
Find the meeting where we discussed the SDK migration and pull the summary.
```

```text
Get the transcript and recording link for yesterday's engineering sync.
```

```text
Look across my Zoom meetings and identify the action items assigned to me.
```

## Related Plugin

Use this plugin when Codex needs authenticated Zoom meeting context.
5 changes: 5 additions & 0 deletions plugins/zoom/assets/app-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugins/zoom/assets/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugins/zoom/assets/screenshot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugins/zoom/assets/screenshot-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added plugins/zoom/assets/screenshot-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions plugins/zoom/assets/zoom-small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.