fireflies-multi-env-setup
Installation
SKILL.md
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
// config/fireflies.ts
interface FirefliesConfig {
apiKey: string;
Related skills