Operio Doc
CLI & Agents

CLI & Agents

Drive Operio from your terminal, your CI pipeline, or an AI coding agent

Everything you can do in the Operio web app you can also do from a terminal. The operio CLI creates projects, environments, credentials, test cases, and suites, kicks off runs, and waits for results with a meaningful exit code.

It suits two audiences: people who'd rather stay in a terminal or a CI pipeline, and AI agents that need a predictable, machine-readable way to manage tests.

In this section

The 60-second version

npm install -g @operio/cli
operio auth login

operio teams use <team-id>
operio projects use <project-id>

operio tests run <test-case-id> --environment-id <env-id> --wait

That last command blocks until the run finishes, prints a JSON summary, and exits 1 if anything failed — which is all a CI job or an agent needs to make a decision.

An AI skill is on the way

We're publishing a skill repository with the full command surface and worked examples, so agents can pick up Operio without you writing a prompt for it.

On this page