Linux programming languages - installation, configuration, development
Installs and configures programming languages on Linux using tools like pyenv, nvm, and rustup. Use when setting up development environments or installing language-specific dependencies.
/plugin marketplace add pluginagentmarketplace/custom-plugin-linux/plugin install custom-plugin-linux@pluginagentmarketplace-linuxThis skill inherits all available tools. When active, it can use any tool Claude has access to.
*-SKILL.mdassets/config.yamlassets/schema.jsonjava-SKILL.mdjs-SKILL.mdpython-SKILL.mdreferences/GUIDE.mdreferences/PATTERNS.mdrust-SKILL.mdscripts/validate.pyInstall and configure programming languages on Linux systems.
# Install Python with pyenv
curl https://pyenv.run | bash
pyenv install 3.11.0
pyenv global 3.11.0
# Install Node.js with nvm
nvm install --lts
nvm use --lts