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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin glean-packThis skill is limited to using the following tools:
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.
Provides 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.
Share bugs, ideas, or general feedback.
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.