Monito CLI

run

View test runs — list recent runs, view details, and read execution logs.

run list

List recent test runs.

monito-cli run list
monito-cli run ls                  # alias
monito-cli run list --limit 50     # show more
monito-cli run list --json

Displays: ID, Scenario, Project, Status, Duration, Bug count, Completed time.

Default limit is 20.

run view

View detailed information about a test run.

monito-cli run view <id>
monito-cli run view <id> --json

Shows all run fields including status, duration, cost, bug reports count, session ID, and error messages.

run logs

Show execution logs for a test run.

monito-cli run logs <id>
monito-cli run logs <id> --json

In human mode, prints the raw log output to stderr. In JSON mode, wraps the logs in a JSON object:

{
  "id": "run-id",
  "logs": "..."
}

Run Statuses

StatusDescription
pendingRun is queued
runningAI agent is actively testing
passedAll checks passed
failedOne or more checks failed or bugs found
errorRun encountered an error

Exit Codes

CodeMeaning
0Success (run passed or command completed)
1Test failure (run failed or errored)
2CLI error (bad input, auth failure, etc.)

On this page