mira-cli 0.1.0

The `mira` host CLI: run code-defined evals across a model matrix
# mira-cli

The `mira` host CLI for [Mira](https://github.com/everruns/mira), a Rust-first,
code-first evaluation framework. It compiles + spawns an eval **study** (a
program built on [`mira-eval`](https://crates.io/crates/mira-eval)), plans the
run across the model matrix, executes each cell over the protocol, and reports.

```bash
cargo install mira-cli      # installs the `mira` binary

mira --bin greet list
mira --bin greet run                 # whole matrix (sim runs; keyed cells skip)
mira --bin greet run greet           # selective (substring), like cargo test
mira --bin greet run --tag smoke
mira --bin greet run --targets sim --format junit --out results.xml
mira --bin greet run --checkpoint ck.json   # resumable
```

Point it at any study: `--bin NAME` (a Rust eval crate), `--cmd "..."` (e.g. a
Python study), `--example NAME`, or another package via `--package` /
`--manifest-path`.

See the [docs](https://github.com/everruns/mira/tree/main/docs). Licensed under MIT.