skills/summarizer/SKILL.md
Reference skill for Zoom AI Services Summarizer. Use after routing to transcript summarization, meeting recap, action item extraction, Build-platform JWT auth, fast mode summarization, batch jobs, or summary pipeline design.
npx skillsauth add zoom/zoom-plugin summarizerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Background reference for Zoom AI Services Summarizer across:
POST /aiservices/summarizer/summarize)/aiservices/summarizer/jobs*)Official docs:
task: recap, summary, action_items, or full_summary.result.text or batch output files.| Mode | Method | Path | Use |
|------|--------|------|-----|
| Fast | POST | /aiservices/summarizer/summarize | Synchronous summarization for inline transcript text |
| Batch | POST | /aiservices/summarizer/jobs | Submit asynchronous batch summarization job |
| Batch | GET | /aiservices/summarizer/jobs | List batch summarization jobs |
| Batch | GET | /aiservices/summarizer/jobs/{jobId} | Inspect job summary/state |
| Batch | DELETE | /aiservices/summarizer/jobs/{jobId} | Cancel queued/processing job |
| Batch | GET | /aiservices/summarizer/jobs/{jobId}/files | Inspect per-file results |
| Batch | GET | /aiservices/summarizer/jobs/{jobId}/files/{fileId} | Inspect one per-file result |
| Need | Use |
|------|-----|
| One bounded transcript string under 96 KB | Fast mode |
| Many .vtt, .srt, or .txt transcript files in S3 | Batch mode |
| Summary immediately in app UI | Fast mode |
| Archive or compliance pipeline | Batch mode plus polling/webhooks |
| Audio/video input | scribe first, then summarizer |
Summarizer returns rendered text in result.text. Treat it as display-ready text or markdown-like content, depending on the requested task:
recap: concise recapsummary: detailed summaryaction_items: action item sections grouped by ownerfull_summary: recap, summary, and action items togethersummarizersummarizer + ../translator/SKILL.mdsummarizer + ../webhooks/SKILL.mddocumentation
Start here for any Zoom integration or app idea. Use when you need to choose the right Zoom surface, shape the architecture, or route into the correct implementation skill without reading the whole Zoom doc set first.
development
Implement Zoom authentication correctly. Use when setting up app credentials, choosing an OAuth grant, requesting scopes, handling token refresh, or debugging auth failures.
tools
Decide when Zoom MCP is the right fit and produce a safe setup plan for Claude. Use when planning AI workflows over Zoom data, deciding between MCP and REST, or defining a hybrid MCP architecture.
development
Reference skill for Zoom AI Services Scribe. Use after routing to a transcription workflow when handling uploaded or stored media, Build-platform JWT auth, fast mode transcription, batch jobs, or transcript pipeline design.