jpskill.com
💼 ビジネス コミュニティ

build-zoom-meeting-app

Build or embed a Zoom meeting flow. Use when implementing Meeting SDK joins, web or mobile meeting embeds, meeting lifecycle flows, or when deciding between Meeting SDK and Video SDK.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o build-zoom-meeting-app.zip https://jpskill.com/download/22672.zip && unzip -o build-zoom-meeting-app.zip && rm build-zoom-meeting-app.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22672.zip -OutFile "$d\build-zoom-meeting-app.zip"; Expand-Archive "$d\build-zoom-meeting-app.zip" -DestinationPath $d -Force; ri "$d\build-zoom-meeting-app.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して build-zoom-meeting-app.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → build-zoom-meeting-app フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] build-zoom-meeting-app

/build-zoom-meeting-app

このスキルは、組み込みのミーティング体験とミーティングライフサイクルの実装に使用します。

対象範囲

  • Meeting SDK の選択とプラットフォームルーティング
  • 参加/認証の実装計画
  • ミーティング作成と参加フローの設計
  • Web とネイティブプラットフォームの考慮事項
  • Meeting SDK と Video SDK の境界決定

ワークフロー

  1. ユーザーが Zoom ミーティングを希望しているのか、カスタムビデオセッションを希望しているのかを確認します。
  2. ユーザーが実際の Zoom ミーティングを必要とする場合は、Meeting SDK にルーティングします。
  3. 関連するプラットフォームリファレンスを取り込みます。
  4. ミーティング作成、リソース管理、またはレポート作成にのみ REST API を追加します。
  5. ユースケースで明示的に必要な場合にのみ、webhooks または RTMS を追加します。

主要リファレンス

よくある間違い

  • 通常の Zoom ミーティングの埋め込みに Video SDK を使用する
  • 理由なくリソース管理 API をコアの参加フローに混在させる
  • プラットフォーム固有の SDK の制約を遅すぎるまでスキップする
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

/build-zoom-meeting-app

Use this skill for embedded meeting experiences and meeting lifecycle implementation.

Covers

  • Meeting SDK selection and platform routing
  • Join/auth implementation planning
  • Meeting creation plus join flow design
  • Web vs native platform considerations
  • Meeting SDK vs Video SDK boundary decisions

Workflow

  1. Confirm whether the user wants a Zoom meeting or a custom video session.
  2. Route to Meeting SDK if the user needs actual Zoom meetings.
  3. Pull in the relevant platform references.
  4. Add REST API only for meeting creation, resource management, or reporting.
  5. Add webhooks or RTMS only when the use case explicitly needs them.

Primary References

Common Mistakes

  • Using Video SDK for normal Zoom meeting embeds
  • Mixing resource-management APIs into the core join flow without reason
  • Skipping platform-specific SDK constraints until too late