juicebox-core-workflow-a
SolidExecute Juicebox people search with power filters and ATS export. Trigger: "find candidates", "people search", "juicebox search".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 97/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Juicebox People Search Workflow
## Overview
Complete candidate sourcing: natural language search with power filters, scoring, and export to 41+ ATS systems.
## Instructions
### Step 1: Power Filter Search
```typescript
const results = await client.search({
query: 'backend engineer distributed systems',
filters: {
location: ['San Francisco', 'Seattle', 'Remote'],
experience_years: { min: 3, max: 10 },
skills: ['Go', 'Kubernetes', 'distributed systems'],
company_size: '100-1000',
exclude_companies: ['CurrentEmployer']
},
sort: 'relevance', limit: 50
});
```
### Step 2: Score Candidates
```typescript
function scoreCandidate(profile, targetSkills: string[]) {
let score = 0;
const matched = profile.skills.filter(s =>
targetSkills.some(t => s.toLowerCase().includes(t.toLowerCase()))
);
score += matched.length * 20;
if (profile.experience_years >= 5) score += 30;
return { profile, score, matchedSkills: matched };
}
const ranked = results.profiles
.map(p => scoreCandidate(p, ['Go', 'Kubernetes']))
.sort((a, b) => b.score - a.score);
```
### Step 3: Export to ATS
```typescript
await client.export({
profiles: ranked.slice(0, 20).map(r => r.profile.id),
destination: 'greenhouse', // lever, ashby, recruiterflow, etc.
job_id: 'job_abc123'
});
```
## Error Handling
| Error | Cause | Solution |
|-------|-------|----------|
| Low results | Filters too strict | Relax experience or location |
| Duplicates | Overlapping searches | ...
Details
- Author
- jeremylongshore
- Repository
- jeremylongshore/claude-code-plugins-plus-skills
- Created
- 7 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
juicebox-core-workflow-b
Execute Juicebox enrichment and outreach workflow. Trigger: "juicebox enrich", "candidate enrichment", "talent pool".
2,266 Updated today
jeremylongshore AI & Automation Solid
juicebox-hello-world
Create a minimal Juicebox people search example. Trigger: "juicebox hello world", "first people search", "test juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-reference-architecture
Implement Juicebox reference architecture. Trigger: "juicebox architecture", "recruiting platform design".
2,266 Updated today
jeremylongshore AI & Automation Solid
juicebox-migration-deep-dive
Migrate to Juicebox from other tools. Trigger: "switch to juicebox", "migrate to juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-data-handling
Juicebox data privacy and GDPR. Trigger: "juicebox data privacy", "juicebox gdpr".
2,266 Updated today
jeremylongshore