# RBEK CLI

RBEK is a deterministic execution runtime for developers who need workflows that are explicit, inspectable and reproducible.

Current stable release: **0.1.3**

## Install

```bash
curl -fsSL https://releases.rbekplatform.com/cli/stable/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
```

The public command is:

```bash
rbek
```

The compatibility entrypoint remains available as:

```bash
rbek-cli
```

## First project

```bash
mkdir hello-rbek
cd hello-rbek
rbek init
rbek run
```

Expected output includes:

```text
Hello from RBEK
```

Check local readiness:

```bash
rbek doctor
```

## Core commands

```text
rbek version
rbek info
rbek doctor
rbek init
rbek run
```

## Documentation

- [Quickstart](QUICKSTART.md)
- [Hello RBEK example](examples/hello-rbek/)
- [Stable channel metadata](latest.json)
- [0.1.3 release metadata](versions/0.1.3/release.json)

Versioned release artifacts are immutable after publication.
