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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-debug-bundleThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
#!/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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packDiagnoses 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'.