Handles the tedious part of setting up environment variables when bootstrapping a new project. Scans your code for process.env and Configuration[] calls, classifies what it finds (database config, secrets, API settings), then generates .env.example, .env.development, and .env.production files from templates. Also updates your gitignore to prevent accidentally committing secrets. The smart bit is that it tries to auto-generate sensible defaults for local development that work with docker-compose out of the box, while production files use placeholder syntax. Saves you from the usual copy-paste-forget-to-gitignore cycle, though you'll still need to fill in real secrets yourself.
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-733-env-configurator