Juicebox cost tuning
'Optimize Juicebox costs.From its SKILL.md
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill juicebox-cost-tuningAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.1 KB, 184 tokens by cl100k_base, as published. Nobody here has run it
Juicebox Cost Tuning
Cost Factors
| Feature | Cost Driver |
|---|---|
| Search | Per query |
| Enrichment | Per profile |
| Contact data | Per lookup |
| Outreach | Per message |
Reduction Strategies
- Cache search results (avoid duplicate queries)
- Use filters (fewer wasted enrichments)
- Only enrich top-scored candidates
- Only get contacts for final candidates
Quota Monitoring
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');
Resources
Next Steps
See juicebox-reference-architecture.
What ships with it: 1 file
5.4 KB alongside SKILL.md
references/
- implementation-guide.md5.4 KB