Metadata-Version: 2.4
Name: alloy-runtime-cli
Version: 0.1.0
Summary: Alloy Runtime CLI - Command-line interface for Alloy Runtime server
Author-email: Grant Jordan <gjordan1997@gmail.com>
Project-URL: Repository, https://github.com/alloy-runtime/alloy-runtime
Project-URL: Issues, https://github.com/alloy-runtime/alloy-runtime/issues
Keywords: alloy,cli,python,terminal,workflow
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.12.0
Requires-Dist: rich>=13.7.0
Requires-Dist: textual>=0.47.0
Requires-Dist: genson>=1.3.0
Requires-Dist: pyperclip>=1.8.0
Requires-Dist: prompt-toolkit>=3.0.0
Requires-Dist: alloy-runtime-sdk==0.1.0
Requires-Dist: alloy-runtime-types==0.1.0
Requires-Dist: trogon

# alloy-runtime-cli

Terminal client for Alloy Runtime.

## Install

```bash
pip install alloy-runtime-cli
```

For isolated user installs, `pipx` is also a good fit:

```bash
pipx install alloy-runtime-cli
```

## Command

The installed command is `alloy`.

```bash
alloy --help
alloy login
alloy --api-url https://api.alloyruntime.com whoami
```

## Configuration

The CLI reads configuration in this order:

1. CLI flags such as `--api-url` and `--api-key`
2. Environment variables like `ALLOY_RUNTIME_API_URL`
3. Stored credentials in `~/.alloy-runtime/config`

Use `alloy login` to save an API key locally, or set the environment variables when
running on a VPS.
