Execute Juicebox enrichment and outreach workflow. Trigger: "juicebox enrich", "candidate enrichment", "talent pool".
54
45%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Optimize this skill with Tessl
npx tessl skill review --optimize ./plugins/saas-packs/juicebox-pack/skills/juicebox-core-workflow-b/SKILL.mdEnrich 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.
3e83543
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.