🛠️ 開発・MCP コミュニティ
contact-center/ios
Zoom Contact Center SDK for iOS. Use for native iOS chat/video/ZVA/scheduled callback integrations, app lifecycle bridging, rejoin flow, and callback handling.
⚡ おすすめ: コマンド1行でインストール(60秒)
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o contact-center-ios.zip https://jpskill.com/download/22677.zip && unzip -o contact-center-ios.zip && rm contact-center-ios.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22677.zip -OutFile "$d\contact-center-ios.zip"; Expand-Archive "$d\contact-center-ios.zip" -DestinationPath $d -Force; ri "$d\contact-center-ios.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
contact-center-ios.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
contact-center-iosフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 2
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Zoom Contact Center SDK - iOS
公式ドキュメント:
- https://developers.zoom.us/docs/contact-center/ios/
- https://marketplacefront.zoom.us/sdk/contact/ios/index.html
クイックリンク
- concepts/sdk-lifecycle.md
- examples/service-patterns.md
- references/ios-reference-map.md
- troubleshooting/common-issues.md
SDK サーフェスの概要
- Manager:
ZoomCCInterface.sharedInstance() - Context:
ZoomCCContext - Items:
ZoomCCItem - Services:
chatServicezvaServicevideoServicescheduledCallbackService
厳格なガードレール
- チャネル操作の前に
ZoomCCContextを設定してください。 - アプリのライフサイクルコール (
appDidBecomeActive、appDidEnterBackgroud、appWillResignActive、appWillTerminate) を転送してください。 - チャネルにはアイテムベースの初期化を使用してください。
- 再参加 URL の処理をビデオサービスパスに接続したままにしてください。
共通のチェーン
- Zoom クライアント内の Contact Center アプリ: ../../zoom-apps-sdk/SKILL.md
- OAuth と ID: ../../oauth/SKILL.md
操作
- RUNBOOK.md - 5分間の事前確認とデバッグチェックリストです。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Zoom Contact Center SDK - iOS
Official docs:
- https://developers.zoom.us/docs/contact-center/ios/
- https://marketplacefront.zoom.us/sdk/contact/ios/index.html
Quick Links
- concepts/sdk-lifecycle.md
- examples/service-patterns.md
- references/ios-reference-map.md
- troubleshooting/common-issues.md
SDK Surface Summary
- Manager:
ZoomCCInterface.sharedInstance() - Context:
ZoomCCContext - Items:
ZoomCCItem - Services:
chatServicezvaServicevideoServicescheduledCallbackService
Hard Guardrails
- Set
ZoomCCContextbefore channel operations. - Forward app lifecycle calls (
appDidBecomeActive,appDidEnterBackgroud,appWillResignActive,appWillTerminate). - Use item-based initialization for channels.
- Keep rejoin URL handling connected to the video service path.
Common Chains
- Contact Center apps in Zoom client: ../../zoom-apps-sdk/SKILL.md
- OAuth and identity: ../../oauth/SKILL.md
Operations
- RUNBOOK.md - 5-minute preflight and debugging checklist.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (1,623 bytes)
- 📎 references/ios-reference-map.md (884 bytes)