Metadata-Version: 2.4
Name: monkai-hub-cli
Version: 0.1.0
Summary: CLI for MonkAI Hub — configure, run and manage agent tests from the terminal
Author-email: BeMonkAI <contato@monkai.com.br>
License: MIT
Keywords: agent-testing,ai,cli,hub,monkai
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
Requires-Python: >=3.9
Requires-Dist: httpx<1.0.0,>=0.27.0
Requires-Dist: typer<1.0.0,>=0.9.0
Description-Content-Type: text/markdown

# monkai-hub-cli

CLI for MonkAI Hub — configure, run and manage agent tests from the terminal.

## Install

```bash
pip install monkai-hub-cli
```

## Usage

```bash
# Login
monkai-hub login --email you@company.com --password ***

# Create a test
monkai-hub test create --name "My Test" --api-url https://api.example.com

# Add interactions
monkai-hub test add-interaction <test-id> --message "Hello" --number 1 --expected "Hi there"

# Run test remotely
monkai-hub test run <test-id>

# See results
monkai-hub test results <execution-id>

# List tests
monkai-hub test list
```
