Skip to content

Installing the CLI

npm

The CLI will ship as a Node.js package on npm:

Terminal window
npm install -g @agelo-platform/cli

After install, agelo --version should print the version.

Homebrew (macOS, Linux)

Terminal window
brew tap agelo-platform/agelo
brew install agelo

Pre-built binaries

Single-binary builds for Linux, macOS, and Windows will be attached to each GitHub release at https://github.com/Agelo-Platform/agelo-cli/releases.

Terminal window
curl -L -o agelo https://github.com/Agelo-Platform/agelo-cli/releases/latest/download/agelo-linux-amd64
chmod +x agelo
sudo mv agelo /usr/local/bin/

Verifying the install

Terminal window
agelo --version
agelo --help

If agelo --help lists subcommands, you’re set. Move on to auth to wire up credentials.

Uninstalling

MethodCommand
npmnpm uninstall -g @agelo-platform/cli
brewbrew uninstall agelo
Manual binaryDelete the file from your PATH.

The credentials file at ~/.config/agelo/credentials.json is left in place — remove it manually if you want a clean state.