From juicebox-pack
Enriches candidate profiles with AI skills maps, tech profiles, and contact data, then builds talent pools and automated 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.
2plugins reuse this skill
First indexed Jul 17, 2026
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin juicebox-packMigrates from LinkedIn Recruiter and other recruiting tools to Juicebox. Provides step-by-step migration steps, query translation from boolean to natural language, and ATS integration configuration.
Helps recruiters source and engage candidates with Boolean search strings, outreach messages, and talent pipeline strategies.
Automates recruitment from job spec to candidate evaluation: searches web/LinkedIn/GitHub, scores candidates, populates Google Sheets, and drafts Gmail outreach.