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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Enrich profiles with AI Skills Maps, tech profiles, contact data. Build talent pools and automated outreach sequences.
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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packGuides 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 Ashby ATS recruiting workflows: create candidates, post jobs, manage applications, view interviews, and search talent pipeline via natural language.
Screens job candidates from Greenhouse using AI to evaluate high agency, grit, resilience, evidence of impact, and technical depth.