Setting the file. One moment.
Subchapter 114.12
references/query-routing-playbook.mdMarkdown3 KBView on GitHub
Use zoom-general as the routing/orchestration layer.
Do not implement product-specific logic in zoom-general if a specialized skill exists.
References
App TypesConvert a complex developer query into:
selected_skillsexecution_orderassumptionsnext_actions| Query signal | Route to skill | Why |
|---|---|---|
| OAuth, scopes, S2S, token strategy | zoom-oauth | Authentication and authorization design |
| Meetings/users/recordings/reports API operations | zoom-rest-api | Server-side Zoom resource management |
| Embed full Zoom meetings/webinars | zoom-meeting-sdk | Meeting runtime integration |
| Build custom video session experience | zoom-video-sdk | Custom media UX runtime |
| Receive event callbacks via HTTP | zoom-webhooks | Event lifecycle notifications |
| Need lower-latency event stream | zoom-websockets | Persistent real-time event transport |
| Live audio/video/transcript stream ingestion | zoom-rtms | Real-time media and transcript pipeline |
| App runs inside Zoom client | zoom-apps-sdk | In-client app model and APIs |
zoom-general (triage and architecture).zoom-oauth if any protected resource access is required.zoom-meeting-sdk, zoom-video-sdk, or zoom-rest-api).zoom-webhooks, zoom-websockets, zoom-rtms) based on requirements.{
"selected_skills": [
"zoom-general",
"zoom-oauth",
"zoom-meeting-sdk",
"zoom-webhooks"
],
"execution_order": [
"zoom-general",
"zoom-oauth",
"zoom-meeting-sdk",
"zoom-webhooks"
],
"assumptions": [
"embedded meeting experience required",
"server-side event endpoint available"
],
"next_actions": [
"confirm OAuth scopes",
"implement auth/token flow",
"implement runtime integration",
"implement event consumer and verification"
]
}If confidence is low, ask one focused question before final routing:
Query: “Build a Linux bot that joins meetings, auto-creates meetings, streams transcript, and tracks lifecycle events.”
Recommended chain:
zoom-generalzoom-oauthzoom-rest-apizoom-meeting-sdkzoom-rtmszoom-webhooksWhy:
zoom-rest-api for meeting provisioningzoom-meeting-sdk for runtime join/controlzoom-rtms for live transcript/media streamzoom-webhooks for lifecycle notifications