Install
openclaw skills install ravi-loginSign up for and log into services using your Ravi identity — handles onboarding, forms, 2FA, OTPs, and credential storage. Do NOT use for standalone inbox re...
openclaw skills install ravi-loginEnd-to-end workflows for onboarding to Ravi, signing up for services, logging in, and completing verification using your Ravi identity.
Before doing anything, check whether you're already authenticated:
ravi auth status
If authenticated, skip to Sign up for a service.
If you're not authenticated, run the login flow. This is a one-time setup — the CLI handles the device code flow, polls for authorization, and stores keys automatically.
ravi auth login
The CLI will:
~/.ravi/config.jsonPresent the URL and code clearly to the human:
Please visit https://ravi.id/device and enter the code: ABCD-1234
The human visits the URL, signs in with Google, and approves the request.
If you have multiple identities, list and switch between them:
# List all identities
ravi identity list
# Switch to a specific identity
ravi identity use <uuid>
If you have no identities, create one:
ravi identity create
The server auto-generates a realistic human name (e.g. "Sarah Johnson") and matching email.
# 1. Get your identity details
EMAIL=$(ravi get email)
PHONE=$(ravi get phone)
NAME=$(ravi auth status | jq -r '.name')
FIRST_NAME=$(echo "$NAME" | awk '{print $1}')
LAST_NAME=$(echo "$NAME" | awk '{print $2}')
# 2. Fill the signup form with $EMAIL, $PHONE, $FIRST_NAME, $LAST_NAME
# 3. Generate and store a password during signup
CREDS=$(ravi passwords create example.com --username "$EMAIL")
PASSWORD=$(echo "$CREDS" | jq -r '.password')
# Use $PASSWORD in the signup form
# 4. Wait for verification
sleep 5
ravi inbox sms # Check for SMS OTP
ravi inbox email # Check for email verification
When a form asks for your name, use your identity name — not the account owner's name. Identity names look like real human names (e.g. "Sarah Johnson").
ravi auth status
# → Returns identity name, email, phone
Note: The first/last split works for auto-generated names (e.g. "Sarah Johnson"). For custom names (e.g. "Shopping Agent"), use the full name as-is or adapt the split to the form's requirements.
Never use the account owner's name for form fields. The identity name is your name.
# Find stored credentials by domain
CREDS=$(ravi passwords list | jq -r '.[] | select(.domain == "example.com")')
UUID=$(echo "$CREDS" | jq -r '.uuid')
# Get full credentials including password
CREDS=$(ravi passwords get "$UUID")
USERNAME=$(echo "$CREDS" | jq -r '.username')
PASSWORD=$(echo "$CREDS" | jq -r '.password')
# Use $USERNAME and $PASSWORD to log in
# After triggering 2FA on a website:
sleep 5
CODE=$(ravi inbox sms | jq -r '.[].preview' | grep -oE '[0-9]{4,8}' | head -1)
# Use $CODE to complete the login
THREAD_ID=$(ravi inbox email | jq -r '.[0].thread_id')
ravi inbox email "$THREAD_ID" | jq -r '.messages[].text_content' | grep -oE 'https?://[^ ]+'
sleep 5 before checking.ravi-email-send skill for details.For complete endpoint details, request/response schemas, and parameters: Device Auth | Auth & Keys