Metadata-Version: 2.4
Name: openhands
Version: 1.0.7
Summary: OpenHands CLI - Terminal User Interface for OpenHands AI Agent
Author-email: OpenHands Team <contact@all-hands.dev>
License: MIT
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Requires-Dist: openhands-sdk==1.1
Requires-Dist: openhands-tools==1.1
Requires-Dist: prompt-toolkit>=3
Requires-Dist: typer>=0.17.4
Description-Content-Type: text/markdown

# OpenHands V1 CLI

A **lightweight, modern CLI** to interact with the OpenHands agent (powered by [OpenHands software-agent-sdk](https://github.com/OpenHands/software-agent-sdk)). 

---

## Quickstart

- Prerequisites: Python 3.12+, curl
- Install uv (package manager):
  ```bash
  curl -LsSf https://astral.sh/uv/install.sh | sh
  # Restart your shell so "uv" is on PATH, or follow the installer hint
  ```

### Run the CLI locally
```bash
make install

# Start the CLI
make run
# or
uv run openhands
```

### Build a standalone executable
```bash
# Build (installs PyInstaller if needed)
./build.sh --install-pyinstaller

# The binary will be in dist/
./dist/openhands            # macOS/Linux
# dist/openhands.exe        # Windows
```
