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

# Quickstart

> Get up and running with Atlas in minutes.

## 1. Get your token

See [Authentication](/getting-started/authentication) to install the CLI and log in. Once authenticated, export your token:

```bash theme={null}
export ATLAS_TOKEN=$(cat ~/.atlas/token)
```

## 2. Create a system

All work in Atlas is scoped to a system.

```bash theme={null}
curl -X POST "https://nokia.atlas.arenaphysica.com/api/v1/systems" \
  -H "Authorization: Bearer $ATLAS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "system_name": "Power Distribution Unit",
    "description": "24V DC power distribution system for the vehicle platform"
  }'
```

Save the `system_id` from the response:

```bash theme={null}
export SYSTEM_ID="<system_id from response>"
```

## 3. Fetch the system

```bash theme={null}
curl "https://nokia.atlas.arenaphysica.com/api/v1/systems/$SYSTEM_ID" \
  -H "Authorization: Bearer $ATLAS_TOKEN"
```

From here, see the Guides section to continue: [Populating the System Metagraph](/guides/systems-and-metagraph), [Creating a Test Run Report](/guides/test-runs), [Generating an Issue](/guides/issues), or [Adding a Personal Skill & System Memory](/guides/memories-and-skills).
