Knowledge-work-plugins zoom-video-sdk-flutter

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/video-sdk/flutter" ~/.claude/skills/anthropics-knowledge-work-plugins-zoom-video-sdk-flutter && rm -rf "$T"
manifest: partner-built/zoom-plugin/skills/video-sdk/flutter/SKILL.md
source content

Zoom Video SDK (Flutter)

Use this skill for Flutter apps that build custom real-time video session experiences with Zoom Video SDK.

Quick Links

  1. Lifecycle Workflow - init -> joinSession -> media/control -> leave -> cleanup
  2. SDK Architecture Pattern - helper-based API surface and event model
  3. High-Level Scenarios - common product patterns
  4. Setup Guide - package setup + platform prerequisites
  5. Session Join Pattern - tokenized session join flow
  6. Event Handling Pattern - listener mapping and action routing
  7. SKILL.md - complete navigation

Core Notes

  • Video SDK sessions are custom sessions, not Zoom Meetings.
  • Keep SDK credentials server-side; generate JWT token on backend.
  • Integration is strongly event-driven; bind listener flows early.
  • Feature support and enum names can drift by wrapper/native version.

References

Related Skills

Merged from video-sdk/flutter/SKILL.md

Zoom Video SDK Flutter - Documentation Index

Start Here

  1. SKILL.md
  2. Lifecycle Workflow
  3. SDK Architecture Pattern
  4. Setup Guide

Concepts

Examples

References

Troubleshooting

Operations

  • RUNBOOK.md - 5-minute preflight and debugging checklist.