instantly-sdk-patterns

Installation
SKILL.md

Instantly SDK Patterns

Overview

Production-ready patterns for Instantly SDK usage in TypeScript and Python.

Prerequisites

  • Completed instantly-install-auth setup
  • Familiarity with async/await patterns
  • Understanding of error handling best practices

Instructions

Step 1: Implement Singleton Pattern (Recommended)

// src/instantly/client.ts
import { InstantlyClient } from '@instantly/sdk';

let instance: InstantlyClient | null = null;

export function getInstantlyClient(): InstantlyClient {
Related skills
Installs
21
GitHub Stars
2.2K
First Seen
Feb 18, 2026