aide v0.6.0
📦 Installation
🐧 Linux
# .deb (Debian / Ubuntu)
sudo dpkg -i aide_*_amd64.deb
# .rpm (Fedora / RHEL)
sudo rpm -i aide-*-1.amd64.rpm
# Portable binary
tar -xzf aide-linux-amd64.tar.gz
sudo mv aide-linux-amd64 /usr/local/bin/aide🍎 macOS
# Apple Silicon (M1/M2/M3)
tar -xzf aide-darwin-arm64.tar.gz
sudo mv aide-darwin-arm64 /usr/local/bin/aide
# Intel
tar -xzf aide-darwin-amd64.tar.gz
sudo mv aide-darwin-amd64 /usr/local/bin/aide🪟 Windows
# One-liner installer (recommended)
powershell -c "irm https://raw.githubusercontent.com/accreation/aide/main/install.ps1 | iex"
# Or manually: extract and place in %USERPROFILE%\.local\bin\
Invoke-WebRequest -Uri "https://github.com/accreation/aide/releases/latest/download/aide-windows-amd64.exe.zip" -OutFile aide.zip
Expand-Archive aide.zip -DestinationPath .
Move-Item -Path "aide-windows-amd64.exe" -Destination "$env:USERPROFILE\.local\bin\aide.exe" -ForceSHA256 checksums are in aide_v0.6.0_checksums.txt.
What's Changed
- feat: multi-account switching via aide.yaml by @anar-latifov in #5
- Add 21 new tool recipes + prerequisite auto-install by @anar-latifov in #6
- feat: add recipes-maintainer agent role with /rm slash command by @anar-latifov in #7
- docs: comprehensive README rewrite with full project documentation by @anar-latifov in #8
- feat: project-local tool isolation (shim-based) by @anar-latifov in #9
- docs: add isolated mode and multi-account switching to README by @anar-latifov in #10
Full Changelog: v0.5.0...v0.6.0