Skip to content

Download

Quick Install

bash
curl -fsSL https://raw.githubusercontent.com/rsclaw-ai/rsclaw/main/scripts/install.sh | bash
powershell
irm https://raw.githubusercontent.com/rsclaw-ai/rsclaw/main/scripts/install.ps1 | iex

Pre-built Binaries

Download the latest release from GitHub Releases.

PlatformArchitectureFile
macOSARM64 (Apple Silicon)rsclaw-*-aarch64-apple-darwin.tar.gz
macOSx86_64 (Intel)rsclaw-*-x86_64-apple-darwin.tar.gz
Linuxx86_64rsclaw-*-x86_64-unknown-linux-musl.tar.gz
LinuxARM64rsclaw-*-aarch64-unknown-linux-musl.tar.gz
Windowsx86_64rsclaw-*-x86_64-pc-windows-msvc.zip
WindowsARM64rsclaw-*-aarch64-pc-windows-msvc.zip

Manual Install

bash
# macOS / Linux
tar xzf rsclaw-*.tar.gz
chmod +x rsclaw
sudo mv rsclaw /usr/local/bin/

# Verify
rsclaw --version
powershell
# Windows
Expand-Archive rsclaw-*.zip -DestinationPath .
.\rsclaw.exe --version

From Source

bash
# Requires Rust 1.91+
git clone https://github.com/rsclaw-ai/rsclaw.git
cd rsclaw
cargo build --release
# Binary at ./target/release/rsclaw

Verify Checksums

Each release includes SHA256SUMS.txt:

bash
sha256sum -c SHA256SUMS.txt

Released under MIT / Apache-2.0 License