From juicebox-pack
Optimizes Juicebox recruiting SaaS costs via quota monitoring in TypeScript, caching searches, filters, and targeted enrichments/contacts.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packThis skill is limited to using the following tools:
| Feature | Cost Driver |
Implements Juicebox API rate limiting with plan quotas for searches/enrichments/contacts and PQueue TypeScript example to prevent 429 errors.
Optimizes Clay data enrichment costs using own provider API keys, waterfall tuning, input pre-filtering, and budget controls.
Optimizes HubSpot API costs by monitoring usage against daily limits, selecting plans, and reducing calls via batch reads and tracking.
Share bugs, ideas, or general feedback.
| Feature | Cost Driver |
|---|---|
| Search | Per query |
| Enrichment | Per profile |
| Contact data | Per lookup |
| Outreach | Per message |
const quota = await client.account.getQuota();
console.log(`Searches: ${quota.searches.used}/${quota.searches.limit}`);
if (quota.searches.used > quota.searches.limit * 0.8) console.warn('80% quota used');
See juicebox-reference-architecture.