Skip to main content

add-env-variable

Facilitates the addition of environment variables in applications, ensuring proper configuration and validation for external services.

Install this skill

or
47/100

Security score

The add-env-variable skill was audited on Feb 27, 2026 and we found 21 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

low line 151

Webhook reference - potential data exfiltration

SourceSKILL.md
151WEBHOOK_URL: z.string().url().optional(),
low line 154

Webhook reference - potential data exfiltration

SourceSKILL.md
154WEBHOOK_URL: getEnv("WEBHOOK_URL"),
low line 157

Webhook reference - potential data exfiltration

SourceSKILL.md
157# Webhook endpoint for notifications
low line 158

Webhook reference - potential data exfiltration

SourceSKILL.md
158BT_WEBHOOK_URL=https://example.com/webhook
medium line 8

Access to .env file

SourceSKILL.md
8Adds a new environment variable with Zod validation. All environment variables must be defined in `src/env.ts` and documented in `.env.example`.
medium line 15

Access to .env file

SourceSKILL.md
152. `.env.example` - Document the variable
medium line 52

Access to .env file

SourceSKILL.md
52### Step 3: Document in `.env.example`
low line 103

Access to .env file

SourceSKILL.md
103// .env.example
low line 116

Access to .env file

SourceSKILL.md
116// .env.example
low line 130

Access to .env file

SourceSKILL.md
130// .env.example
low line 143

Access to .env file

SourceSKILL.md
143// .env.example
low line 156

Access to .env file

SourceSKILL.md
156// .env.example
low line 170

Access to .env file

SourceSKILL.md
170// .env.example
low line 183

Access to .env file

SourceSKILL.md
183// .env.example
medium line 189

Access to .env file

SourceSKILL.md
189Always import from `@/env`, never use `process.env` directly:
low line 198

Access to .env file

SourceSKILL.md
198const apiKey = process.env.MY_API_KEY;
medium line 223

Access to .env file

SourceSKILL.md
223### 2. Update `.env.example`
medium line 264

Access to .env file

SourceSKILL.md
264- Do NOT use `process.env` directly in application code
medium line 266

Access to .env file

SourceSKILL.md
266- Do NOT skip documenting in `.env.example`
medium line 268

Access to .env file

SourceSKILL.md
268- Do NOT store secrets in `.env.example` (use placeholder values)
low line 158

External URL reference

SourceSKILL.md
158BT_WEBHOOK_URL=https://example.com/webhook
Scanned on Feb 27, 2026
View Security Dashboard
Installation guide →