Skip to main content
VertaaUX Docs
CLI

CLI Overview

Run UX audits from your terminal with the VertaaUX command-line interface

CLI Overview

The VertaaUX CLI brings UX auditing directly to your terminal. Run audits locally during development, integrate into CI/CD pipelines for quality gates, and manage baselines for tracking improvements over time.

Quick Install

npm install -g @vertaaux/cli

Key Features

What You Can Do

Local Development

Run audits during development to catch UX issues before they reach production:

Audit your local dev server
$vertaa audit -u https://localhost:3000

CI/CD Quality Gates

Block merges when UX score drops below threshold:

Fail CI if errors found or score below 80
$vertaa audit -u $PREVIEW_URL --fail-on error --threshold 80

Baseline Comparisons

Track UX improvements by comparing against a baseline:

Compare current state against baseline
$vertaa audit -u https://example.com --baseline baseline.json

Multiple Output Formats

Export results in the format you need:

Export as SARIF for IDE integration
$vertaa audit -u https://example.com --format sarif -o results.sarif

Output Formats

FormatUse Case
humanTerminal display with colors (default)
jsonStructured data for programmatic processing
sarifIDE integration (VS Code, GitHub code scanning)
junitTest framework integration
htmlShareable HTML reports

Getting Started

Also available

The same auditing capabilities are available through:

  • REST API - Direct HTTP access for custom integrations
  • TypeScript SDK - Programmatic access with full type safety

Was this page helpful?

On this page