# RBEK CLI Quickstart

## 1. Install

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

## 2. Verify

```bash
rbek version
rbek doctor
```

The current stable release is `0.1.3`.

`rbek-cli` remains available for compatibility.

## 3. Create your first project

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

RBEK creates `rbek.json` and `workflow.json`.

## 4. Run

```bash
rbek run
```

Expected execution:

```text
RUN_STATUS=PASS
WORKFLOW=hello-rbek
STEP_COUNT=1
STEP=hello|TYPE=emit|MESSAGE=Hello from RBEK
```

The default workflow performs no network request, database operation or external API call.

## 5. Useful commands

```bash
rbek --help
rbek version
rbek info
rbek doctor
rbek init
rbek run
```

## 6. Upgrade

```bash
curl -fsSL https://releases.rbekplatform.com/cli/stable/install.sh | bash
```
