env-setup-assistant
Assists in setting up reproducible development environments with automated scripts for dependencies, IDE configuration, and onboarding.
Install this skill
Security score
The env-setup-assistant skill was audited on Feb 9, 2026 and we found 27 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 31 | ```bash |
Template literal with variable interpolation in command context
| 337 | ```json |
Access to .env file
| 94 | if [ ! -f .env ]; then |
Access to .env file
| 95 | if [ -f .env.example ]; then |
Access to .env file
| 96 | cp .env.example .env |
Access to .env file
| 97 | log_info "Created .env from .env.example" |
Access to .env file
| 98 | log_warn "Please update .env with your values" |
Access to .env file
| 100 | log_error "No .env.example found" |
Access to .env file
| 104 | log_info ".env already exists" |
Access to .env file
| 203 | echo " 1. Update .env with your values" |
Access to .env file
| 529 | cp .env.example .env |
Access to .env file
| 530 | # Edit .env with your values |
Access to .env file
| 692 | if (-not (Test-Path .env)) { |
Access to .env file
| 693 | if (Test-Path .env.example) { |
Access to .env file
| 694 | Copy-Item .env.example .env |
Access to .env file
| 695 | Write-Host "Created .env from .env.example" -ForegroundColor Yellow |
External URL reference
| 80 | echo " - Node.js: https://nodejs.org/ or 'nvm install 20'" |
External URL reference
| 81 | echo " - Git: https://git-scm.com/" |
External URL reference
| 205 | echo " 3. Open http://localhost:3000" |
External URL reference
| 353 | "url": "http://localhost:3000" |
External URL reference
| 497 | - Node.js 20+ ([install](https://nodejs.org/) or `nvm install 20`) |
External URL reference
| 499 | - Docker Desktop ([install](https://docker.com/products/docker-desktop)) |
External URL reference
| 500 | - Git ([install](https://git-scm.com/)) |
External URL reference
| 516 | Open [http://localhost:3000](http://localhost:3000) |
External URL reference
| 554 | We use [Conventional Commits](https://www.conventionalcommits.org/): |
External URL reference
| 626 | - [Design System](https://figma.com/...) |
External URL reference
| 684 | Write-Host "Node.js not found. Please install from https://nodejs.org/" -ForegroundColor Red |