This skill should be used when the user asks to "install proto", "configure proto", "manage tool versions", "pin versions", "set up .prototools", "install node version", "install rust version", "install python version", "proto plugins", or mentions proto commands, .prototools file, or multi-language version management.
View on GitHubhyperb1iss/moonrepo-skill
moonrepo
skills/proto/SKILL.md
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/hyperb1iss/moonrepo-skill/blob/main/skills/proto/SKILL.md -a claude-code --skill protoInstallation paths:
.claude/skills/proto/# proto - Pluggable Multi-Language Version Manager proto is a next-generation version manager for multiple programming languages. It provides a unified interface for managing Node.js, npm, pnpm, yarn, Bun, Deno, Rust, Go, Python, and 800+ tools via plugins. ## When to Use proto - Managing language/tool versions across projects - Pinning versions in `.prototools` for team consistency - Installing and running tools without global pollution - Replacing nvm, pyenv, rustup, gvm with a single tool ## Installation ```bash # Linux, macOS, WSL bash <(curl -fsSL https://moonrepo.dev/install/proto.sh) # Specific version, non-interactive bash <(curl -fsSL https://moonrepo.dev/install/proto.sh) 1.2.3 --yes ``` ### Shell Setup ```bash # Add to shell profile eval "$(proto activate bash)" # Bash eval "$(proto activate zsh)" # Zsh ``` ## Quick Reference ### Core Commands ```bash proto install <tool> # Install tool proto install node 20.10.0 # Install specific version proto install node --build # Build from source (v0.45+) proto run <tool> # Run with detected version proto exec node pnpm -- cmd # Bootstrap multi-tool env (v0.53+) proto pin <tool> <version> # Pin version locally proto pin <tool> --global # Pin globally proto versions <tool> # List available versions proto outdated # Check for updates proto clean # Remove unused tools proto upgrade # Upgrade proto itself proto diagnose # Identify installation issues proto debug config # List all .prototools files proto debug env # Show environment info ``` ## Configuration: .prototools ```toml # .prototools node = "20.10.0" npm = "10.2.0" pnpm = "8.12.0" yarn = "4.0.0" bun = "1.0.0" deno = "1.40.0" rust = "1.75.0" go = "1.21.0" python = "3.12.0" [plugins] my-tool = "https://example.com/plugin.wasm" [settings] auto-install = true auto-clean = true detect-strategy = "prefe