From juicebox-pack
Collects Juicebox debug bundle via bash: API key status, health check, quota data. For support tickets or 'juicebox debug' issues. Outputs .tar.gz artifact.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packThis skill is limited to using the following tools:
```bash
Diagnoses and fixes common Juicebox API errors including invalid API key, quota exceeded, rate limits, invalid queries, and profile not found. Includes health check curl.
Generates timestamped debug bundle for OpenEvidence with API key status, packaged as tar.gz. Trigger: 'openevidence debug bundle'. Useful for OpenEvidence troubleshooting.
Creates timestamped debug bundle for MindTickle with API key status and timestamp using bash. Useful for troubleshooting SaaS integrations. Trigger: 'mindtickle debug bundle'.
Share bugs, ideas, or general feedback.
#!/bin/bash
BUNDLE="jb-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"
echo "JUICEBOX_API_KEY: ${JUICEBOX_API_KEY:+SET}" > "$BUNDLE/summary.txt"
curl -s -w "\nHTTP %{http_code}" -H "Authorization: Bearer $JUICEBOX_API_KEY" \
https://api.juicebox.ai/v1/health >> "$BUNDLE/summary.txt"
curl -s -H "Authorization: Bearer $JUICEBOX_API_KEY" \
https://api.juicebox.ai/v1/account/quota > "$BUNDLE/quota.json"
tar -czf "$BUNDLE.tar.gz" "$BUNDLE" && rm -rf "$BUNDLE"
echo "Bundle: $BUNDLE.tar.gz"
| Header | Use |
|---|---|
X-Request-Id | Support reference |
X-RateLimit-Remaining | Requests left |
Retry-After | Wait time on 429 |
See juicebox-rate-limits.