Before ANY commit:
// NEVER: Hardcoded secrets const apiKey = "sk-xxxxx" // ALWAYS: Environment variables const apiKey = process.env.API_KEY if (!apiKey) { throw new Error('API_KEY not configured') }
If security issue found: