juicebox-upgrade-migration
FeaturedPlan Juicebox SDK upgrades. Trigger: "upgrade juicebox", "juicebox migration".
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 Upgrade & Migration
## Overview
Juicebox is an AI-powered people search and analysis platform used for recruiting and market research. The API provides endpoints for dataset management, people searches, and AI-generated analyses. Tracking API versions is essential because Juicebox evolves its search query syntax, dataset schema, and analysis output format — upgrading without testing can break saved search filters, corrupt dataset imports, and change the structure of AI-generated candidate profiles that downstream systems consume.
## Version Detection
```typescript
const JUICEBOX_BASE = "https://api.juicebox.work/v1";
async function detectJuiceboxVersion(apiKey: string): Promise<void> {
const res = await fetch(`${JUICEBOX_BASE}/datasets`, {
headers: { Authorization: `Bearer ${apiKey}`, "Content-Type": "application/json" },
});
const version = res.headers.get("x-juicebox-api-version") ?? "v1";
console.log(`Juicebox API version: ${version}`);
// Check for deprecated search parameters
const searchRes = await fetch(`${JUICEBOX_BASE}/search`, {
method: "POST",
headers: { Authorization: `Bearer ${apiKey}`, "Content-Type": "application/json" },
body: JSON.stringify({ query: "test", limit: 1 }),
});
const deprecation = searchRes.headers.get("x-deprecated-params");
if (deprecation) console.warn(`Deprecated search params: ${deprecation}`);
}
```
## Migration Checklist
- [ ] Review Juicebox changelog for API breaking changes
- [ ] Audi...
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-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-prod-checklist
Execute Juicebox production checklist. Trigger: "juicebox production", "deploy juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-common-errors
Diagnose and fix Juicebox API errors. Trigger: "juicebox error", "fix juicebox", "debug juicebox".
2,266 Updated today
jeremylongshore AI & Automation Featured
juicebox-deploy-integration
Deploy Juicebox integrations. Trigger: "deploy juicebox", "juicebox production deploy".
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