documenso-rate-limits
Implement Documenso rate limiting, backoff, and request throttling patterns. Use when handling rate limit errors, implementing retry logic, or optimizing API request throughput for Documenso. Trigger with phrases like "documenso rate limit", "documenso throttling", "documenso 429", "documenso retry", "documenso backoff".
npx skills add majiayu000/claude-skill-registry --skill documenso-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.
# Documenso Rate Limits ## Overview Handle Documenso API rate limits gracefully with exponential backoff, request queuing, and fair use compliance. ## Prerequisites - Documenso SDK installed - Understanding of async/await patterns - Queue library (optional but recommended) ## Documenso Fair Use Policy Documenso implements fair use rate limiting. While specific limits are not publicly documented, follow these guidelines: | Recommendation | Limit | Notes | |----------------|-------|-------| | Requests per second | 5-10 | Stay well under burst | | Requests per minute | 100-200 | Sustained rate | | Bulk operations | Use batching | Batch create recipients/fields | | File uploads | 1 at a time | Sequential uploads | | Polling | 5-10 second intervals | Don't poll aggressively | ## Instructions ### Step 1: Implement Exponential Backoff with Jitter ```typescript interface BackoffConfig { maxRetries: number; baseDelayMs: number; maxDelayMs: number; jitterMs: number; } const DEFAULT_BACKOFF: BackoffConfig = { maxRetries: 5, baseDelayMs: 1000, maxDelayMs: 32000, jitterMs: 500, }; async function withExponentialBackoff<T>( operation: () => Promise<T>, config: Partial<BackoffConfig> = {} ): Promi
- Overview
- Prerequisites
- Documenso Fair Use Policy
- Instructions
- Step 1: Implement Exponential Backoff with Jitter
- Step 2: Request Queue for Controlled Throughput
- Step 3: Batch Operations
- Step 4: Rate Limit Monitor
- Step 5: Idempotent Requests
- Step 6: Bulk Document Processing with Rate Control
- Output
- Error Handling
- Resources
- Next Steps
What does the documenso-rate-limits skill do?
Implement Documenso rate limiting, backoff, and request throttling patterns. Use when handling rate limit errors, implementing retry logic, or optimizing API request throughput for Documenso. Trigger with phrases like "documenso rate limit", "documenso throttling", "documenso 429", "documenso retry", "documenso backoff".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill documenso-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.
