vexis-cli
v0.0.2
Published
CLI for Vexis — cryptographic identity and trust infrastructure for AI agents
Downloads
47
Maintainers
Readme
vexis-cli
CLI for Vexis — cryptographic identity and trust infrastructure for AI agents.
Issue passports, verify credentials, record attestations, and query trust scores from your terminal.
Install
npx vexis-cli --helpOr install globally:
npm install -g vexis-cliSetup
Set your API key:
export VEXIS_API_KEY=vr_live_...Get your key from the Vexis dashboard.
Commands
vexis issue Issue a signed passport for an AI agent
vexis verify Verify a passport token and get trust score
vexis attest Record an agent action (feeds the trust graph)
vexis trust Query trust scores for agents, orgs, or relationships
vexis lookup Get full passport details and history
vexis status Check API healthUsage
Issue a passport
vexis issue --agent my-agent --type assistant --capabilities "read,write"Verify a passport
vexis verify <token>Record an attestation
vexis attest <passport-id> --action "data.read" --target "api-system" --outcome successQuery trust score
vexis trust --agent my-agent --type assistant --org <org-id>JSON output
All commands support --json for machine-readable output:
vexis verify <token> --jsonConfiguration
| Variable | Required | Description |
|----------|----------|-------------|
| VEXIS_API_KEY | Yes | Your API key (starts with vr_) |
| VEXIS_BASE_URL | No | Override API URL (defaults to production) |
