Real-World Scenarios
Software evaluation
An agent evaluating project management tools for your team:
- Signs up for Asana trial (email verification)
- Signs up for Monday.com trial (email verification)
- Signs up for ClickUp trial (phone verification)
- Signs up for Notion trial (email verification)
- Receives all onboarding emails
- Accesses each platform, compares features
- Reports findings
Without Ravi: 4 separate verification interruptions, marketing emails flooding your personal inbox.
With Ravi: Fully autonomous. All verifications handled. All marketing emails stay in the agent’s inbox.
# For each service
EMAIL=$(ravi get email --json | jq -r '.email')
CREDS=$(ravi passwords create asana.com --username "$EMAIL" --json)
PASSWORD=$(echo "$CREDS" | jq -r '.password')
# Sign up with $EMAIL and $PASSWORD...
sleep 5
ravi inbox email --unread --json # Get verification
Price monitoring
An agent tracking prices across e-commerce sites:
- Creates accounts on 15 retailers
- Adds items to wishlists
- Subscribes to price drop alerts
- Receives notifications when prices change
- Aggregates data and reports to you
Without Ravi: Your personal email exposed to 15 retailers, endless marketing emails.
With Ravi: Agent has its own inbox. Your personal info stays private. Agent monitors alerts independently.
Travel booking
An agent booking a trip:
- Creates airline account (email verification)
- Books flight (confirmation to email)
- Creates hotel account (phone verification)
- Books hotel (confirmation to email)
- Receives all confirmations
- Compiles itinerary
Without Ravi: Multiple verification interruptions, your phone number and email shared with travel companies.
With Ravi: Continuous autonomous operation. All confirmations in one place. Your personal info stays private.
Research assistant
An agent conducting market research:
- Signs up for industry publications (email gate)
- Registers for analyst reports (email gate)
- Creates accounts on data platforms (verification required)
- Subscribes to competitor newsletters
- Registers for industry webinars
- Collects and synthesizes information
Without Ravi: Blocked at every email gate. Your inbox polluted with industry spam.
With Ravi: Agent accesses gated content autonomously. Industry emails stay in the agent’s inbox.
Customer service automation
An agent handling support tasks:
- Initiates support ticket (email required)
- Receives ticket confirmation
- Responds to follow-up questions
- Receives resolution confirmation
# Send a support email
ravi email compose \
--to "support@service.com" \
--subject "Order #12345 — delivery question" \
--body "<p>Hi, I'd like to check the delivery status for order #12345.</p>" \
--json
# Wait for response
sleep 30
ravi inbox email --unread --json
The pattern
Every scenario follows the same pattern:
- Get Identity details —
ravi get email --json,ravi get phone --json - Store credentials —
ravi passwords create <domain> --json - Complete verification —
ravi inbox sms --unread --jsonorravi inbox email --unread --json - Operate independently — the agent works without human intervention
The web assumes every user has an email and phone number. Ravi gives your agent both, so it can operate in a world built for humans.
Next steps
- Service Signup — detailed signup workflow
- Multi-Agent Setup — running multiple agents