deepgram-rate-limits
Implement Deepgram rate limiting and backoff strategies. Use when handling API quotas, implementing request throttling, or dealing with rate limit errors. Trigger with phrases like "deepgram rate limit", "deepgram throttling", "429 error deepgram", "deepgram quota", "deepgram backoff".
npx skills add majiayu000/claude-skill-registry --skill deepgram-rate-limits --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Deepgram Rate Limits ## Overview Implement proper rate limiting and backoff strategies for Deepgram API integration. ## Deepgram Rate Limits | Plan | Concurrent Requests | Requests/Minute | Audio Hours/Month | |------|---------------------|-----------------|-------------------| | Pay As You Go | 100 | 1000 | Unlimited | | Growth | 200 | 2000 | Included hours | | Enterprise | Custom | Custom | Custom | ## Instructions ### Step 1: Implement Request Queue Create a queue to manage concurrent request limits. ### Step 2: Add Exponential Backoff Handle rate limit responses with intelligent retry. ### Step 3: Monitor Usage Track request counts and audio duration. ### Step 4: Implement Circuit Breaker Prevent cascade failures during rate limiting. ## Output - Rate-limited request queue - Exponential backoff handler - Usage monitoring dashboard - Circuit breaker implementation ## Examples ### TypeScript Rate Limiter ```typescript // lib/rate-limiter.ts interface RateLimiterConfig { maxConcurrent: number; maxPerMinute: number; retryAttempts: number; baseDelay: number; } export class DeepgramRateLimiter { private queue: Array<{ fn: () => Promise<unknown>; resolve: (value: unknown) => void; r
- Overview
- Deepgram Rate Limits
- Instructions
- Step 1: Implement Request Queue
- Step 2: Add Exponential Backoff
- Step 3: Monitor Usage
- Step 4: Implement Circuit Breaker
- Output
- Examples
- TypeScript Rate Limiter
- Exponential Backoff with Jitter
- Circuit Breaker Pattern
- Usage Monitor
- Python Rate Limiter
What does the deepgram-rate-limits skill do?
Implement Deepgram rate limiting and backoff strategies. Use when handling API quotas, implementing request throttling, or dealing with rate limit errors. Trigger with phrases like "deepgram rate limit", "deepgram throttling", "429 error deepgram", "deepgram quota", "deepgram backoff".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill deepgram-rate-limits --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
