juicebox-reference-architecture
FeaturedImplement Juicebox reference architecture. Trigger: "juicebox architecture", "recruiting platform design".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Juicebox Reference Architecture
## Overview
Production architecture for AI-powered candidate analysis integrations with Juicebox. Designed for recruiting teams needing automated dataset ingestion from job descriptions, intelligent candidate scoring and ranking, result caching for repeated searches, and seamless export to ATS platforms like Greenhouse and Lever. Key design drivers: search result freshness, candidate deduplication across sources, outreach sequencing, and analysis pipeline throughput for high-volume hiring.
## Architecture Diagram
```
Recruiter Dashboard ──→ Search Service ──→ Cache (Redis) ──→ Juicebox API
↓ /search
Queue (Bull) ──→ Analysis Worker /profiles
↓ /outreach
ATS Export Service ──→ Greenhouse/Lever
↓
Webhook Handler ←── Juicebox Events
```
## Service Layer
```typescript
class CandidateSearchService {
constructor(private juicebox: JuiceboxClient, private cache: CacheLayer) {}
async findAndRank(criteria: SearchCriteria): Promise<RankedCandidate[]> {
const cacheKey = `search:${this.hashCriteria(criteria)}`;
const cached = await this.cache.get(cacheKey);
if (cached) return cached;
const results = await this.juicebox.search(criteria);
const ranked = results.profiles.map(p => ({ ...p, score: this.scoreCa...
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 Solid
juicebox-core-workflow-a
Execute Juicebox people search with power filters and ATS export. Trigger: "find candidates", "people search", "juicebox search".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-sdk-patterns
Apply production Juicebox SDK patterns. Trigger: "juicebox patterns", "juicebox best practices".
2,266 Updated today
jeremylongshore 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 Featured
juicebox-performance-tuning
Optimize Juicebox performance. Trigger: "juicebox performance", "optimize juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-prod-checklist
Execute Juicebox production checklist. Trigger: "juicebox production", "deploy juicebox".
2,266 Updated today
jeremylongshore