← Docs|CLI Reference

CLI Reference

Complete command-line options for the Wozz audit script.

Basic Usage

curl -sL wozz.io/audit.sh | bash

Runs a local audit and displays results in your terminal. No data leaves your machine.

Command Options

--push

Push audit results to the Wozz Monitor dashboard for historical tracking.

curl -sL wozz.io/audit.sh | bash -s -- --push

Returns a magic claim URL to view your results in the dashboard.

--token TOKEN

Authenticate with an API token (get from Settings → API).

curl -sL wozz.io/audit.sh | bash -s -- --push --token wozz_abc123...

Required if you want to push data to an existing account without claiming.

--help

Show help message with all available options.

curl -sL wozz.io/audit.sh | bash -s -- --help

Environment Variables

WOZZ_NO_TELEMETRY

Disable anonymous usage telemetry.

export WOZZ_NO_TELEMETRY=1

WOZZ_API_URL

Override the API endpoint (for testing).

export WOZZ_API_URL=http://localhost:3000

Output Files

wozz-audit.json

Complete audit results in JSON format. Use this to upload to the web analyzer at wozz.io/analyze

Examples

Local audit only

curl -sL wozz.io/audit.sh | bash

Push to dashboard (first time)

curl -sL wozz.io/audit.sh | bash -s -- --push

You'll get a claim URL to view your results

Push with existing token

curl -sL wozz.io/audit.sh | bash -s -- --push --token wozz_abc123...

Sends data directly to your account

Disable telemetry

WOZZ_NO_TELEMETRY=1 curl -sL wozz.io/audit.sh | bash

No anonymous usage stats sent