| name | juicebox-cost-tuning |
| description | Optimize Juicebox costs.
Trigger: "juicebox cost", "juicebox billing", "juicebox budget".
|
| allowed-tools | Read, Write, Edit, Grep |
| version | 1.16.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","recruiting","juicebox"] |
| compatibility | Designed for Claude Code |
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.