aither-adk agent pack

Claude Code Studio

Claude Code — Software Development Agent Brain Pack

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

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.

debugging
feature-development

About

A coding-focused agent for feature development, debugging, testing, refactoring, and code review. Works with any programming language and integrates with version control.

Verify

sha256 bb20cd070d175b2595acf0cf60445ec351e23970f6af952f3faf5b1a26850d8d

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