Metadata-Version: 2.4
Name: enkindler
Version: 0.3.1
Summary: Command-line interface for the Enkindler AI operations dashboard.
Project-URL: Homepage, https://enkindler.enkindl.com
Project-URL: Repository, https://bitbucket.org/enkindl/enkindler-cli
Project-URL: Issues, https://bitbucket.org/enkindl/enkindler-cli/issues
Author: Enkindler Platform
License: MIT
Keywords: aks,azure,cli,enkindler,kubernetes
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: platformdirs>=4.2.0
Requires-Dist: rich>=13.7.0
Requires-Dist: tomli-w>=1.0.0
Requires-Dist: tomli>=2.0.1; python_version < '3.11'
Requires-Dist: typer>=0.12.0
Provides-Extra: dev
Requires-Dist: pytest-httpx>=0.30; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.5.0; extra == 'dev'
Description-Content-Type: text/markdown

# enkindler CLI

Command-line interface for the [Enkindler](https://enkindler.enkindl.com) AI operations dashboard. Manages AKS deployments, Helm platforms, integrations, and cluster resources from your terminal.

Patterned after `az` and `databricks` — designed to be ergonomic for both humans and AI agents.

## Install

```bash
pip install enkindler
```

Works on macOS, Linux, and Windows (Python 3.10+).

## Quick start

```bash
# Sign in via Microsoft device-code flow (opens browser)
enkindler login

# Verify the session
enkindler whoami

# List your deployments
enkindler deployment list
```

## Configuration

Config and the cached JWT live at:

| OS | Path |
|---|---|
| macOS | `~/Library/Application Support/enkindler/config.toml` |
| Linux | `~/.config/enkindler/config.toml` |
| Windows | `%APPDATA%\enkindler\config.toml` |

Override the backend URL with `--api-url https://...` on any command, or set `ENKINDLER_API_URL` in the environment.

## Architecture

- Backend exposes an OpenAPI spec at `/api/openapi.json` (the contract).
- This CLI consumes that spec to drive command behaviour.
- Auth uses the Azure AD device-code flow — no browser required on the same machine, no token-pasting.

## Development

```bash
python -m venv .venv && source .venv/bin/activate  # or `.venv\Scripts\activate` on Windows
pip install -e '.[dev]'
pytest
ruff check .
```

## License

MIT
