Agent skill
juicebox-core-workflow-b
Execute Juicebox enrichment and outreach workflow. Trigger: "juicebox enrich", "candidate enrichment", "talent pool".
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
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
| 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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?