From lucidchart-pack
Implements Lucidchart API rate limiting with PQueue concurrency and interval caps. Use for high-volume diagram API calls to prevent throttling.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packThis skill is limited to using the following tools:
Handle Lucidchart rate limits with exponential backoff.
Provides TypeScript patterns for Lucidchart SDK including singleton client and error wrapper with rate-limit retry. Useful for stable API integrations.
Implements Linktree API rate limiting with PQueue, concurrency caps, and exponential backoff in TypeScript. Triggered by 'linktree rate limits'.
Implements exponential backoff, request queuing, and concurrency control for Ideogram API rate limits on image generation requests.
Share bugs, ideas, or general feedback.
Handle Lucidchart rate limits with exponential backoff.
import PQueue from 'p-queue';
const queue = new PQueue({ concurrency: 5, interval: 60_000, intervalCap: 60 });
async function rateLimited(fn: () => Promise<any>) {
return queue.add(fn);
}
See lucidchart-security-basics.