CtrlK
BlogDocsLog inGet started
Tessl Logo

juicebox-core-workflow-b

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

54

Quality

45%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

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.md
SKILL.md
Quality
Evals
Security

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

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

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

Step 3: Outreach Sequence

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

ErrorCauseSolution
Partial enrichmentLimited profile dataExpected for some profiles
Email bounceInvalid addressUse verified contacts only

Resources

  • Enrichment API

Next Steps

For errors, see juicebox-common-errors.

Repository
jeremylongshore/claude-code-plugins-plus-skills
Last updated
Created

Is this your skill?

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.