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.0/claude-code-3.4.0.tar.gz $ tar xzf claude-code-3.4.0.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.0/claude-code-3.4.0.tar.gz $ tar -xzf claude-code-3.4.0.tar.gz $ python claude-code\install.py installed claude-code -> ~\.aither\packs\claude-code verified: adk discovers 'claude-code' $
- Version
- 3.4.0
- Size
- 5 KB
- Licence
- —
- sha256
- 799a98281b1ff839…
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 799a98281b1ff839d953425ca2e4e559a64d02a48051e202f7d542115d0e0c79
macOS / Linux
# every artifact ships a checksum; check it before you trust it $ sha256sum -c claude-code-3.4.0.sha256 claude-code-3.4.0.tar.gz: OK $
Windows
# there is no sha256sum on Windows; Get-FileHash is the equivalent $ $want = '799A98281B1FF839D953425CA2E4E559A64D02A48051E202F7D542115D0E0C79' $ (Get-FileHash claude-code-3.4.0.tar.gz -Algorithm SHA256).Hash -eq $want True $