Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.veri.studio/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The Veri CLI is a lightweight command-line tool for local login and credential management. Right now, it is intentionally small. Its main job is to help you store credentials once and then use the SDK without passing the API key manually every time.

What It Does Today

The current CLI supports:
  • veri login
  • veri whoami
  • veri logout
It is primarily a local developer convenience layer on top of the SDK and API.

Credential Storage

The CLI stores credentials at:
~/.veri/credentials.json
The file is written with user-only permissions.

SDK Integration

Once you log in through the CLI, the Python SDK can auto-load credentials:
from veri_sdk import Client

client = Client()  # reads from ~/.veri/credentials.json

Current Behavior

The current CLI:
  • expects API keys that start with vk_
  • attempts a lightweight verification request against /health
  • saves api_key and api_url together

Subpages