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

# Omni CLI quickstart

> Configure the Omni CLI and run your first commands.

## Requirements

To follow the steps in this guide, you'll need an Omni API token. See [API authentication](/api/authentication) for more information.

## Steps

<Steps titleSize="h3">
  <Step title="Install the CLI">
    See the [CLI installation guide](/developers/cli/install).
  </Step>

  <Step title="Configure a profile">
    After you install the CLI, run:

    ```bash theme={null}
    omni config init
    ```

    This creates a profile with your organization, API endpoint, and API key. You can create multiple profiles for different organizations or environments.
  </Step>

  <Step title="Set your API token">
    Either enter your API token during `config init`, or set the environment variable:

    ```bash theme={null}
    export OMNI_API_TOKEN=omni_osk_...
    ```
  </Step>

  <Step title="Run a command">
    ```bash theme={null}
    omni models list
    omni documents list
    omni --help
    ```
  </Step>
</Steps>

## Next steps

* Install [agent skills](/developers/agent-skills)
* Learn about [Omni APIs](/api)
