Skip to main content

netlify-cli-and-deploy

Provides a comprehensive guide for using the Netlify CLI to deploy sites, manage environment variables, and streamline local development.

Install this skill

or
81/100

Security score

The netlify-cli-and-deploy skill was audited on May 24, 2026 and we found 7 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

low line 113

Access to .env file

SourceSKILL.md
113netlify env:list --plain > .env # Export to file
low line 116

Access to .env file

SourceSKILL.md
116netlify env:import .env
medium line 134

Access to .env file

SourceSKILL.md
134- **Server-side (Functions)**: Use `Netlify.env.get("VAR")` (preferred) or `process.env.VAR`
medium line 135

Access to .env file

SourceSKILL.md
135- **Client-side (Vite)**: Only `VITE_`-prefixed vars via `import.meta.env.VITE_VAR`
medium line 136

Access to .env file

SourceSKILL.md
136- **Client-side (Astro)**: Only `PUBLIC_`-prefixed vars via `import.meta.env.PUBLIC_VAR`
low line 127

External URL reference

SourceSKILL.md
127netlify env:set API_URL "https://api.prod.com" --context production
low line 128

External URL reference

SourceSKILL.md
128netlify env:set API_URL "https://api.staging.com" --context deploy-preview
Scanned on May 24, 2026
View Security Dashboard
Installation guide →