> ## 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 Getting Started

> Install and configure the Airon CLI for command-line infrastructure management

# Getting Started

Welcome to the Airon CLI documentation. The Airon CLI is a powerful command-line tool for managing your Airon infrastructure.

## Installation

### Using npm (recommended)

```bash
npm install -g @airon/cli
```

### Using curl

```bash
curl -sSL https://get.airon.ai | bash
```

## Authentication

Before using the CLI, you need to authenticate:

```bash
airon auth login
```

This will open your browser and prompt you to log in to your Airon account.

## Basic Usage

### List your organizations

```bash
airon organizations list
```

### Create a new machine

```bash
airon machines create --type gpu --architecture x86
```

### Check machine status

```bash
airon machines list
```

## Configuration

The CLI stores configuration in `~/.airon/config.yaml`. You can edit this file directly or use the CLI configuration commands.
