instantly-prod-checklist

Featured

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

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 Production Checklist ## Overview Pre-flight checklist for launching Instantly cold email campaigns in production. Covers account warmup verification, deliverability testing, lead list hygiene, campaign configuration, webhook setup, and monitoring. Skip any step that doesn't apply to your use case. ## Prerequisites - Completed `instantly-install-auth` setup - Email accounts connected and warmed up (minimum 14 days recommended) - Lead list prepared with verified emails ## Production Launch Checklist ### Phase 1: Account Health (2-4 weeks before launch) ```typescript import { instantly } from "./src/instantly"; async function phase1AccountHealth() { console.log("=== Phase 1: Account Health ===\n"); // 1. Verify all accounts have healthy SMTP/IMAP const accounts = await instantly<Array<{ email: string }>>( "/accounts?limit=100" ); const vitals = await instantly("/accounts/test/vitals", { method: "POST", body: JSON.stringify({ accounts: accounts.map((a) => a.email) }), }) as Array<{ email: string; smtp_status: string; imap_status: string }>; const broken = vitals.filter((v) => v.smtp_status !== "ok" || v.imap_status !== "ok"); console.log(`Accounts: ${accounts.length} total, ${broken.length} broken`); if (broken.length > 0) { console.log("FIX THESE FIRST:"); broken.forEach((v) => console.log(` ${v.email}: SMTP=${v.smtp_status} IMAP=${v.imap_status}`)); return false; } // 2. Verify warmup is active and healthy co...

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

instantly-observability

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-core-workflow-a

Build and launch an Instantly.ai cold email campaign end-to-end. Use when creating campaigns, adding leads, configuring sequences, and launching outreach via the Instantly API v2. Trigger with phrases like "instantly campaign", "launch instantly campaign", "create instantly outreach", "instantly cold email", "instantly send campaign".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-prod-checklist

Execute Klaviyo production deployment checklist and validation procedures. Use when deploying Klaviyo integrations to production, preparing for launch, or implementing go-live procedures for email/SMS marketing. Trigger with phrases like "klaviyo production", "deploy klaviyo", "klaviyo go-live", "klaviyo launch checklist", "klaviyo prod ready".

2,266 Updated today
jeremylongshore