Agent skill

juicebox-core-workflow-b

Execute Juicebox enrichment and outreach workflow. Trigger: "juicebox enrich", "candidate enrichment", "talent pool".

Stars 1,803
Forks 241

Install this agent skill to your Project

npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/juicebox-pack/skills/juicebox-core-workflow-b

SKILL.md

Juicebox Enrichment & Outreach

Overview

Enrich profiles with AI Skills Maps, tech profiles, contact data. Build talent pools and automated outreach sequences.

Instructions

Step 1: Bulk Enrichment

typescript
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`);
});

Step 2: Talent Pool

typescript
const pool = await client.pools.create({
  name: 'Senior Backend Q1 2026',
  profiles: enriched.map(p => p.id),
  tags: ['backend', 'senior']
});

Step 3: Outreach Sequence

typescript
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 Handling

Error Cause Solution
Partial enrichment Limited profile data Expected for some profiles
Email bounce Invalid address Use verified contacts only

Resources

Next Steps

For errors, see juicebox-common-errors.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results