> ## Documentation Index
> Fetch the complete documentation index at: https://veridical-dev.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CLI command reference

> Authenticated hosted work and local verification

Authenticate and select the hosted or self-hosted endpoint:

```bash theme={null}
veridical auth login --app-url https://app.veridical.dev
veridical auth status
veridical workspace list
veridical repository list --workspace ws_123
```

Hosted commands:

```bash theme={null}
veridical scan --workspace ws_123 --repository repo_456 --type security
veridical usage --workspace ws_123
veridical fix finding_789 --workspace ws_123
```

Local and orchestrated commands:

```bash theme={null}
veridical onboard .
veridical verify . --staged
veridical review https://github.com/acme/service/pull/42 --tier pro
veridical plan SPEC.md --path .
veridical run --path . --no-merge
veridical implement ROADMAP.md --path . --no-merge
veridical status --path .
```

`plan` persists feature contracts. `run` resumes them in isolated worktrees and
does not merge by default. `implement` combines the two. Use `--format json` for
automation and preserve idempotency keys for hosted mutations.

Credentials are stored in the operating system's secure credential store when
available. `veridical auth logout` removes the shared Veridical session.
