If there's no pre-built binary for your platform, you can build RustifyMyClaw yourself.
- Rust toolchain (stable, edition 2021) — install via rustup
- Git
# Verify your toolchain
rustc --version # 1.70+ recommended
cargo --versiongit clone https://github.com/Escoto/RustifyMyClaw.git
cd RustifyMyClaw
cargo build --releaseThe binary will be at target/release/rustifymyclaw (Linux/macOS) or target\release\rustifymyclaw.exe (Windows).
Copy the binary and example config to the default location:
Linux / macOS:
mkdir -p ~/.rustifymyclaw
cp target/release/rustifymyclaw ~/.rustifymyclaw/
cp examples/config.yaml ~/.rustifymyclaw/config.yaml
# Add to PATH (pick your shell's rc file)
echo 'export PATH="$HOME/.rustifymyclaw:$PATH"' >> ~/.bashrcWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:APPDATA\RustifyMyClaw"
Copy-Item target\release\rustifymyclaw.exe "$env:APPDATA\RustifyMyClaw\"
Copy-Item examples\config.yaml "$env:APPDATA\RustifyMyClaw\config.yaml"
# Add to user PATH
$p = [Environment]::GetEnvironmentVariable('Path', 'User')
[Environment]::SetEnvironmentVariable('Path', "$env:APPDATA\RustifyMyClaw;$p", 'User')Windows users: Pre-built binaries are also available via
choco install rustifymyclaw. Building from source is only needed for development or unsupported platforms.
Edit ~/.rustifymyclaw/config.yaml (or %APPDATA%\RustifyMyClaw\config.yaml on Windows) — see configuration.md for the full field reference.