Metadata-Version: 2.4
Name: atlasbeav3r
Version: 0.1.1
Summary: Atlas command-line client
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.32.0

# Atlas CLI

Atlas CLI is a command-line client for the Atlas control plane.

## Install

```bash
python -m pip install atlasctl
```

For local development:

```bash
python -m pip install -e .
```

## Configuration

Create a local `.env` file:

```bash
cp .env.example .env
```

Set:

```env
ATLAS_BASE_URL=http://localhost:8000
ATLAS_API_KEY=your-atlas-api-key
```

## Commands

The installed command is `atlas`.

```bash
atlas auth login <api_key>
atlas auth logout
atlas keys list
atlas keys create
atlas keys revoke <key_id>
atlas agents list
atlas agents create -n "My Agent" -d "Short description" -sp "System prompt"
atlas agents delete
```
