Autousers
download

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/cli

Installs the autousers binary on your PATH

Verify the install

autousers --version

Prints 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 --help

Runs 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 --json

Pinned npx + env var auth — ideal for GitHub Actions

Updating

npm install -g @autousers/cli@latest

Pull the newest published version

infoThe CLI talks to https://app.autousers.ai/api/v1/* by default. To target a staging or self-hosted environment, set AUTOUSERS_BASE_URL — every command honours it.
Was this article helpful?