What problem does it solve? Setting up project environments often requires juggling npm, pip, cargo, and Nix system packages, each with different naming conventions and failure modes. This Skill centralizes dependency installation so packages, runtimes, and system libraries are installed correctly without running raw shell commands. ## Core Features & Use Cases - Language Runtime Installation: Install or remove programming language toolchains like Python 3.11 or Node.js 20, with version discovery via module listing. - Package Management: Install and uninstall language-specific packages (npm, pip, cargo, go) with automatic updates to package.json or requirements.txt. - System Dependencies via Nix: Install OS-level tools like ffmpeg, jq, and imagemagick using correct Nixpkgs attribute paths instead of apt names. - Use Case: Setting up a Flask project? Install the Python runtime, add flask and gunicorn packages, and pull in system libraries like cairo for native dependencies, all through one consistent interface. ## Quick Start Install the Python 3.11 runtime and the flask and requests packages for my project.