instantly-debug-bundle

Featured

Collect Instantly.ai debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or auditing campaign/account state. Trigger with phrases like "instantly debug", "instantly support ticket", "instantly diagnostic", "instantly audit", "collect instantly evidence".

AI & Automation 2,359 stars 334 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

# Instantly Debug Bundle ## Overview Collect a comprehensive debug bundle from your Instantly workspace: campaign state, account health, warmup metrics, lead stats, webhook delivery status, and recent errors. Output is a JSON report suitable for support tickets or internal audits. ## Prerequisites - Completed `instantly-install-auth` setup - API key with `all:read` scope (or individual read scopes for each resource) ## Instructions ### Step 1: Collect Full Debug Bundle ```typescript import { instantly } from "./src/instantly"; import { writeFileSync } from "fs"; interface DebugBundle { timestamp: string; workspace: unknown; campaigns: unknown[]; accounts: unknown[]; warmup_analytics: unknown[]; webhooks: unknown[]; webhook_event_summary: unknown; background_jobs: unknown[]; lead_count_by_campaign: Record<string, number>; errors: string[]; } async function collectDebugBundle(): Promise<DebugBundle> { const bundle: DebugBundle = { timestamp: new Date().toISOString(), workspace: null, campaigns: [], accounts: [], warmup_analytics: [], webhooks: [], webhook_event_summary: null, background_jobs: [], lead_count_by_campaign: {}, errors: [], }; // Workspace info try { bundle.workspace = await instantly("/workspaces/current"); } catch (e: any) { bundle.errors.push(`workspace: ${e.message}`); } // All campaigns with status try { bundle.campaigns = await instantly("/campaigns?limit=100"); }...

Details

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

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category