instantly-observability

Featured

Set up monitoring, alerting, and dashboards for Instantly.ai integrations. Use when implementing campaign health monitoring, account health alerts, or building analytics dashboards from Instantly data. Trigger with phrases like "instantly monitoring", "instantly dashboard", "instantly alerts", "instantly observability", "monitor instantly campaigns".

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

# Instantly Observability ## Overview Build monitoring and alerting for Instantly integrations. Covers campaign health checks, account warmup monitoring, webhook delivery tracking, deliverability alerts, and performance dashboards. Uses Instantly API v2 analytics endpoints combined with webhook events for real-time awareness. ## Prerequisites - Completed `instantly-install-auth` setup - API key with `campaigns:read`, `accounts:read`, and `all:read` scopes - Notification channel (Slack, email, PagerDuty, etc.) ## Instructions ### Step 1: Campaign Health Monitor ```typescript import { InstantlyClient } from "./src/instantly/client"; const client = new InstantlyClient(); interface HealthCheck { check: string; status: "ok" | "warning" | "critical"; message: string; } async function campaignHealthCheck(): Promise<HealthCheck[]> { const checks: HealthCheck[] = []; const campaigns = await client.campaigns.list(100); for (const campaign of campaigns.filter((c) => c.status === 1)) { // Active only const analytics = await client.campaigns.analytics(campaign.id); const sent = analytics.emails_sent || 1; // Bounce rate check (critical if > 5%) const bounceRate = (analytics.emails_bounced / sent) * 100; if (bounceRate > 5) { checks.push({ check: `bounce_rate:${campaign.name}`, status: "critical", message: `Bounce rate ${bounceRate.toFixed(1)}% exceeds 5% threshold. Campaign may be auto-paused.`, }); } else if...

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

instantly-hello-world

Create a minimal working Instantly.ai example with real API calls. Use when starting a new Instantly integration, testing your setup, or learning basic Instantly API v2 patterns. Trigger with phrases like "instantly hello world", "instantly example", "instantly quick start", "simple instantly code", "test instantly api".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-incident-runbook

Execute Instantly.ai incident response procedures with triage, mitigation, and recovery. Use when responding to campaign failures, account health crises, deliverability drops, or Instantly API outages. Trigger with phrases like "instantly incident", "instantly outage", "instantly campaign failed", "instantly emergency", "instantly runbook".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-common-errors

Diagnose and fix Instantly.ai API v2 common errors and exceptions. Use when encountering Instantly errors, debugging failed requests, or troubleshooting campaign/account/lead issues. Trigger with phrases like "instantly error", "instantly 401", "instantly 429", "instantly api failed", "instantly debug", "instantly troubleshoot".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-prod-checklist

Execute Instantly.ai production launch checklist and pre-flight validation. Use when deploying Instantly integrations to production, launching first campaign, or auditing production readiness. Trigger with phrases like "instantly production", "instantly launch checklist", "instantly go-live", "instantly pre-flight", "instantly prod ready".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-core-workflow-b

Manage Instantly.ai email account warmup, analytics, and deliverability. Use when enabling warmup, monitoring sender reputation, pulling analytics, or troubleshooting deliverability issues. Trigger with phrases like "instantly warmup", "instantly analytics", "email warmup instantly", "instantly deliverability", "instantly account health".

2,266 Updated today
jeremylongshore