fireflies-multi-env-setup

Featured

Configure Fireflies.ai across dev, staging, and production with isolated API keys. Use when setting up multi-environment deployments, managing per-env secrets, or implementing environment-specific Fireflies configurations. Trigger with phrases like "fireflies environments", "fireflies staging", "fireflies dev prod", "fireflies environment setup", "fireflies config by env".

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

# Fireflies.ai Multi-Environment Setup ## Overview Configure Fireflies.ai with isolated API keys, webhook URLs, and settings per environment. Each environment gets its own Fireflies workspace or API key to prevent cross-environment data leakage. ## Environment Strategy | Environment | API Key | Webhook URL | Settings | |-------------|---------|-------------|----------| | Development | `FIREFLIES_API_KEY_DEV` | localhost (ngrok) | Debug logs, no cache | | Staging | `FIREFLIES_API_KEY_STAGING` | staging.app.com/webhooks | Prod-like, short cache | | Production | `FIREFLIES_API_KEY_PROD` | app.com/webhooks | Hardened, long cache | ## Instructions ### Step 1: Environment Configuration Module ```typescript // config/fireflies.ts interface FirefliesConfig { apiKey: string; apiUrl: string; webhookSecret: string; cache: { enabled: boolean; ttlSeconds: number }; debug: boolean; timeout: number; maxRetries: number; } const configs: Record<string, Partial<FirefliesConfig>> = { development: { apiKey: process.env.FIREFLIES_API_KEY_DEV || "", webhookSecret: process.env.FIREFLIES_WEBHOOK_SECRET_DEV || "dev-secret-16char", cache: { enabled: false, ttlSeconds: 60 }, debug: true, timeout: 30000, maxRetries: 1, }, staging: { apiKey: process.env.FIREFLIES_API_KEY_STAGING || "", webhookSecret: process.env.FIREFLIES_WEBHOOK_SECRET_STAGING || "", cache: { enabled: true, ttlSeconds: 300 }, debug: false, timeout: 15000, maxRetri...

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

firecrawl-multi-env-setup

Configure Firecrawl across development, staging, and production environments. Use when setting up multi-environment scraping pipelines, managing credit budgets per env, or configuring self-hosted Firecrawl for development. Trigger with phrases like "firecrawl environments", "firecrawl staging", "firecrawl dev prod", "firecrawl environment setup", "firecrawl config by env".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-multi-env-setup

Configure Webflow across development, staging, and production environments with per-environment API tokens, site IDs, and secret management via Vault/AWS/GCP. Trigger with phrases like "webflow environments", "webflow staging", "webflow dev prod", "webflow environment setup", "webflow config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-multi-env-setup

Configure Flexport API across dev, staging, and production environments with isolated API keys, separate webhook endpoints, and environment guards. Trigger: "flexport environments", "flexport staging", "flexport multi-env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

figma-multi-env-setup

Configure Figma API access across dev, staging, and production environments. Use when setting up per-environment tokens, managing multiple Figma files, or isolating development from production Figma resources. Trigger with phrases like "figma environments", "figma staging", "figma dev prod", "figma environment config".

2,266 Updated today
jeremylongshore
AI & Automation Featured

langfuse-multi-env-setup

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

2,266 Updated today
jeremylongshore