salesloft-debug-bundle

Featured

Collect SalesLoft debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic info for SalesLoft API problems. Trigger: "salesloft debug", "salesloft diagnostic", "salesloft support bundle".

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

# SalesLoft Debug Bundle ## Overview Collect diagnostic data for SalesLoft API issues: authentication state, rate limit usage, endpoint reachability, and API log entries. SalesLoft provides API Logs in the developer portal for request-level debugging. ## Prerequisites - SalesLoft API key or OAuth token - `curl` and `jq` available - Access to SalesLoft developer portal for API logs ## Instructions ### Step 1: Create Debug Script ```bash #!/bin/bash # salesloft-debug.sh set -euo pipefail BUNDLE="salesloft-debug-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE" TOKEN="${SALESLOFT_API_KEY:?Set SALESLOFT_API_KEY}" echo "=== SalesLoft Debug Bundle ===" | tee "$BUNDLE/summary.txt" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$BUNDLE/summary.txt" ``` ### Step 2: Check Authentication & Identity ```bash echo "--- Auth Check ---" >> "$BUNDLE/summary.txt" curl -s -w "\nHTTP_STATUS: %{http_code}\n" \ -H "Authorization: Bearer $TOKEN" \ https://api.salesloft.com/v2/me.json \ | jq '{id: .data.id, email: .data.email, name: .data.name, role: .data.role}' \ >> "$BUNDLE/auth.json" 2>&1 ``` ### Step 3: Check Rate Limit State ```bash echo "--- Rate Limits ---" >> "$BUNDLE/summary.txt" curl -sI -H "Authorization: Bearer $TOKEN" \ https://api.salesloft.com/v2/people.json?per_page=1 \ | grep -iE '(ratelimit|retry-after|x-request-id)' \ >> "$BUNDLE/rate-limits.txt" 2>&1 ``` ### Step 4: Test Key Endpoints ```bash echo "--- Endpoint Health ---" >> "$BUNDLE/summary.txt" for...

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

shopify-debug-bundle

Collect Shopify debug evidence including API versions, scopes, rate limit state, and request logs. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Shopify problems. Trigger with phrases like "shopify debug", "shopify support bundle", "collect shopify logs", "shopify diagnostic".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-debug-bundle

Collect Flexport API debug evidence for support tickets and troubleshooting. Use when encountering persistent API issues, preparing support tickets, or collecting diagnostic information for Flexport logistics problems. Trigger: "flexport debug", "flexport support bundle", "flexport diagnostic".

2,266 Updated today
jeremylongshore
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

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
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