deepgram-pack Verified Bronze

Verified Bronze · 65/100 saas-packs v1.0.0 by Jeremy Longshore

Complete Deepgram integration skill pack with 24 skills covering speech-to-text, real-time transcription, voice intelligence, and audio processing. Flagship tier vendor pack.

24 Skills
MIT License
Free Pricing

Installation

Open Claude Code and run this command:

/plugin install deepgram-pack@claude-code-plugins-plus

Use --global to install for all projects, or --project for current project only.

What It Does

> Speech-to-text, text-to-speech, and audio intelligence for Claude Code. 24 skills covering the full Deepgram platform: Nova-3/Nova-2 transcription, Aura-2 TTS, live streaming WebSocket, diarization, summarization, and enterprise deployment.

SDK: @deepgram/sdk (TypeScript) / deepgram-sdk (Python)

API: createClient() (v3/v4) or new DeepgramClient() (v5)

Models: Nova-3 (best accuracy), Nova-2 (proven), Base (fastest), Whisper (multilingual)

Skills (24)

deepgram-ci-integration SKILL.md View full skill →

'Configure Deepgram CI/CD integration for automated testing and deployment.

ReadWriteEditBash(gh:*)Bash(curl:*)
deepgram-common-errors SKILL.md View full skill →

'Diagnose and fix common Deepgram errors and issues.

ReadGrepBash(curl:*)
deepgram-core-workflow-a SKILL.md View full skill →

'Implement production pre-recorded speech-to-text with Deepgram.

ReadWriteEditBash(npm:*)Bash(pip:*)Grep
deepgram-core-workflow-b SKILL.md View full skill →

'Implement real-time streaming transcription with Deepgram WebSocket.

ReadWriteEditBash(npm:*)Bash(pip:*)Grep
deepgram-cost-tuning SKILL.md View full skill →

'Optimize Deepgram costs and usage for budget-conscious deployments.

ReadWriteEditBash(ffmpeg:*)
deepgram-data-handling SKILL.md View full skill →

'Implement audio data handling best practices for Deepgram integrations.

ReadWriteEditBash(aws:*)Bash(gcloud:*)
deepgram-debug-bundle SKILL.md View full skill →

'Collect Deepgram debug evidence for support and troubleshooting.

ReadGrepBash(curl:*)Bash(ffprobe:*)Bash(npm:*)Bash(tar:*)
deepgram-deploy-integration SKILL.md View full skill →

'Deploy Deepgram integrations to production environments.

ReadWriteEditBash(docker:*)Bash(kubectl:*)
deepgram-enterprise-rbac SKILL.md View full skill →

'Configure enterprise role-based access control for Deepgram integrations.

ReadWriteEditBash(curl:*)
deepgram-hello-world SKILL.md View full skill →

'Create a minimal working Deepgram transcription example.

ReadWriteEdit
deepgram-incident-runbook SKILL.md View full skill →

'Execute Deepgram incident response procedures for production issues.

ReadWriteEditBash(curl:*)Bash(kubectl:*)
deepgram-install-auth SKILL.md View full skill →

'Install and configure Deepgram SDK authentication.

ReadWriteEditBash(npm:*)Bash(pip:*)Grep
deepgram-local-dev-loop SKILL.md View full skill →

'Configure Deepgram local development workflow with testing and mocks.

ReadWriteEditBash(npm:*)Bash(pip:*)Grep
deepgram-migration-deep-dive SKILL.md View full skill →

'Deep dive into migrating to Deepgram from other transcription providers.

ReadWriteEditBash(npm:*)Bash(pip:*)
deepgram-observability SKILL.md View full skill →

'Set up comprehensive observability for Deepgram integrations.

ReadWriteEditBash(curl:*)
deepgram-performance-tuning SKILL.md View full skill →

'Optimize Deepgram API performance for faster transcription and lower.

ReadWriteEditBash(ffmpeg:*)Bash(ffprobe:*)
deepgram-prod-checklist SKILL.md View full skill →

'Execute Deepgram production deployment checklist.

ReadWriteEditGrepBash(curl:*)
deepgram-rate-limits SKILL.md View full skill →

'Implement Deepgram rate limiting and backoff strategies.

ReadWriteEditGrep
deepgram-reference-architecture SKILL.md View full skill →

'Implement Deepgram reference architecture for scalable transcription.

ReadWriteEditBash(npm:*)
deepgram-sdk-patterns SKILL.md View full skill →

'Apply production-ready Deepgram SDK patterns for TypeScript and Python.

ReadWriteEdit
deepgram-security-basics SKILL.md View full skill →

'Apply Deepgram security best practices for API key management and data.

ReadWriteEditGrepBash(curl:*)
deepgram-upgrade-migration SKILL.md View full skill →

'Plan and execute Deepgram SDK upgrades and model migrations.

ReadWriteEditGrepBash(npm:*)Bash(pip:*)
deepgram-webhooks-events SKILL.md View full skill →

'Implement Deepgram callback and webhook handling for async transcription.

ReadWriteEditBash(curl:*)

How It Works


import { createClient } from '@deepgram/sdk';

const deepgram = createClient(process.env.DEEPGRAM_API_KEY!);

// Pre-recorded transcription
const { result } = await deepgram.listen.prerecorded.transcribeUrl(
  { url: 'https://static.deepgram.com/examples/Bueller-Life-moves-702702706.wav' },
  { model: 'nova-3', smart_format: true, diarize: true }
);
console.log(result.results.channels[0].alternatives[0].transcript);

// Text-to-speech
const response = await deepgram.speak.request(
  { text: 'Hello from Deepgram.' },
  { model: 'aura-2-thalia-en' }
);

Ready to use deepgram-pack?