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.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
# 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
- ac5bab8eb85c00b8…
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 ac5bab8eb85c00b89cadb027ffd43b36cbc46f8031d5bcc95d7ba43f378e0db9
macOS / Linux
# 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
# there is no sha256sum on Windows; Get-FileHash is the equivalent $ $want = 'AC5BAB8EB85C00B89CADB027FFD43B36CBC46F8031D5BCC95D7BA43F378E0DB9' $ (Get-FileHash claude-code-3.5.0.tar.gz -Algorithm SHA256).Hash -eq $want True $