From juicebox-pack
Enriches candidate profiles with AI skills maps, tech profiles, contacts via Juicebox API. Builds talent pools and automated email/LinkedIn outreach sequences.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packThis skill is limited to using the following tools:
Enrich profiles with AI Skills Maps, tech profiles, contact data. Build talent pools and automated outreach sequences.
Guides migration to Juicebox recruiting platform from tools like LinkedIn Recruiter, with feature comparisons, step-by-step instructions, and boolean-to-natural-language query translations.
Automates recruitment workflow: searches web/LinkedIn/GitHub for candidates matching job specs, scores technical fit, populates Google Sheets, drafts Gmail outreach.
Automates recruiting and hiring in Ashby ATS: create/manage candidates, post/list jobs, handle applications, view interviews/notes via natural language in Claude Code.
Share bugs, ideas, or general feedback.
Enrich profiles with AI Skills Maps, tech profiles, contact data. Build talent pools and automated outreach sequences.
const enriched = await Promise.all(
profiles.map(p => client.enrich({
profile_id: p.id,
fields: ['skills_map', 'tech_profile', 'research_profile', 'contact']
}))
);
enriched.forEach(ep => {
console.log(`${ep.name} — ${ep.skills_map.top_skills.join(', ')}`);
if (ep.tech_profile?.github) console.log(` GitHub: ${ep.tech_profile.github.repos} repos`);
});
const pool = await client.pools.create({
name: 'Senior Backend Q1 2026',
profiles: enriched.map(p => p.id),
tags: ['backend', 'senior']
});
await client.outreach.create({
pool_id: pool.id,
steps: [
{ type: 'email', delay_days: 0, subject: 'Opportunity at {{company}}',
body: 'Hi {{first_name}}, I saw your work on {{top_skill}}...' },
{ type: 'email', delay_days: 3, subject: 'Following up' },
{ type: 'linkedin', delay_days: 5, message: 'Hi {{first_name}}...' }
]
});
| Error | Cause | Solution |
|---|---|---|
| Partial enrichment | Limited profile data | Expected for some profiles |
| Email bounce | Invalid address | Use verified contacts only |
For errors, see juicebox-common-errors.