# Quickstart

> Proto Quick Start

- Skill: `javimosch/quickstart-526` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/quickstart-526`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/quickstart-526/raw
- Safety review: WARNING
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/quickstart-526

---

# Proto Quick Start

Proto is a polyglot toolchain manager from moonrepo. It manages language runtimes, package managers, and dev tools.

## Prerequisites

- Install Proto: `curl -fsSL https://moonrepo.dev/install/proto.sh | sh`

## Basic Usage

### Install a tool
```bash
proto install node
proto install node --version 20
proto install rust
proto install go
```

### List installed tools
```bash
proto list
```

### List available versions
```bash
proto list-remote node
```

### Run a tool
```bash
proto run node -- --version
```

### Uninstall a tool
```bash
proto uninstall node
```

### Check version
```bash
proto --version
```

## Per-Directory Version Pinning

Proto supports `.proto` files for pinning tool versions per directory:
```
node = "20.11.0"
rust = "1.75.0"
```

## Passthrough

Any proto command can be run directly:
```bash
proto <any-subcommand> [args...]
```

