rho-coding-agent 0.14.0

A lightweight agent harness inspired by Pi
# Rho

Rho is a lightweight agent harness inspired by Pi, built in Rust to stay fast and memory-efficient.

## Install

Recommended install path on macOS and Linux:

```bash
curl --proto '=https' --tlsv1.2 -LsSf https://raw.githubusercontent.com/matthewyjiang/rho/main/scripts/install.sh | sh
```

On Windows PowerShell:

```powershell
irm https://raw.githubusercontent.com/matthewyjiang/rho/main/scripts/install.ps1 | iex
```

Or install from crates.io with Cargo:

```bash
cargo install rho-coding-agent
```

## Usage

```bash
rho
```

For one-off prompts:

```bash
rho run "summarize this repository"
```

## Docs

See the docs site: <https://matthewyjiang.github.io/rho/>

## Development

```bash
cargo build
cargo test
```