intercom-debug-bundle

Featured

Collect Intercom debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Intercom API problems. Trigger with phrases like "intercom debug", "intercom support bundle", "collect intercom logs", "intercom diagnostic", "intercom troubleshoot".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Intercom Debug Bundle ## Overview Collect diagnostic evidence for Intercom issues including API health, rate limit status, SDK version, recent errors, and configuration validation. ## Prerequisites - Intercom access token configured - `curl` and `jq` available - Access to application logs ## Instructions ### Step 1: Create Debug Bundle Script ```bash #!/bin/bash # intercom-debug-bundle.sh set -euo pipefail BUNDLE_DIR="intercom-debug-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE_DIR" TOKEN="${INTERCOM_ACCESS_TOKEN:-}" echo "=== Intercom Debug Bundle ===" | tee "$BUNDLE_DIR/summary.txt" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$BUNDLE_DIR/summary.txt" # Token presence check (never log the actual token) echo "--- Token Status ---" >> "$BUNDLE_DIR/summary.txt" if [ -z "$TOKEN" ]; then echo "ERROR: INTERCOM_ACCESS_TOKEN not set" >> "$BUNDLE_DIR/summary.txt" echo "Set INTERCOM_ACCESS_TOKEN and re-run" >&2 exit 1 fi echo "Token: [SET] (${#TOKEN} chars)" >> "$BUNDLE_DIR/summary.txt" ``` ### Step 2: Collect API Health and Auth Status ```bash # API authentication test echo "--- API Auth Test ---" >> "$BUNDLE_DIR/summary.txt" AUTH_RESPONSE=$(curl -s -w "\n%{http_code}" \ -H "Authorization: Bearer $TOKEN" \ -H "Accept: application/json" \ https://api.intercom.io/me 2>&1) HTTP_CODE=$(echo "$AUTH_RESPONSE" | tail -1) AUTH_BODY=$(echo "$AUTH_RESPONSE" | head -n -1) echo "HTTP Status: $HTTP_CODE" >> "$BUNDLE_DIR/summary.txt" if [ "$HTTP_CODE" = "200" ]; the...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

hubspot-debug-bundle

Collect HubSpot debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for HubSpot API problems. Trigger with phrases like "hubspot debug", "hubspot support bundle", "collect hubspot logs", "hubspot diagnostic", "hubspot correlation id".

2,266 Updated today
jeremylongshore
AI & Automation Featured

elevenlabs-debug-bundle

Collect ElevenLabs debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for ElevenLabs problems. Trigger: "elevenlabs debug", "elevenlabs support bundle", "collect elevenlabs logs", "elevenlabs diagnostic", "elevenlabs support ticket".

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-debug-bundle

Collect Cohere debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Cohere API problems. Trigger with phrases like "cohere debug", "cohere support bundle", "collect cohere logs", "cohere diagnostic".

2,266 Updated today
jeremylongshore
AI & Automation Featured

attio-debug-bundle

Collect Attio integration diagnostic evidence -- API health, scopes, object schema, and rate limit status -- for debugging or support tickets. Trigger: "attio debug", "attio support bundle", "attio diagnostic", "collect attio logs", "attio not working debug".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-debug-bundle

Collect Klaviyo debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Klaviyo API problems. Trigger with phrases like "klaviyo debug", "klaviyo support bundle", "collect klaviyo logs", "klaviyo diagnostic", "klaviyo troubleshoot".

2,266 Updated today
jeremylongshore