From juicebox-pack
Optimizes Juicebox recruiting SaaS costs via quota monitoring in TypeScript, caching searches, filters, and targeted enrichments/contacts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-cost-tuningThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Feature | Cost Driver |
| 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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packImplements 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.