From 14254a699f4128e7c2f19f57531c6561255fd661 Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Thu, 12 Feb 2026 23:42:46 +0100 Subject: [PATCH] docs: Added Installation instructions for the pre-built binaries --- README.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d98da3da..3a291854 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,54 @@ IronClaw is the AI assistant you can actually trust with your personal and profe - PostgreSQL 15+ with [pgvector](https://github.com/pgvector/pgvector) extension - NEAR AI account (authentication handled via setup wizard) -### Build +## Download or Build + +Visit [Releases page](https://github.com/nearai/ironclaw/releases/) to see the latest updates. + +
+ Install via Windows Installer (Windows) + +Download the [Windows Installer](https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-x86_64-pc-windows-msvc.msi) and run it. + +
+ +
+ Install via powershell script (Windows) + +```sh +irm https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-installer.ps1 | iex +``` + +
+ +
+ Install via shell script (macOS, Linux, Windows/WSL) + +```sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-installer.sh | sh +``` +
+ +
+ Run via npx (Node.js on Windows, Linux, macOS) + +```sh +npx ironclaw +``` +
+ +
+ Use in package.json scripts (Node.js on Windows, Linux, macOS) + +```sh +npm install ironclaw +``` +
+ +
+ Compile the source code (Cargo on Windows, Linux, macOS) + +Install it with `cargo`, just make sure you have [Rust](https://rustup.rs) installed on your computer. ```bash # Clone the repository @@ -87,6 +134,8 @@ cargo test For **full release** (after modifying channel sources), run `./scripts/build-all.sh` to rebuild channels first. +
+ ### Database Setup ```bash