Download the IMB CLI

v0.2.1

A single, dependency-free binary: compiler + runtime + all adapters. Build no-code bots in the dashboard, or write .imb files by hand and run them yourself.

Linux (x86_64)

Tested on Ubuntu 22.04+, Debian 12+.

↓ Download for Linux

macOS & Windows

Published per release for Intel/Apple-silicon Macs and Windows from CI. Grab the matching asset from the releases page or build from source below.

Docker / server

The full platform ships as a Docker image. See the deployment guide in the repository (docker compose up on a fresh server).

Install

# make it executable and put it on your PATH
chmod +x imb
sudo mv imb /usr/local/bin/
imb --help

Run your first bot

cat > bot.imb <<'EOF'
on /start { reply "Hello! I'm your bot 👋" }
EOF

cat > imb-conf.ini <<'EOF'
[telegram]
bot_token = env:TG_TOKEN
EOF

TG_TOKEN=123:ABC imb run bot.imb --adapter telegram

Build from source

Requires Rust 1.85+ (edition 2024).

cargo build --release
./target/release/imb compile examples/barber.imb