aither-adk agent pack

Hermes Architecture Studio

Hermes — Architecture & Reasoning Agent Brain Pack

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

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.

architecture-review
trade-off-analysis

About

An architecture-focused agent for designing systems, refactoring code, analyzing trade-offs, and making technology decisions. Specialized in large-scale system design, architecture reviews, technology selection, and strategic code modernization.

Verify

sha256 20e7479f4a731f1bef90fed25b1f97b6ab84592fb6b78d8c7fcfccec0e57a51b

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