Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
anthropics avatar

Scribe

  • 1.4k installs
  • 23.1k repo stars
  • Updated July 28, 2026
  • anthropics/knowledge-work-plugins

scribe is an agent skill for 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.

About

The scribe skill is designed for 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. If the user needs live meeting media without file-based upload/batch jobs, route to ../rtms/SKILL.md. If the user needs Zoom REST API inventory for AI Services paths, chain ../rest-api/SKILL.md. Invoke when the user asks about scribe or related SKILL.md workflows.

  • synchronous single-file transcription (POST /aiservices/scribe/transcribe).
  • asynchronous batch jobs (/aiservices/scribe/jobs*).
  • browser microphone pseudo-streaming via repeated short file uploads.
  • webhook-driven batch status updates.
  • Build-platform JWT generation and credential handling.

Scribe by the numbers

  • 1,432 all-time installs (skills.sh)
  • +85 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #384 of 1,881 Marketing & SEO skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

scribe capabilities & compatibility

Capabilities
synchronous single file transcription (post /ais · asynchronous batch jobs (/aiservices/scribe/jobs · browser microphone pseudo streaming via repeated · webhook driven batch status updates
Use cases
seo
From the docs

What scribe says it does

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,
SKILL.md
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
SKILL.md
npx skills add https://github.com/anthropics/knowledge-work-plugins --skill scribe

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.4k
repo stars23.1k
Security audit2 / 3 scanners passed
Last updatedJuly 28, 2026
Repositoryanthropics/knowledge-work-plugins

How do I 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?

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.

Who is it for?

Developers using scribe workflows documented in SKILL.md.

Skip if: Skip when the task falls outside scribe scope or needs a different stack.

When should I use this skill?

User asks about scribe or related SKILL.md workflows.

What you get

Completed scribe workflow with documented commands, files, and expected deliverables.

  • JWT generation code
  • transcription integration config

By the numbers

  • JWT expiration should be kept to one hour or less
  • Uses HS256 algorithm for bearer token signing

Files

SKILL.mdMarkdownGitHub ↗

Zoom AI Services Scribe

Background reference for Zoom AI Services Scribe across:

  • synchronous single-file transcription (POST /aiservices/scribe/transcribe)
  • asynchronous batch jobs (/aiservices/scribe/jobs*)
  • browser microphone pseudo-streaming via repeated short file uploads
  • webhook-driven batch status updates
  • Build-platform JWT generation and credential handling

Official docs:

  • https://developers.zoom.us/docs/ai-services/
  • https://developers.zoom.us/docs/ai-services/scribe/
  • https://developers.zoom.us/docs/api/ai-services/
  • https://developers.zoom.us/api-hub/ai-services/methods/endpoints.json
  • Quickstart sample: https://github.com/zoom/scribe-quickstart/

Routing Guardrail

  • If the user needs uploaded or stored media transcribed into text, route here first.
  • If the user needs live meeting media without file-based upload/batch jobs, route to ../rtms/SKILL.md.
  • If the user needs Zoom REST API inventory for AI Services paths, chain ../rest-api/SKILL.md.
  • If the user needs webhook signature patterns or generic HMAC receiver hardening, optionally chain ../webhooks/SKILL.md.

Quick Links

1. concepts/auth-and-processing-modes.md 2. scenarios/high-level-scenarios.md 3. examples/fast-mode-node.md 4. examples/batch-webhook-pipeline.md 5. references/api-reference.md 6. references/environment-variables.md 7. references/samples-validation.md 8. references/versioning-and-drift.md 9. troubleshooting/common-drift-and-breaks.md 10. RUNBOOK.md

Core Workflow

1. Get Build-platform credentials and generate an HS256 JWT. 2. Choose fast mode for one short file or batch mode for stored archives / large sets. 3. Submit the transcription request. 4. For batch jobs, poll job/file status or receive webhook notifications. 5. Persist and post-process transcript JSON.

Hosted Fast-Mode Guardrail

  • The formal fast-mode API limits are 100 MB and 2 hours, but hosted browser flows can still time out before the upstream response returns.
  • Current deployed-sample observations:
  • ~17.2 MB MP4 completed in about 26s
  • ~38.6 MB MP4 completed in about 26-37s
  • ~59.2 MB MP4 completed in about 32-34s on the backend
  • some ~59.2 MB browser requests still surfaced as frontend 504 while backend logs later showed 200
  • Treat frontend 504 plus backend 200 as a browser/edge timeout race, not an automatic transcription failure.
  • For hosted UIs, prefer an async request/polling wrapper for fast mode instead of holding the browser open for the full upstream response.
  • For larger or less predictable media, prefer batch mode even when the file is still within the formal fast-mode size limit.

Browser Microphone Pattern

  • scribe does not expose a documented real-time streaming API surface.
  • If you want a browser microphone experience, use pseudo-streaming:

1. capture microphone audio in short chunks 2. upload each chunk through the async fast-mode wrapper 3. poll for completion 4. append chunk transcripts in sequence

  • Recommended starting cadence:
  • chunk size: 5 seconds
  • acceptable range: 5-10 seconds
  • in-flight chunk requests: 2-3
  • This is a practical UI pattern for incremental transcript updates, not a substitute for rtms.
  • Treat this as a fallback demo pattern, not the preferred production architecture.
  • It adds repeated upload overhead, chunk-boundary drift, browser codec/container variability, and transcript stitching complexity.
  • If the user asks for actual live stream ingestion, low-latency continuous media, or server-push media transport, route to ../rtms/SKILL.md instead.

Endpoint Surface

ModeMethodPathUse
FastPOST/aiservices/scribe/transcribeSynchronous transcription for one file
BatchPOST/aiservices/scribe/jobsSubmit asynchronous batch job
BatchGET/aiservices/scribe/jobsList jobs
BatchGET/aiservices/scribe/jobs/{jobId}Inspect job summary/state
BatchDELETE/aiservices/scribe/jobs/{jobId}Cancel queued/processing job
BatchGET/aiservices/scribe/jobs/{jobId}/filesInspect per-file results

High-Level Scenarios

  • On-demand clip transcription after a user uploads one recording.
  • Batch transcription of stored S3 call archives.
  • Webhook-driven ETL pipeline that writes transcripts to your database/search index.
  • Re-transcription of Zoom-managed recordings after exporting them to your own storage.
  • Offline compliance or QA workflows that need timestamps, channel separation, and speaker hints.

Chaining

  • Stored Zoom recordings -> ../rest-api/SKILL.md + scribe
  • Webhook verification hardening -> ../webhooks/SKILL.md
  • Real-time live transcript/media -> ../rtms/SKILL.md
  • Cross-product routing -> ../general/SKILL.md

Operations

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

Related skills

Forks & variants (1)

Scribe has 1 known copy in the catalog totaling 13 installs. They canonicalize to this original listing.

How it compares

Pick scribe when you need documented Scribe API auth and processing modes inside agent pipelines rather than generic speech-to-text library setup.

FAQ

What does scribe do?

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.

When should I use scribe?

User asks about scribe or related SKILL.md workflows.

Is scribe safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.