ワンクリックで
zoom-recordings-manager
List, download, and delete Zoom recordings via the API (OAuth). Use when you need to manage recordings at scale.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
List, download, and delete Zoom recordings via the API (OAuth). Use when you need to manage recordings at scale.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Orchestrates Android development tasks including project creation, deployment, SDK management, and environment diagnostics using the `android` command-line tool.
Process invoice PDFs/emails: extract vendor + date, generate normalized filename, optionally archive to Drive, and email the PDF to the right Holded inbox.
Use the private LearnWorlds CLI to inspect DevExpert Academy users, find students by email, list their enrolled courses/products, look up products, and perform safe enrollment workflows. Trigger when Antonio asks what courses a student has in LearnWorlds or academia.devexpert.io, whether someone belongs to the current or next AI Expert edition, or to use the LearnWorlds/academy CLI.
Genera la newsletter semanal de DevExpert recopilando contenido de X, YouTube, PostFlow y bookmarks. Crea borrador en Listmonk para revisión.
End-to-end YouTube publishing workflow using ordered scripts: prepare/concat video, upload draft, transcribe with Parakeet, generate copy with the calling model, optionally prepare English dubbing assets, render thumbnails, update YouTube metadata, then schedule socials (PostFlow) 15 minutes after publish.
Enforce Antonio's real Spanish social voice when drafting or rewriting X, LinkedIn, article teaser, and newsletter intro copy. Use whenever copy must sound like Antonio and avoid obvious AI writing.
| name | zoom-recordings-manager |
| description | List, download, and delete Zoom recordings via the API (OAuth). Use when you need to manage recordings at scale. |
Generic operations on recordings:
trash by default; delete is permanent.download_url and add the access_token.File: scripts/zoom_recordings.py
List:
python scripts/zoom_recordings.py list --from 2025-11-01 --to 2025-12-31
List upcoming meetings (join_url for attendees):
python scripts/zoom_meetings.py --user me --type upcoming --from 2026-01-14 --to 2026-03-31
List by user:
python scripts/zoom_recordings.py list --user me --from 2025-11-01 --to 2025-12-31
Download:
python scripts/zoom_recordings.py download --url "<download_url>" --out /path/file.mp4
Download MP4 of LIVE/Q&A (renamed):
python scripts/zoom_recordings.py download-mp4 --user me --from 2025-11-01 --to 2025-12-31 --out-dir /path/zoom
Delete (entire meeting):
python scripts/zoom_recordings.py delete --meeting-id <meeting_id> --action trash
Delete a specific file:
python scripts/zoom_recordings.py delete --meeting-id <meeting_id> --recording-id <recording_id> --action trash
--user.