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