Install the CLI
Install the @autousers/cli npm package on macOS, Linux, or Windows.
Prerequisites
- Node.js 20 or later (check with node --version)
- npm 10+ (bundled with Node.js 20)
- An Autousers account at https://app.autousers.ai
Install globally
The CLI ships as a public npm package — no scoped registry config required.
npm install -g @autousers/cliInstalls the autousers binary on your PATH
Verify the install
autousers --versionPrints the installed CLI version
One-off use without installing
If you only need the CLI occasionally, run it through npx — no global install required.
npx -y @autousers/cli@latest --helpRuns the latest CLI without polluting your global modules
CI and headless environments
There is no need to npm install -g inside CI. Use npx with a pinned version so build-cache hits stay deterministic, and authenticate via the AUTOUSERS_API_KEY environment variable instead of writing a config file.
AUTOUSERS_API_KEY=ak_live_... \
npx -y @autousers/cli@0.1 eval list --jsonPinned npx + env var auth — ideal for GitHub Actions
Updating
npm install -g @autousers/cli@latestPull the newest published version