curl -fsSL https://cli.aaizu.id/download/latest.tar.gz | tar xz
cd AIZU-CLI-*
python3 agent.py
๐ง No-git install
mkdir -p ~/AIZU-CLI && curl -fsSL https://cli.aaizu.id/download/latest.tar.gz | tar xz -C ~/AIZU-CLI --strip-components=1
cd ~/AIZU-CLI && python3 agent.py
๐ Pure Python โ curl raw file
mkdir ~/AIZU-CLI && cd ~/AIZU-CLI
for f in agent.py tools.py tui.py memory.py plugins.py; do
curl -fsSLO https://cli.aaizu.id/download/latest/$f
done
python3 agent.py