Install
openclaw skills install ravi-identityGet your agent identity (email, phone, owner name) and manage identities. Do NOT use for reading messages (use ravi-inbox), sending email (use ravi-email-sen...
openclaw skills install ravi-identityYou have access to Ravi, an identity provider that gives you your own phone number, email address, and secret store.
# Check auth status and current identity
ravi auth status
# Get your email address (use this for signups)
ravi get email
# Get your phone number (use this for SMS verification)
ravi get phone
# Get account owner info
ravi get owner
# List all your identities
ravi identity list
Response shape (identity list):
[{
"uuid": "...",
"name": "Sarah Johnson",
"inbox": "sarah.johnson472@raviapp.com",
"phone": "+15551234567",
"created_dt": "2026-02-25T10:30:00Z",
"updated_dt": "2026-02-25T10:30:00Z"
}]
Only create a new identity when the user explicitly asks for one (e.g., for a separate project that needs its own email/phone). New identities require a paid plan.
# Auto-generated name and email (recommended — looks like a real person)
ravi identity create
# → name: "Sarah Johnson", inbox: "sarah.johnson472@raviapp.com"
When name is omitted, the server generates a realistic human name like "Sarah Johnson". The auto-generated email uses the same name: sarah.johnson472@raviapp.com.
# Switch to a different identity
ravi identity use <uuid>
ravi auth login to onboard.For complete endpoint details, request/response schemas, and parameters: Identities