From hex-pack
Collects Hex debug bundle with API token check, projects API response, and summary tar.gz for support tickets. Use for Hex troubleshooting or diagnostics.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hex-pack:hex-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="hex-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"
echo "=== Hex Debug ===" | tee "$BUNDLE/summary.txt"
echo "HEX_API_TOKEN: ${HEX_API_TOKEN:+[SET]}" >> "$BUNDLE/summary.txt"
# API test
curl -s -w "\nHTTP %{http_code}" -H "Authorization: Bearer $HEX_API_TOKEN" \
https://app.hex.tech/api/v1/projects > "$BUNDLE/projects.json" 2>&1
tar -czf "$BUNDLE.tar.gz" "$BUNDLE"
echo "Bundle: $BUNDLE.tar.gz"
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin hex-packDiagnoses and fixes common Hex API errors: 401/403/404/429 auth/rate limits, ERRORED/KILLED runs. Includes curl tests for tokens/projects.
Collects Juicebox debug bundle via bash: API key status, health check, quota data. For support tickets or 'juicebox debug' issues. Outputs .tar.gz artifact.
Generates timestamped debug bundle for OpenEvidence with API key status, packaged as tar.gz. Trigger: 'openevidence debug bundle'. Useful for OpenEvidence troubleshooting.