alchemy-debug-bundle

Featured

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

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

# Alchemy Debug Bundle ## Overview Collect diagnostic data for Alchemy support tickets: connectivity tests, SDK version, network status, CU usage, and recent error logs. ## Instructions ### Step 1: Debug Bundle Generator ```typescript // src/debug/alchemy-debug.ts import { Alchemy, Network } from 'alchemy-sdk'; interface DebugBundle { timestamp: string; sdkVersion: string; environment: Record<string, string>; connectivity: Record<string, any>; networkStatus: Record<string, any>; } async function generateDebugBundle(): Promise<DebugBundle> { const alchemy = new Alchemy({ apiKey: process.env.ALCHEMY_API_KEY, network: Network.ETH_MAINNET, }); const bundle: DebugBundle = { timestamp: new Date().toISOString(), sdkVersion: require('alchemy-sdk/package.json').version, environment: { nodeVersion: process.version, platform: process.platform, apiKeySet: process.env.ALCHEMY_API_KEY ? 'yes (redacted)' : 'NO — missing', network: process.env.ALCHEMY_NETWORK || 'ETH_MAINNET', }, connectivity: {}, networkStatus: {}, }; // Test core connectivity try { const start = Date.now(); const blockNumber = await alchemy.core.getBlockNumber(); bundle.connectivity.core = { status: 'ok', latencyMs: Date.now() - start, latestBlock: blockNumber, }; } catch (err: any) { bundle.connectivity.core = { status: 'failed', error: err.message }; } // Test Enhanced API try { const ...

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

apollo-debug-bundle

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

algolia-debug-bundle

Collect Algolia debug evidence: index stats, API key ACLs, query logs, and network diagnostics for support tickets. Trigger: "algolia debug", "algolia support bundle", "collect algolia logs", "algolia diagnostic", "algolia troubleshoot".

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

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
AI & Automation Solid

anima-debug-bundle

Collect Anima SDK debug evidence for support tickets and troubleshooting. Use when filing Anima support requests, debugging code generation issues, or collecting diagnostic data for the Anima team. Trigger: "anima debug bundle", "anima support ticket", "anima diagnostics".

2,266 Updated today
jeremylongshore