mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-26 15:40:18 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
247445f819 | ||
|
|
14254a699f | ||
|
|
2039442885 |
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.1.2](https://github.com/nearai/ironclaw/compare/v0.1.1...v0.1.2) - 2026-02-12
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- Added Installation instructions for the pre-built binaries
|
||||||
|
- Disabled Windows ARM64 builds as auto-updater [provided by cargo-dist] does not support this platform yet and it is not a common platform for us to support
|
||||||
|
|
||||||
## [0.1.1](https://github.com/nearai/ironclaw/compare/v0.1.0...v0.1.1) - 2026-02-12
|
## [0.1.1](https://github.com/nearai/ironclaw/compare/v0.1.0...v0.1.1) - 2026-02-12
|
||||||
|
|
||||||
### Other
|
### Other
|
||||||
|
|||||||
Generated
+1
-1
@@ -2291,7 +2291,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ironclaw"
|
name = "ironclaw"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"aho-corasick",
|
"aho-corasick",
|
||||||
|
|||||||
+1
-3
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ironclaw"
|
name = "ironclaw"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
rust-version = "1.85"
|
rust-version = "1.85"
|
||||||
description = "Secure personal AI assistant that protects your data and expands its capabilities on the fly"
|
description = "Secure personal AI assistant that protects your data and expands its capabilities on the fly"
|
||||||
@@ -156,7 +156,6 @@ publish-jobs = ["npm"]
|
|||||||
targets = [
|
targets = [
|
||||||
"aarch64-apple-darwin",
|
"aarch64-apple-darwin",
|
||||||
"aarch64-unknown-linux-gnu",
|
"aarch64-unknown-linux-gnu",
|
||||||
"aarch64-pc-windows-msvc",
|
|
||||||
"x86_64-apple-darwin",
|
"x86_64-apple-darwin",
|
||||||
"x86_64-unknown-linux-gnu",
|
"x86_64-unknown-linux-gnu",
|
||||||
"x86_64-pc-windows-msvc",
|
"x86_64-pc-windows-msvc",
|
||||||
@@ -176,6 +175,5 @@ install-updater = true
|
|||||||
aarch64-unknown-linux-gnu = "ubuntu-24.04-arm"
|
aarch64-unknown-linux-gnu = "ubuntu-24.04-arm"
|
||||||
x86_64-unknown-linux-gnu = "ubuntu-22.04"
|
x86_64-unknown-linux-gnu = "ubuntu-22.04"
|
||||||
x86_64-pc-windows-msvc = "windows-2022"
|
x86_64-pc-windows-msvc = "windows-2022"
|
||||||
aarch64-pc-windows-msvc = "windows-2025"
|
|
||||||
x86_64-apple-darwin = "macos-15-intel"
|
x86_64-apple-darwin = "macos-15-intel"
|
||||||
aarch64-apple-darwin = "macos-14"
|
aarch64-apple-darwin = "macos-14"
|
||||||
|
|||||||
@@ -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
|
- PostgreSQL 15+ with [pgvector](https://github.com/pgvector/pgvector) extension
|
||||||
- NEAR AI account (authentication handled via setup wizard)
|
- 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.
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Install via Windows Installer (Windows)</summary>
|
||||||
|
|
||||||
|
Download the [Windows Installer](https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-x86_64-pc-windows-msvc.msi) and run it.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Install via powershell script (Windows)</summary>
|
||||||
|
|
||||||
|
```sh
|
||||||
|
irm https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-installer.ps1 | iex
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Install via shell script (macOS, Linux, Windows/WSL)</summary>
|
||||||
|
|
||||||
|
```sh
|
||||||
|
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/nearai/ironclaw/releases/latest/download/ironclaw-installer.sh | sh
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Run via npx (Node.js on Windows, Linux, macOS)</summary>
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npx ironclaw
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Use in package.json scripts (Node.js on Windows, Linux, macOS)</summary>
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install ironclaw
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Compile the source code (Cargo on Windows, Linux, macOS)</summary>
|
||||||
|
|
||||||
|
Install it with `cargo`, just make sure you have [Rust](https://rustup.rs) installed on your computer.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone the repository
|
# 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.
|
For **full release** (after modifying channel sources), run `./scripts/build-all.sh` to rebuild channels first.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
### Database Setup
|
### Database Setup
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
Reference in New Issue
Block a user