apollo-debug-bundle

Featured

Collect Apollo.io debug evidence for support. Use when preparing support tickets, documenting issues, or gathering diagnostic information for Apollo problems. Trigger with phrases like "apollo debug", "apollo support bundle", "collect apollo diagnostics", "apollo troubleshooting info".

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

# Apollo Debug Bundle ## Current State !`node --version 2>/dev/null || echo 'N/A'` !`python3 --version 2>/dev/null || echo 'N/A'` !`uname -a` ## Overview Collect comprehensive debug information for Apollo.io API issues. Generates a JSON diagnostic bundle with environment info, connectivity tests, rate limit status, key type verification, and sanitized request/response logs. ## Prerequisites - `APOLLO_API_KEY` environment variable set - Node.js 18+ or Python 3.10+ ## Instructions ### Step 1: Create the Debug Bundle Collector ```typescript // src/scripts/debug-bundle.ts import axios from 'axios'; import os from 'os'; const BASE_URL = 'https://api.apollo.io/api/v1'; interface DebugBundle { timestamp: string; environment: Record<string, string>; connectivity: { reachable: boolean; latencyMs: number; statusCode?: number }; keyType: 'master' | 'standard' | 'invalid' | 'unknown'; rateLimits: { limit?: string; remaining?: string; window?: string }; endpointTests: Array<{ endpoint: string; status: number | string; ok: boolean }>; systemInfo: Record<string, string>; } async function collectDebugBundle(): Promise<DebugBundle> { const headers = { 'Content-Type': 'application/json', 'x-api-key': process.env.APOLLO_API_KEY ?? '', }; const bundle: DebugBundle = { timestamp: new Date().toISOString(), environment: { nodeVersion: process.version, platform: os.platform(), arch: os.arch(), apiKeySet: process.env.APOLLO_API_KEY ...

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

abridge-debug-bundle

Collect Abridge debug evidence for support tickets and troubleshooting. Use when filing Abridge support tickets, collecting diagnostic data, or preparing evidence for escalation to Abridge engineering. Trigger: "abridge debug bundle", "abridge support ticket", "abridge diagnostics", "collect abridge evidence".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-debug-bundle

Collect Alchemy SDK debug evidence for troubleshooting and support tickets. Use when encountering persistent issues, preparing support tickets, or debugging blockchain query failures. Trigger: "alchemy debug bundle", "alchemy support ticket", "alchemy diagnostics".

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

clade-debug-bundle

Collect debug evidence for Anthropic API issues — request IDs, headers, Use when working with debug-bundle patterns. error payloads, and reproduction steps for support tickets. Trigger with "anthropic debug", "claude support ticket", "anthropic request id", "debug claude api call".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-debug-bundle

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

2,266 Updated today
jeremylongshore