Metadata-Version: 2.4
Name: terryann-cli
Version: 0.4.1
Summary: CLI for TerryAnn Medicare Journey Intelligence Platform
Author-email: Adam Bell <adambell@gmail.com>
License-Expression: MIT
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: prompt-toolkit>=3.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: tomli>=2.0.0; python_version < '3.11'
Requires-Dist: typer>=0.9.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.3.0; extra == 'dev'
Description-Content-Type: text/markdown

# TerryAnn CLI

Command line interface for the TerryAnn Medicare Journey Intelligence Platform.

## Installation

```bash
pip install -e .
```

## Configuration

Set the gateway URL via environment variable:

```bash
export TERRYANN_GATEWAY_URL=https://terryann-core-production.up.railway.app
```

Or create a config file at `~/.terryann/config.toml`:

```toml
[gateway]
url = "https://terryann-core-production.up.railway.app"
```

## Usage

### Check gateway status

```bash
terryann status
```

### Start interactive chat

```bash
terryann chat
```

## Development

```bash
pip install -e ".[dev]"
pytest
```
