env-setup — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited env-setup (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
!ls package.json requirements.txt pyproject.toml go.mod Cargo.toml *.csproj Gemfile composer.json mix.exs 2>/dev/null !ls .env .env.example .env.sample .env.template 2>/dev/null !ls Dockerfile docker-compose* Makefile Procfile 2>/dev/null
!node --version 2>/dev/null || echo "Node.js: not installed" !python3 --version 2>/dev/null || echo "Python: not installed" !go version 2>/dev/null || echo "Go: not installed" !rustc --version 2>/dev/null || echo "Rust: not installed" !docker --version 2>/dev/null || echo "Docker: not installed" !git --version 2>/dev/null
Scan project files to determine:
Scan the codebase for environment variable references:
grep -rn "process\.env\." --include="*.ts" --include="*.js" | ...
grep -rn "os\.environ\|os\.getenv" --include="*.py" | ...
grep -rn "os\.Getenv" --include="*.go" | ...Generate .env.example with:
# Application
APP_PORT=3000
APP_ENV=development
APP_SECRET=change-me-to-a-random-string
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/dbname
# External Services
# API_KEY=your-api-key-hereInclude:
Verify each requirement is met:
| Requirement | Status | Version | Required |
|---|---|---|---|
| Node.js | OK/MISSING | v20.x | >=18 |
| ... | ... | ... | ... |
Create or update setup documentation:
Run a series of checks:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.