Knowledge-work-plugins virtual-agent/ios

Zoom Virtual Agent iOS integration via WKWebView. Use for Swift/Objective-C script injection, message handlers, support_handoff relay, and URL routing policies.

install
source · Clone the upstream repo
git clone https://github.com/anthropics/knowledge-work-plugins
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/anthropics/knowledge-work-plugins "$T" && mkdir -p ~/.claude/skills && cp -r "$T/partner-built/zoom-plugin/skills/virtual-agent/ios" ~/.claude/skills/anthropics-knowledge-work-plugins-virtual-agent-ios && rm -rf "$T"
manifest: partner-built/zoom-plugin/skills/virtual-agent/ios/SKILL.md
source content

Zoom Virtual Agent - iOS

Official docs:

Quick Links

  1. concepts/webview-lifecycle.md
  2. examples/js-bridge-patterns.md
  3. references/ios-reference-map.md
  4. troubleshooting/common-issues.md

Integration Model

  • Load campaign URL in
    WKWebView
    .
  • Inject
    window.zoomCampaignSdkConfig
    using
    WKUserScript
    .
  • Register message handlers for exit/common/handoff flows.
  • Handle URL behavior in navigation delegates (
    in-app
    ,
    SFSafariViewController
    , or system browser).

Hard Guardrails

  • Register scripts and handlers before web interaction.
  • Handle iOS 14.5+ download behavior where needed.
  • Keep deprecated
    openURL
    command support as fallback only.

Chaining