From juicebox-pack
Diagnoses and fixes Juicebox API errors including auth, quotas, rate limits, and query issues. Useful on 4xx/5xx responses from juicebox.ai.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-common-errorsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```json
{"error": "invalid_api_key"}
Fix: Verify key at app.juicebox.ai > Settings.
{"error": "quota_exceeded"}
Fix: Check quota in dashboard, upgrade plan.
Fix: Check Retry-After header. Implement exponential backoff.
Fix: Ensure query is non-empty, check filter syntax.
Fix: Profile may be removed. Re-run search.
curl -s -H "Authorization: Bearer $JUICEBOX_API_KEY" \
https://api.juicebox.ai/v1/health
See juicebox-debug-bundle.
2plugins reuse this skill
First indexed Jul 17, 2026
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin juicebox-packDiagnoses and fixes Juicebox API errors including authentication, rate limiting, quota exhaustion, dataset format issues, and analysis timeouts.
Guides HTTP status code selection (2xx-5xx) and API error response design with envelopes, validation errors, per-field messages, RFC 9457, and Stripe/GitHub/Twilio patterns.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.