# Installing the CLI

Install the published `foxora` command with npm, Homebrew, or Scoop, then verify the binary before provisioning its runtime.

## npm

```bash
npm install -g foxora
```

## Homebrew

```bash
brew install foxora-ai/tap/foxora
```

## Scoop

```powershell
scoop bucket add foxora https://github.com/foxora-ai/scoop-foxora
scoop install foxora
```

After installation, open a new terminal and run:

```bash
foxora --version
foxora setup
foxora doctor
```

Use the package-manager routes above rather than an old copied shell-installer URL. npm requires a supported Node.js installation; the package declares its current engine requirement in the registry.

**Expected result:** `foxora --version` prints an installed version, `setup` prepares the runtime, and `doctor` can inspect it.
