From hootsuite-pack
Collects Hootsuite debug bundle with credential checks, API connectivity tests, social profiles, and logs for support tickets and troubleshooting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hootsuite-pack:hootsuite-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="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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin hootsuite-packDiagnoses 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.