Metadata-Version: 2.4
Name: runme-harbor
Version: 0.0.2
Summary: Runme Harbor environment adapter
Project-URL: Homepage, https://runme.dev
Project-URL: Documentation, https://docs.runme.dev
Project-URL: Repository, https://github.com/runmedev/runme
Project-URL: Issues, https://github.com/runmedev/runme/issues
Author: The Runme Authors
License-Expression: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Keywords: agents,evals,harbor,runme
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: System :: Shells
Requires-Python: >=3.12
Requires-Dist: harbor<0.14,>=0.13.1
Requires-Dist: protobuf>=7.35.1
Description-Content-Type: text/markdown

# Runme Harbor

Runme Harbor is the optional Python adapter used by `runme eval`. It connects
Harbor's environment interface to a local `runme harbor stdio` process.

Runme Harbor builds on the upstream Harbor Python package.

## Install

Install the adapter as an isolated Python CLI tool:

```sh {"name":"install-harbor"}
uv tool install runme-harbor
```

The `runme` CLI must be installed separately and available on `PATH`.

## Build

Build the distribution artifacts:

```sh {"name":"build-harbor"}
set -euo pipefail

rm -rf dist

proto_src="../../api/gen/proto/python/runme/harbor/v1"
proto_dst="src/runme_harbor/_proto/runme/harbor/v1"
mkdir -p "$proto_dst"
cp "$proto_src/harbor_pb2.py" "$proto_src/harbor_pb2.pyi" "$proto_dst/"

uv build
```

Publishing is intentionally not part of `build-harbor`. Release automation runs
this workflow first, then calls `uv publish`.
