Skip to content
EximAgent Docs

Install

Install the EximAgent CLI on macOS, Linux, or Windows with one command. No runtime to set up.

The installer drops a single binary on your PATH. There is no runtime to install first — no Node, no Python, no Docker.

macOS and Linux

curl -fsSL https://cli.eximagent.ai/install | sh

Windows

Run this in PowerShell:

irm https://cli.eximagent.ai/install.ps1 | iex

Verify

eximagent --version

If the shell reports that the command is not found, open a new terminal so it picks up the updated PATH, then try again.

What else the installer does

Alongside the binary, the installer writes the EximAgent skill into the skill directories of any coding agents it finds on the machine. That is what lets an agent discover the CLI and drive it for you without further setup — see AI agents and editors.

Network requirements

Every command makes an HTTPS call to the EximAgent server, so the CLI needs outbound network access on port 443. Behind a proxy, set HTTPS_PROXY before running commands:

export HTTPS_PROXY="http://proxy.internal:8080"

Next

Continue to authenticate.