build-zoom-virtual-agent

$npx mdskill add openai/plugins/build-zoom-virtual-agent

Builds and integrates Zoom Virtual Agent into web and mobile workflows

  • Solves embedding Zoom Virtual Agent into web campaigns and mobile WebView apps
  • Depends on Zoom SDKs, WebView components, and campaign configuration APIs
  • Routes to platform-specific skills based on client type and lifecycle events
  • Delivers agent handoffs, context updates, and URL handling via native bridges
SKILL.md
.github/skills/build-zoom-virtual-agentView on GitHub ↗
---
name: build-zoom-virtual-agent
description: Use when using Virtual Agent.
---

# Build Zoom Virtual Agent

Use this skill when the workflow embeds or wraps Zoom Virtual Agent, including web campaigns and mobile WebView integrations.

## Workflow

1. Identify the client: web, Android WebView, iOS WKWebView, campaign entry, support handoff, or knowledge-base sync pipeline.
2. Route to the platform skill before coding because event handling and native bridge behavior differ by client.
3. Confirm campaign, entry ID, allowed origins, lifecycle events, and support handoff behavior.
4. Keep user context updates, native URL handling, and handoff payloads explicit.
5. Debug by checking SDK readiness, campaign configuration, bridge injection, CSP, WebView lifecycle, and version drift.

## References

- Full preserved guide: [references/full-guide.md](references/full-guide.md)
- Web: [web/SKILL.md](web/SKILL.md)
- Android: [android/SKILL.md](android/SKILL.md)
- iOS: [ios/SKILL.md](ios/SKILL.md)
- Architecture and lifecycle: [concepts/architecture-and-lifecycle.md](concepts/architecture-and-lifecycle.md)
- Common drift and breaks: [troubleshooting/common-drift-and-breaks.md](troubleshooting/common-drift-and-breaks.md)
More from openai/plugins