> ## Documentation Index
> Fetch the complete documentation index at: https://scanaislop-update.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# upgrade, version, and commands

> Check installed versions, compare against the latest npm release, and print the built-in command reference.

These utility commands help you inspect the installed CLI and discover the command surface.

## update and upgrade

`aislop update` checks npm for the latest published version and compares it with your installed version. It does not install anything.

```bash theme={null}
aislop update
aislop upgrade
```

`aislop upgrade` is an alias for `aislop update`.

Upgrade with the package manager you used to install aislop:

```bash theme={null}
npm install -g aislop@latest
brew upgrade aislop
pipx upgrade aislop
```

## version

Print the installed version:

```bash theme={null}
aislop version
aislop -v
aislop -V
aislop --version
```

## commands

Print every public command and major flag:

```bash theme={null}
aislop commands
```

Use it when you are not sure whether a command has a natural alias or when you want to verify flags without opening the docs.

## One-off latest run

For one-off usage without installing:

```bash theme={null}
npx aislop@latest scan
```

For CI, prefer:

```bash theme={null}
npx --yes aislop@latest ci
```
