Metadata-Version: 2.4
Name: agent-engine-cli
Version: 0.1.6
Summary: Command-line interface for managing Google Cloud Vertex AI Agent Engine deployments
Project-URL: Homepage, https://github.com/mmontan/agent-engine-cli
Project-URL: Bug Tracker, https://github.com/mmontan/agent-engine-cli/issues
Author: Mirko Montanari
License-Expression: MIT
License-File: LICENSE
Keywords: agent,agent-engine,agents,ai,automation,cli,gcp,google-cloud,llm,vertex,vertex-ai
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.11
Requires-Dist: google-cloud-aiplatform>=1.133.0
Requires-Dist: typer>=0.9.0
Description-Content-Type: text/markdown

# Agent Engine CLI

A command-line interface to manage Agent Engine.

## Installation

```bash
# With uv (recommended)
uv tool install agent-engine-cli --python 3.11

# With pip (requires Python 3.11+)
pip install agent-engine-cli
```

After installation, the `ae` command is available globally:

```bash
ae --help
```

## Run Without Installing

```bash
python -m agent_engine_cli --help
```

## Development Setup

1.  **Install uv** (if you haven't already):
    ```bash
    curl -LsSf https://astral.sh/uv/install.sh | sh
    ```

2.  **Clone the repo and install dependencies**:
    ```bash
    git clone https://github.com/mmontan/agent-engine-cli.git
    cd agent-engine-cli
    uv sync
    ```

3.  **Run the CLI locally**:
    ```bash
    uv run ae --help
    ```

## Chat with an Agent

Start an interactive chat session with a deployed agent:

```bash
# Basic usage
ae -p PROJECT_ID -l us-central1 chat AGENT_ID

# With custom user ID
ae -p PROJECT_ID -l us-central1 chat AGENT_ID --user my-user-id

# With debug logging enabled
ae -p PROJECT_ID -l us-central1 chat AGENT_ID --debug
```

## Development

To run tests:

```bash
uv pip install -e ".[dev]" # or just use the dev-dependencies if using a uv-managed lockfile workflow
# If using pure uv sync:
uv sync
uv run pytest
```
