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