aither-adk agent pack

OpenClaw Research Studio

OpenClaw — Web Research Agent Brain Pack

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

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.

source-verification
web-research

About

A web research agent that searches the open web, reads primary sources, cross-checks claims against its knowledge graph, and writes cited reports. Sign-in-free; runs on the operator's own LLM key.

Verify

sha256 4a9ff466b90b11c997ee7e0b9222debaac0ef4016d38163b229f665351e6bbae

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