hubspot-advanced-troubleshooting

Featured

Debug complex HubSpot API issues with systematic isolation and evidence collection. Use when standard troubleshooting fails, investigating intermittent CRM errors, or preparing evidence bundles for HubSpot support escalation. Trigger with phrases like "hubspot hard bug", "hubspot mystery error", "hubspot intermittent failure", "hubspot deep debug", "hubspot support ticket".

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

# HubSpot Advanced Troubleshooting ## Overview Deep debugging techniques for complex HubSpot API issues: systematic layer testing, timing analysis, correlation ID tracking, and support escalation. ## Prerequisites - Access to application logs - `curl` and `jq` available - HubSpot access token for manual testing ## Instructions ### Step 1: Systematic Layer Testing Test each layer independently to isolate the failure: ```bash #!/bin/bash # hubspot-layer-test.sh echo "=== HubSpot Layer-by-Layer Diagnostic ===" # Layer 1: DNS Resolution echo "1. DNS Resolution" dig api.hubapi.com +short || echo "FAIL: DNS resolution" # Layer 2: TCP Connectivity echo "2. TCP Connectivity" timeout 5 bash -c 'echo > /dev/tcp/api.hubapi.com/443' 2>/dev/null \ && echo "OK" || echo "FAIL: Cannot reach port 443" # Layer 3: TLS Handshake echo "3. TLS Handshake" echo | openssl s_client -connect api.hubapi.com:443 2>/dev/null | grep "Verify return code" # Layer 4: HTTP Response (unauthenticated) echo "4. HTTP Response (no auth)" curl -so /dev/null -w "HTTP %{http_code} in %{time_total}s\n" \ https://api.hubapi.com/crm/v3/objects/contacts?limit=1 # Layer 5: Authenticated Request echo "5. Authenticated Request" RESPONSE=$(curl -s -w "\n%{http_code}" \ https://api.hubapi.com/crm/v3/objects/contacts?limit=1 \ -H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN") HTTP_CODE=$(echo "$RESPONSE" | tail -1) BODY=$(echo "$RESPONSE" | head -n -1) echo "HTTP $HTTP_CODE" if [ "$HTTP_CODE" = "200" ]; t...

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

clay-advanced-troubleshooting

Deep-debug complex Clay enrichment failures, provider degradation, and data flow issues. Use when standard troubleshooting fails, investigating intermittent enrichment failures, or preparing detailed evidence for Clay support escalation. Trigger with phrases like "clay hard bug", "clay mystery error", "clay impossible to debug", "difficult clay issue", "clay deep debug".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-common-errors

Diagnose and fix common HubSpot API errors with real error responses. Use when encountering HubSpot errors, debugging failed API requests, or troubleshooting integration issues with specific HTTP status codes. Trigger with phrases like "hubspot error", "fix hubspot", "hubspot 401", "hubspot 429", "hubspot not working", "debug hubspot API".

2,266 Updated today
jeremylongshore
AI & Automation Featured

perplexity-advanced-troubleshooting

Apply advanced debugging techniques for hard-to-diagnose Perplexity Sonar API issues. Use when standard troubleshooting fails, investigating inconsistent citations, or preparing evidence for support escalation. Trigger with phrases like "perplexity hard bug", "perplexity mystery error", "perplexity inconsistent results", "difficult perplexity issue", "perplexity deep debug".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hootsuite-debug-bundle

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

2,266 Updated today
jeremylongshore