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

# Quick Start

> Get started with Terramind in under 5 minutes

## Installation

The quickest way to install Terramind:

```bash theme={null}
curl -fsSL https://terramind.com/install | bash
```

Or install using your preferred package manager:

<CodeGroup>
  ```bash npm theme={null}
  npm install -g terramind
  ```

  ```bash pnpm theme={null}
  pnpm add -g terramind
  ```

  ```bash yarn theme={null}
  yarn global add terramind
  ```

  ```bash bun theme={null}
  bun add -g terramind
  ```
</CodeGroup>

## Verify Installation

Check that Terramind is installed correctly:

```bash theme={null}
terramind --version
```

## Your First Command

Start an interactive session:

```bash theme={null}
terramind
```

Or run a single command:

```bash theme={null}
terramind run "Write a hello world function in TypeScript"
```

## Using a Specific Model

You can specify which AI model to use:

```bash theme={null}
terramind run "Explain recursion" --model claude-sonnet-4-5
```

## Common Commands

<CardGroup cols={2}>
  <Card title="Interactive Mode" icon="terminal">
    ```bash theme={null}
    terramind
    ```

    Start an interactive coding session
  </Card>

  <Card title="Single Command" icon="play">
    ```bash theme={null}
    terramind run "your prompt"
    ```

    Execute a single AI command
  </Card>

  <Card title="List Models" icon="list">
    ```bash theme={null}
    terramind models
    ```

    See all available AI models
  </Card>

  <Card title="Authentication" icon="key">
    ```bash theme={null}
    terramind auth
    ```

    Configure your API credentials
  </Card>
</CardGroup>

## Authentication

Before using Terramind, you'll need to authenticate:

```bash theme={null}
terramind auth
```

You can authenticate using:

* Firebase token
* Terramind API key

Get your API key from [terramind.com](https://terramind.com).

## Next Steps

<CardGroup cols={2}>
  <Card title="CLI Usage" icon="terminal" href="/cli/overview">
    Learn about all CLI commands and features
  </Card>

  <Card title="AI SDK Provider" icon="code" href="/provider/overview">
    Use Terramind in your applications
  </Card>

  <Card title="Configuration" icon="gear" href="/cli/configuration">
    Customize Terramind settings
  </Card>

  <Card title="Available Models" icon="list" href="/provider/models">
    Browse all available AI models
  </Card>
</CardGroup>
