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.
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.
The full platform ships as a Docker image. See the deployment guide in the repository (docker compose up on a fresh server).
# make it executable and put it on your PATH
chmod +x imb
sudo mv imb /usr/local/bin/
imb --helpcat > 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 telegramRequires Rust 1.85+ (edition 2024).
cargo build --release
./target/release/imb compile examples/barber.imb