instantly-core-workflow-b

Featured

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

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 Core Workflow B: Warmup & Analytics Pipeline ## Overview Manage the email account warmup lifecycle and campaign analytics. Warmup builds sender reputation through controlled email exchanges across Instantly's 4.2M+ account network before you start cold outreach. This workflow covers enabling warmup, monitoring warmup health, pulling campaign analytics, and daily send tracking. ## Prerequisites - Completed `instantly-install-auth` setup - Email accounts connected in Instantly (IMAP/SMTP or Google/Microsoft OAuth) - API key with `accounts:update` and `campaigns:read` scopes ## Instructions ### Step 1: Enable Warmup on Email Accounts ```typescript import { instantly } from "./src/instantly"; // Enable warmup — triggers a background job async function enableWarmup(emails: string[]) { const job = await instantly<{ id: string; status: string }>( "/accounts/warmup/enable", { method: "POST", body: JSON.stringify({ emails }), } ); console.log(`Warmup enable job started: ${job.id} (status: ${job.status})`); // Poll background job until complete let result = job; while (result.status !== "completed" && result.status !== "failed") { await new Promise((r) => setTimeout(r, 2000)); result = await instantly<{ id: string; status: string }>( `/background-jobs/${job.id}` ); } console.log(`Warmup job ${result.status}`); return result; } // Enable for specific accounts await enableWarmup(["outreach1@yourdomain.com", ...

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

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-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 Listed

instantly-automation

Automate Instantly cold email outreach -- manage campaigns, sending accounts, lead lists, bulk lead imports, and campaign analytics -- using natural language through the Composio MCP integration.

62,564 Updated 1 weeks ago
ComposioHQ
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