
Environment Setup Guide
Walk through installing runtimes, databases, Docker, env files, and verification commands when you start a project, switch machines, or onboard without a written runbook.
Install
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill environment-setup-guideWhat is this skill?
- Three-step flow: identify requirements → check current setup → provide install and config steps
- Covers languages, package managers, databases, Git, Docker, and environment variables
- Version-check commands before installing duplicate tooling
- Troubleshooting and documentation of setup for future you or collaborators
- Onboarding use case for new machines and OS switches
Adoption & trust: 527 installs on skills.sh; 40.1k GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Azure Kubernetesmicrosoft/azure-skills
Github Actions Docsxixu-me/skills
Deploy To Vercelvercel-labs/agent-skills
Vercel Cli With Tokensvercel-labs/agent-skills
Turborepovercel/turborepo
Docker Expertsickn33/antigravity-awesome-skills
Journey fit
Common Questions / FAQ
Is Environment Setup Guide safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Environment Setup Guide
# Environment Setup Guide ## Overview Help developers set up complete development environments from scratch. This skill provides step-by-step guidance for installing tools, configuring dependencies, setting up environment variables, and verifying the setup works correctly. ## When to Use This Skill - Use when starting a new project and need to set up the development environment - Use when onboarding new team members to a project - Use when switching to a new machine or operating system - Use when troubleshooting environment-related issues - Use when documenting setup instructions for a project - Use when creating development environment documentation ## How It Works ### Step 1: Identify Requirements I'll help you determine what needs to be installed: - Programming language and version (Node.js, Python, Go, etc.) - Package managers (npm, pip, cargo, etc.) - Database systems (PostgreSQL, MongoDB, Redis, etc.) - Development tools (Git, Docker, IDE extensions, etc.) - Environment variables and configuration files ### Step 2: Check Current Setup Before installing anything, I'll help you check what's already installed: ```bash # Check versions of installed tools node --version python --version git --version docker --version ``` ### Step 3: Provide Installation Instructions I'll give platform-specific installation commands: - **macOS:** Using Homebrew - **Linux:** Using apt, yum, or package manager - **Windows:** Using Chocolatey, Scoop, or direct installers ### Step 4: Configure the Environment Help set up: - Environment variables (.env files) - Configuration files (.gitconfig, .npmrc, etc.) - IDE settings (VS Code, IntelliJ, etc.) - Shell configuration (.bashrc, .zshrc, etc.) ### Step 5: Verify Installation Provide verification steps to ensure everything works: - Run version checks - Test basic commands - Verify database connections - Check environment variables are loaded ## Examples ### Example 1: Node.js Project Setup ```markdown ## Setting Up Node.js Development Environment ### Prerequisites - macOS, Linux, or Windows - Terminal/Command Prompt access - Internet connection ### Step 1: Install Node.js **macOS (using Homebrew):** \`\`\`bash # Install Homebrew if not installed tmpdir="$(mktemp -d)" trap 'rm -rf "$tmpdir"' EXIT curl -fsSLo "$tmpdir/homebrew-install.sh" https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh sed -n '1,160p' "$tmpdir/homebrew-install.sh" /bin/bash "$tmpdir/homebrew-install.sh" # Install Node.js brew install node \`\`\` **Linux (Ubuntu/Debian):** \`\`\`bash # Update package list sudo apt update # Install Node.js and npm tmpdir="$(mktemp -d)" trap 'rm -rf "$tmpdir"' EXIT curl -fsSLo "$tmpdir/nodesource-setup.sh" https://deb.nodesource.com/setup_20.x sed -n '1,160p' "$tmpdir/nodesource-setup.sh" sudo -E bash "$tmpdir/nodesource-setup.sh" sudo apt install -y nodejs \`\`\` **Windows (using Chocolatey):** \`\`\`powershell # Install Chocolatey if not installed Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) # Install Node.js choco install nodejs \`\`\` ### Step 2: Verify Installation \`\`\`bash node --version # Should show v20.x.x or higher npm --version # Should show 10.x.x or higher \`\`\` ### Step 3: Install Project Dependencies \`\`\`bash # Clone the repository git clone https://github.com/your-repo/project.git cd project # Install dependencies npm install \`\`\` ### Step 4: Set Up Environment Variables Create a \`.env\` file: \`\`\`bash # Copy example environment file cp .env.example .env # Edit with your values nano .en