instantly-local-dev-loop

Featured

Configure Instantly.ai local development with mock server and test workflows. Use when setting up a dev environment, testing API calls without sending emails, or building integration tests against Instantly endpoints. Trigger with phrases like "instantly dev setup", "test instantly locally", "instantly mock server", "instantly development environment".

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 Local Dev Loop ## Overview Set up a local development workflow for Instantly integrations. Instantly provides a mock server at `https://developer.instantly.ai/_mock/api/v2/` for testing without sending real emails or consuming API limits. This skill covers mock server usage, integration testing, and local webhook development. ## Prerequisites - Completed `instantly-install-auth` setup - Node.js 18+ with TypeScript - A separate Instantly API key for dev/test (recommended) ## Instructions ### Step 1: Configure Dev Environment ```typescript // src/config.ts import "dotenv/config"; interface Config { baseUrl: string; apiKey: string; useMock: boolean; } export function getConfig(): Config { const useMock = process.env.INSTANTLY_USE_MOCK === "true"; return { baseUrl: useMock ? "https://developer.instantly.ai/_mock/api/v2" : process.env.INSTANTLY_BASE_URL || "https://api.instantly.ai/api/v2", apiKey: process.env.INSTANTLY_API_KEY || "", useMock, }; } ``` ```bash # .env.development INSTANTLY_API_KEY=your-dev-api-key INSTANTLY_BASE_URL=https://api.instantly.ai/api/v2 INSTANTLY_USE_MOCK=true # .env.production INSTANTLY_API_KEY=your-prod-api-key INSTANTLY_BASE_URL=https://api.instantly.ai/api/v2 INSTANTLY_USE_MOCK=false ``` ### Step 2: Build a Testable API Client ```typescript // src/instantly.ts import { getConfig } from "./config"; const config = getConfig(); export async function instantly<T = unknown>( path: string, opti...

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

Configure CI/CD pipelines for Instantly.ai integrations with GitHub Actions. Use when setting up automated testing, deployment pipelines, or continuous validation of Instantly API integrations. Trigger with phrases like "instantly ci", "instantly github actions", "instantly pipeline", "instantly automated testing", "instantly ci/cd".

2,266 Updated today
jeremylongshore
AI & Automation Solid

together-local-dev-loop

Together AI local dev loop for inference, fine-tuning, and model deployment. Use when working with Together AI's OpenAI-compatible API. Trigger: "together local dev loop".

2,266 Updated today
jeremylongshore
AI & Automation Featured

intercom-local-dev-loop

Configure Intercom local development with testing, mocking, and hot reload. Use when setting up a development environment, writing tests against the Intercom API, or establishing a fast iteration cycle. Trigger with phrases like "intercom dev setup", "intercom local development", "intercom dev environment", "develop with intercom", "test intercom locally".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-multi-env-setup

Configure Instantly.ai across development, staging, and production environments. Use when setting up multi-workspace deployments, isolating test from production, or managing per-environment API keys and webhook endpoints. Trigger with phrases like "instantly environments", "instantly staging", "instantly dev prod", "instantly multi-env", "instantly workspace isolation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-local-dev-loop

Set up local development for ClickUp API integrations with testing, mocking, and hot reload. Trigger: "clickup dev setup", "clickup local development", "clickup dev environment", "develop with clickup", "clickup testing setup", "mock clickup API".

2,266 Updated today
jeremylongshore