> ## Documentation Index
> Fetch the complete documentation index at: https://docs.airon.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# CLI Commands

> Comprehensive reference for all Airon CLI commands and options

# Commands

This is a comprehensive reference for all Airon CLI commands.

## Global Options

All commands support these global options:

* `--json` - Output results in JSON format
* `--help` - Show help for the command
* `--version` - Show CLI version

## Authentication Commands

### `airon auth login`

Authenticate with your Airon account.

```bash
airon auth login [--interactive]
```

### `airon auth logout`

Log out from your Airon account.

```bash
airon auth logout
```

### `airon auth whoami`

Display current user information.

```bash
airon auth whoami [--json]
```

## Organization Commands

### `airon organizations list`

List all organizations you have access to.

```bash
airon organizations list [--json]
```

### `airon organizations create`

Create a new organization.

```bash
airon organizations create --slug SLUG
```

## Machine Commands

### `airon machines list`

List all machines in your account.

```bash
airon machines list [--org ORG] [--project PROJECT] [--json]
```

### `airon machines create`

Create a new machine.

```bash
airon machines create [OPTIONS]
```

Options:

* `--architecture` - Machine architecture (x86, arm)
* `--type` - Machine type (gpu, cpu, lpu)
* `--brand` - Hardware brand (nvidia, amd, intel)
* `--number` - Number of units
* `--region` - Region
* `--image` - Image name

### `airon machines destroy`

Destroy a machine.

```bash
airon machines destroy MACHINE_ID
```
