Metadata-Version: 2.4
Name: agentharnesses-cli
Version: 0.1.0
Summary: CLI tools for agentharnesses.io
Project-URL: Homepage, https://agentharnesses.io
Project-URL: Repository, https://github.com/agentharnesses/cli
License-Expression: Apache-2.0
Requires-Python: >=3.10
Requires-Dist: click>=8.1
Description-Content-Type: text/markdown

# agentharnesses-cli

Command line tools for [agentharnesses.io](http://agentharnesses.io).

## Installation

### From PyPI (once published)

```bash
pip install agentharnesses-cli
```

### From source

```bash
git clone https://github.com/your-org/cli.git
cd cli
pip install .
```

### Development install

```bash
git clone https://github.com/your-org/cli.git
cd cli
pip install -e .
```

The `-e` flag installs in editable mode so changes to the source are reflected immediately without reinstalling.

## Usage

```bash
ahar --help
```

### `ahar init`

Initialize a new harness in the current directory:

```bash
ahar init
```

Optionally specify a name (defaults to the directory name):

```bash
ahar init my-harness
```

This creates a `harness.yaml` file in the current directory.
