From glean-pack
Documents Glean Indexing (~100 req/min/token) and Search API (~60/min) rate limits with backoff, p-queue concurrency=3, and bulk indexing advice.
How this skill is triggered — by the user, by Claude, or both
Slash command
/glean-pack:glean-rate-limitsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Glean Indexing API: ~100 requests/min per token. Bulk indexing: batches of 100 documents. Client API: ~60 searches/min per token. Implement exponential backoff on 429 responses. Use p-queue with concurrency=3 for indexing. For large corpora (>100K docs), use bulkindexdocuments over multiple hours.
Glean Indexing API: ~100 requests/min per token. Bulk indexing: batches of 100 documents. Client API: ~60 searches/min per token. Implement exponential backoff on 429 responses. Use p-queue with concurrency=3 for indexing. For large corpora (>100K docs), use bulkindexdocuments over multiple hours.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin glean-packProvides typed TypeScript client for Glean API with batch indexing, pagination, search, and error handling. Useful for production Glean integrations.
Handles Algolia rate limits and throttling: per-key limits, indexing queues, 429 responses, and backoff strategies with TypeScript examples.
Implements Exa API rate limiting with exponential backoff, jitter for 429 retries, and PQueue queuing for 10 QPS concurrency control.