Skip to Content
Getting Started

Getting Started

Verlign is a CLI tool that runs AI-driven validation workflows against your codebase inside a Docker container.

Prerequisites

  • Node.js 24+ (or any current LTS)
  • Docker running on your machine

Install the CLI

npm install -g @onerlaw/verlign

Verify the installation:

verlign --version

Quickstart

  1. Log in to your Verlign account:
verlign login

This opens your browser for authentication. Once complete, your API key is stored locally.

  1. Run a validation on your project:
verlign validate --path /path/to/your/project

Verlign pulls the worker Docker image, mounts your codebase, and streams the validation output to your terminal.

  1. Check your auth status at any time:
verlign status

What happens during validation?

When you run verlign validate, the CLI:

  1. Pulls the ghcr.io/onerlaw/verlign-worker:latest Docker image
  2. Mounts your codebase into the container at /workspace
  3. Runs an AI-powered validation workflow against your code
  4. Streams results back to your terminal in real time

Next steps

  • Authentication — Browser auth flow and API key management
  • Validation — CLI flags and understanding output
  • Configuration — Config file, environment variables, and troubleshooting
Last updated on