Skip to content

Downloads

All builds are automated, signed, and verified. Pick your platform.

Quick Install (Any Platform)

Download the installer for your OS — it auto-detects your platform and installs the right thing.

Platform Download Size
Windows hevolve-install.exe ~5 MB
macOS hevolve-install-macos ~5 MB
Linux hevolve-install-linux ~5 MB

Double-click (Windows) or chmod +x && ./hevolve-install-* (macOS/Linux). Choose: Nunba app, HART OS ISO, or pip install.


HART OS (Full Operating System)

Boot from USB/SD card or run in a VM. Includes everything.

Rolling latest (rebuilt on every push to main)

Variant Best for Download
Server Headless servers, Raspberry Pi, IoT hubs ISO · torrent · sha256
Desktop Workstations, dev machines (GNOME desktop) ISO · torrent · sha256
Edge Minimal observer nodes, embedded ISO · torrent · sha256

Each push to main publishes a new nightly-{SHA} release tagged as "latest" — the links above always resolve to the newest build. Older nightlies are auto-pruned (most recent 3 kept). Verify with the companion .sha256. For signed stable ISOs browse the release archive.

Torrents are web-seeded via GitHub CDN.

Desktop ISO is larger than GitHub's 2 GB per-asset limit and therefore ships split into …iso.part-00, …iso.part-01, … Download every part-* alongside the .sha256 and a companion …iso.reassemble.sh, then run the script (or cat *.part-* > …iso) to stitch them and verify the checksum.

Nunba — Native Agentic Client

Nunba is the HART agentic client — same experience on HART OS and as a native app on Windows, macOS, or Linux. Think of it as a cross-platform agentic shell: chat, agents, communities, and compute controls, backed by the HART runtime running locally or remotely.

Target Delivery Notes
HART OS (native) Pre-installed Systemd user service hart-nunba starts on boot (port 5000) and renders inside the LiquidUI Glass Shell. Enable via hart.nunba.enable = true in the desktop/phone configs (default). Registered in the HART AppRegistry (group: System) so launchers and the agentic runtime dispatch to it.
Windows Nunba Installer (built by the Nunba repo's Build & Sign Installers workflow) Windows 10/11, x64. Azure Trusted Signing.
macOS Nunba.dmg macOS 13+ (Apple Silicon native). Notarized.
Linux (AppImage) AppImage Any distro, x86_64. chmod +x and run.
Linux (.deb) .deb package Debian/Ubuntu. sudo dpkg -i nunba_*.deb

On HART OS Nunba binds to the local hart_intelligence_entry.py runtime (port 6777). On other OSes it bundles the same runtime or points at a remote HART node via NUNBA_BACKEND_URL.

Hevolve Droid (Android)

Your phone becomes a remote to your private AI mesh.

Platform Download
Android (Play Store) Google Play
Android (APK, team only) Direct APKhertz-ai/Hevolve_React_Native is a private repo; the asset link requires a GitHub session. Public users should install via Play Store above.

Hevolve Web

Access from any browser — no install needed.

Platform Link
Web App hevolve.ai

pip install (Backend only)

pip install -r requirements.txt
python hart_intelligence_entry.py

Docker

docker compose -f deploy/cloud/docker-compose.yml up

Verify Downloads

Every release is Ed25519 signed by the master key.

# Check SHA-256
sha256sum -c hart-os-*.sha256

# Verify release signature
python -c "
from security.master_key import verify_release_manifest
import json
m = json.load(open('release_manifest.json'))
print('VALID' if verify_release_manifest(m) else 'INVALID')
"

All Releases

Project Releases
HART OS GitHub Releases
Nunba GitHub Releases
Hevolve Droid GitHub Releases