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/verlignVerify the installation:
verlign --versionQuickstart
- Log in to your Verlign account:
verlign loginThis opens your browser for authentication. Once complete, your API key is stored locally.
- Run a validation on your project:
verlign validate --path /path/to/your/projectVerlign pulls the worker Docker image, mounts your codebase, and streams the validation output to your terminal.
- Check your auth status at any time:
verlign statusWhat happens during validation?
When you run verlign validate, the CLI:
- Pulls the
ghcr.io/onerlaw/verlign-worker:latestDocker image - Mounts your codebase into the container at
/workspace - Runs an AI-powered validation workflow against your code
- 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