# Lithe CLI

Lithe provides a small read-only Python CLI for agents and scripts. It reads the stable public API, pricing, and agent guidance without creating orders or sending customer data.

## Usage

```bash
python backend/scripts/lithe_cli.py health
python backend/scripts/lithe_cli.py --pretty config
python backend/scripts/lithe_cli.py pricing
python backend/scripts/lithe_cli.py guidance
```

Set `LITHE_BASE_URL` or pass `--base-url` to use a local or staging deployment:

```bash
LITHE_BASE_URL=http://localhost:8000 python backend/scripts/lithe_cli.py health
python backend/scripts/lithe_cli.py --base-url https://ni.lithe.team api
```

The CLI only calls `GET /api/v1`, `GET /api/v1/health`, `GET /api/v1/public-config`, `/pricing.md`, and `/agent-instructions.md`. It never submits an order, lead, tracking request, or payment information.
