aither-adk agent pack

Aither System Orchestrator

Aither — System Overseer & Orchestrator Brain Pack

macOS / Linux
aither — install
# one command each; nothing else to configure
$ curl -LO https://github.com/Aitherium/aither-adk/releases/download/v3.4.1/aither-3.4.1.tar.gz
$ tar xzf aither-3.4.1.tar.gz
$ python aither/install.py
installed aither -> ~/.aither/packs/aither
verified: adk discovers 'aither'
$ 
Windows
aither — install
# PowerShell. curl.exe and tar ship with Windows 10 1803+
$ curl.exe -LO https://github.com/Aitherium/aither-adk/releases/download/v3.4.1/aither-3.4.1.tar.gz
$ tar -xzf aither-3.4.1.tar.gz
$ python aither\install.py
installed aither -> ~\.aither\packs\aither
verified: adk discovers 'aither'
$ 
Version
3.4.1
Size
4 KB
Licence
sha256
1a1af9cb2ebcb452…

What the pack adds

The app keeps its own interface. This runs underneath it.

Web search, no account
DuckDuckGo through a maintained client. No key, no sign-up, nothing hosted.
An agent behind the chat box
Tools, memory and skills answer on the API the app already speaks, so its interface needs no changes.
Your own model
llama.cpp, ollama, vLLM and LM Studio are discovered automatically; --setup-model installs one sized to the machine.
Weights without an account
Resumable, rate-capped and size-verified, so a dropped connection costs minutes rather than the whole download.

Skills

Included in the download.

coordination
memory-recall

About

The default brain pack for the Aither orchestrator agent. Provides core capabilities for system coordination, synthesis, delegation, and memory-based decision-making. Bundles GraphRAG memory for persistent knowledge retention.

Verify

sha256 1a1af9cb2ebcb452d3a4b3cfddc6f673e92eef15bbffd074471bb3e42bdcf755

macOS / Linux
verify
# every artifact ships a checksum; check it before you trust it
$ sha256sum -c aither-3.4.1.sha256
aither-3.4.1.tar.gz: OK
$ 
Windows
verify
# there is no sha256sum on Windows; Get-FileHash is the equivalent
$ $want = '1A1AF9CB2EBCB452D3A4B3CFDDC6F673E92EEF15BBFFD074471BB3E42BDCF755'
$ (Get-FileHash aither-3.4.1.tar.gz -Algorithm SHA256).Hash -eq $want
True
$