instantly-multi-env-setup

Featured

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

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 Multi-Environment Setup ## Overview Configure Instantly API v2 integrations across development, staging, and production environments. Instantly uses workspace-level isolation — each workspace has its own accounts, campaigns, leads, and API keys. This skill covers workspace separation, environment-specific configuration, mock server for dev, and safe promotion workflows. ## Environment Strategy | Environment | Instantly Backend | API Keys | Webhooks | Purpose | |-------------|------------------|----------|----------|---------| | Development | Mock server | `mock-key` | localhost:3000 | Code iteration | | Staging | Separate workspace | Staging key | staging.yourapp.com | Integration testing | | Production | Production workspace | Prod key | prod.yourapp.com | Live outreach | ## Instructions ### Step 1: Environment Configuration ```typescript // src/config.ts import "dotenv/config"; type Env = "development" | "staging" | "production"; interface InstantlyConfig { env: Env; apiKey: string; baseUrl: string; webhookSecret: string; useMock: boolean; dailyLimitCap: number; enableRealSending: boolean; } export function getConfig(): InstantlyConfig { const env = (process.env.NODE_ENV || "development") as Env; const configs: Record<Env, InstantlyConfig> = { development: { env: "development", apiKey: process.env.INSTANTLY_API_KEY_DEV || "mock-key", baseUrl: "https://developer.instantly.ai/_mock/api/v2", webhookSecret: "dev...

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

intercom-multi-env-setup

Configure Intercom across development, staging, and production workspaces. Use when setting up multi-environment deployments, configuring per-environment access tokens, or implementing workspace isolation. Trigger with phrases like "intercom environments", "intercom staging", "intercom dev prod", "intercom environment setup", "intercom workspace isolation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-multi-env-setup

Configure Klaviyo across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment API keys, or implementing environment-specific Klaviyo configurations. Trigger with phrases like "klaviyo environments", "klaviyo staging", "klaviyo dev prod", "klaviyo environment setup", "klaviyo config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-multi-env-setup

Configure ClickUp API access across dev, staging, and production environments with per-environment tokens and workspace isolation. Trigger: "clickup environments", "clickup staging", "clickup dev prod", "clickup environment setup", "clickup config by env", "clickup multi-env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

customerio-multi-env-setup

Configure Customer.io multi-environment setup with workspace isolation. Use when setting up dev/staging/prod workspaces, environment-aware clients, or Kubernetes config overlays. Trigger: "customer.io environments", "customer.io staging", "customer.io dev prod", "customer.io workspace isolation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-local-dev-loop

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

2,266 Updated today
jeremylongshore