aither-adk agent pack
Hermes Architecture Studio
Hermes — Architecture & Reasoning Agent Brain Pack
macOS / Linux
# one command each; nothing else to configure $ curl -LO https://github.com/Aitherium/aither-adk/releases/download/v3.4.0/hermes-3.4.0.tar.gz $ tar xzf hermes-3.4.0.tar.gz $ python hermes/install.py installed hermes -> ~/.aither/packs/hermes verified: adk discovers 'hermes' $
Windows
# PowerShell. curl.exe and tar ship with Windows 10 1803+ $ curl.exe -LO https://github.com/Aitherium/aither-adk/releases/download/v3.4.0/hermes-3.4.0.tar.gz $ tar -xzf hermes-3.4.0.tar.gz $ python hermes\install.py installed hermes -> ~\.aither\packs\hermes verified: adk discovers 'hermes' $
- Version
- 3.4.0
- Size
- 5 KB
- Licence
- —
- sha256
- c6c5874385953798…
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-modelinstalls 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-reviewtrade-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 c6c5874385953798ce7c2a7829aef2bb4f389a54afa2aad5b6ca0c0a06623f31
macOS / Linux
# every artifact ships a checksum; check it before you trust it $ sha256sum -c hermes-3.4.0.sha256 hermes-3.4.0.tar.gz: OK $
Windows
# there is no sha256sum on Windows; Get-FileHash is the equivalent $ $want = 'C6C5874385953798CE7C2A7829AEF2BB4F389A54AFA2AAD5B6CA0C0A06623F31' $ (Get-FileHash hermes-3.4.0.tar.gz -Algorithm SHA256).Hash -eq $want True $