From hootsuite-pack
Collects Hootsuite debug bundle with credential checks, API connectivity tests, social profiles, and logs for support tickets and troubleshooting.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin hootsuite-packThis skill is limited to using the following tools:
```bash
Diagnoses and fixes common Hootsuite API errors: 401/403 unauthorized, 422 validation, 429 rate limits, OAuth token issues, media uploads. Includes curl diagnostics and fixes.
Collects HubSpot API debug bundle with runtime/SDK versions, rate limits, request IDs, endpoint status, and token info for support tickets.
Generates Intercom debug bundle with API auth tests, rate limits, status checks, and token validation for support tickets and troubleshooting.
Share bugs, ideas, or general feedback.
#!/bin/bash
BUNDLE="hootsuite-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"
echo "=== Hootsuite Debug ===" | tee "$BUNDLE/summary.txt"
echo "Date: $(date -u)" >> "$BUNDLE/summary.txt"
# Credentials check (presence only)
echo "--- Config ---" >> "$BUNDLE/summary.txt"
echo "CLIENT_ID: ${HOOTSUITE_CLIENT_ID:+[SET]}" >> "$BUNDLE/summary.txt"
echo "ACCESS_TOKEN: ${HOOTSUITE_ACCESS_TOKEN:+[SET]}" >> "$BUNDLE/summary.txt"
# API connectivity
echo "--- API Test ---" >> "$BUNDLE/summary.txt"
curl -s -w "HTTP %{http_code} in %{time_total}s\n" -o "$BUNDLE/me.json" \
-H "Authorization: Bearer $HOOTSUITE_ACCESS_TOKEN" \
https://platform.hootsuite.com/v1/me >> "$BUNDLE/summary.txt" 2>&1
# Social profiles
curl -s -o "$BUNDLE/profiles.json" \
-H "Authorization: Bearer $HOOTSUITE_ACCESS_TOKEN" \
https://platform.hootsuite.com/v1/socialProfiles 2>/dev/null
tar -czf "$BUNDLE.tar.gz" "$BUNDLE"
echo "Bundle: $BUNDLE.tar.gz"
For rate limits, see hootsuite-rate-limits.