CLI
Install and use the Videlic CLI for terminal and CI/CD uploads.
The Videlic CLI is the fastest way to upload agent sessions from your terminal or CI/CD pipeline.
Install
npm install -g @videlic/cli
Authenticate
videlic login
Upload a session
videlic analyze ./session.jsonl
The CLI auto-detects the agent format (Claude Code, Cline, Cursor) and uploads the session for analysis.
CI/CD mode
videlic analyze ./session.jsonl --ci --threshold 70
In CI mode, the command exits with code 1 if the trust score falls below the threshold — failing your pipeline.
Options
--repo <name>— tag the session with a repository name.--ci— non-interactive mode, exit 1 on low score.--threshold <n>— override the default threshold (default: 70).--json— output the report URL as JSON.