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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin hex-packThis skill is limited to using the following tools:
```bash
Diagnoses 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.
Share bugs, ideas, or general feedback.
#!/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"