jeremylongshore/claude-code-plugins-plus-skills
juicebox-pack
plugins/saas-packs/juicebox-pack/skills/juicebox-core-workflow-a/SKILL.md
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/plugins/saas-packs/juicebox-pack/skills/juicebox-core-workflow-a/SKILL.md -a claude-code --skill juicebox-core-workflow-aInstallation paths:
.claude/skills/juicebox-core-workflow-a/# Juicebox People Search Workflow
## Overview
Implement a complete people search workflow using Juicebox AI for candidate sourcing and talent discovery.
## Prerequisites
- Juicebox SDK configured
- Understanding of search query syntax
- Knowledge of result filtering
## Instructions
### Step 1: Define Search Parameters
```typescript
// types/search.ts
export interface CandidateSearch {
role: string;
skills: string[];
location?: string;
experienceYears?: { min?: number; max?: number };
companies?: string[];
education?: string[];
}
export function buildSearchQuery(params: CandidateSearch): string {
const parts = [params.role];
if (params.skills.length > 0) {
parts.push(`skills:(${params.skills.join(' OR ')})`);
}
if (params.location) {
parts.push(`location:"${params.location}"`);
}
return parts.join(' AND ');
}
```
### Step 2: Implement Search Pipeline
```typescript
// workflows/candidate-search.ts
import { JuiceboxService } from '../lib/juicebox-client';
export class CandidateSearchPipeline {
constructor(private juicebox: JuiceboxService) {}
async searchCandidates(criteria: CandidateSearch) {
const query = buildSearchQuery(criteria);
// Initial broad search
const results = await this.juicebox.searchPeople(query, {
limit: 100,
fields: ['name', 'title', 'company', 'location', 'skills', 'experience']
});
// Score and rank candidates
const scored = results.profiles.map(profile => ({
...profile,
score: this.calculateFitScore(profile, criteria)
}));
// Sort by fit score
return scored.sort((a, b) => b.score - a.score);
}
private calculateFitScore(profile: Profile, criteria: CandidateSearch): number {
let score = 0;
// Skills match
const matchedSkills = profile.skills.filter(s =>
criteria.skills.includes(s.toLowerCase())
);
score += matchedSkills.length * 10;
// Experience match
if (criteria.experienceYears) {
const years