aither-adk agent pack

Analyst Studio

Analyst — Data & Structured-ML Agent Brain Pack

macOS / Linux
analyst — install
# one command each; nothing else to configure
$ curl -LO https://github.com/Aitherium/aither-adk/releases/download/v3.4.1/analyst-3.4.1.tar.gz
$ tar xzf analyst-3.4.1.tar.gz
$ python analyst/install.py
installed analyst -> ~/.aither/packs/analyst
verified: adk discovers 'analyst'
$ 
Windows
analyst — 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/analyst-3.4.1.tar.gz
$ tar -xzf analyst-3.4.1.tar.gz
$ python analyst\install.py
installed analyst -> ~\.aither\packs\analyst
verified: adk discovers 'analyst'
$ 
Version
3.4.1
Size
5 KB
Licence
sha256
677e90721263e94a…

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.

anomaly-detection
structured-inference

About

A data-analysis agent that classifies, regresses, and forecasts over structured data using zero-shot foundation models (TabFM + TimesFM), and reasons about the results. Adapts to new labeled data in-context (support set) instead of gradient training.

Verify

sha256 677e90721263e94aa84a5bacb04df31d85e9837703586710678357b37f169922

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