Agent skill · Backend & API

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".

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrepBash(curl:*)
Path: skills/api/deepgram-rate-limits/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Deepgram Rate Limits
  3. Instructions
  4. Step 1: Implement Request Queue
  5. Step 2: Add Exponential Backoff
  6. Step 3: Monitor Usage
  7. Step 4: Implement Circuit Breaker
  8. Output
  9. Examples
  10. TypeScript Rate Limiter
  11. Exponential Backoff with Jitter
  12. Circuit Breaker Pattern
  13. Usage Monitor
  14. Python Rate Limiter
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going