Setting the file. One moment. RUNBOOK · UI Toolkit/web · anthropics/knowledge-work-plugins · Skills Docs
Use this before deep debugging. It catches the most common UI Toolkit failures quickly.
22
Validate Data
Tech Debt
62
Recruiting Pipeline
71
Vendor Check
125
Zoom Meeting SDK Web
88
Vendor Review
181
Create An Asset
Video Sdk/web
- Agent-skill standard entrypoint is
SKILL.md.
- This runbook is an operational convention (recommended), not a required skill file.
SKILL.md is also a navigation convention for larger skill docs.
- UI Toolkit still needs Video SDK JWT.
- Generate JWT server-side only (never expose SDK secret client-side).
videoSDKJWT, sessionName, userName must be present.
- Verify enabled features match your expected UI behavior.
- Validate your installed package peer dependencies (React version mismatch is common).
- In SSR frameworks, load toolkit client-side and clean up on unmount.
- Ensure toolkit CSS is loaded.
- Call
closeSession/destroy on teardown to avoid stale UI state.
- In basePath/subpath deployments, verify API route URLs and asset paths.
- If API returns HTML instead of JSON, re-check route mapping/proxy.
- Token endpoint returns JSON token.
joinSession succeeds and session events fire.
- Closing session cleans up container without errors.
Expected: valid JSON for token endpoint and valid HTML for app route.
- Session won’t join -> invalid/missing JWT or bad session config.
- UI partially broken -> missing CSS or unsupported feature config.
- Works local, fails prod -> basePath/proxy mismatch.
- Use UI Toolkit for low-code prebuilt Video SDK UI.
- Use raw Video SDK for full custom rendering and control.
RUNBOOK.md