← All skills
Tencent SkillHub · Communication & Collaboration

Ravi inbox

Read incoming SMS or email messages — OTPs, verification codes, verification links, incoming mail. Do NOT use for sending email (use ravi-email-send) or mana...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Read incoming SMS or email messages — OTPs, verification codes, verification links, incoming mail. Do NOT use for sending email (use ravi-email-send) or mana...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.7.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Ravi Inbox

Read SMS and email messages received at your Ravi identity. Use this after triggering verifications, 2FA, or when expecting incoming messages.

SMS (OTPs, verification codes)

# List SMS conversations (grouped by sender) ravi inbox sms --json # Only conversations with unread messages ravi inbox sms --unread --json # View a specific conversation (all messages) ravi inbox sms <conversation_id> --json # conversation_id format: {phone_id}_{from_number}, e.g. "1_+15559876543" JSON shape — conversation list: [{ "conversation_id": "1_+15559876543", "from_number": "+15559876543", "phone_number": "+15551234567", "preview": "Your code is 847291", "message_count": 3, "unread_count": 1, "latest_message_dt": "2026-02-25T10:30:00Z" }] JSON shape — conversation detail: { "conversation_id": "1_+15559876543", "from_number": "+15559876543", "messages": [ {"id": 42, "body": "Your code is 847291", "direction": "incoming", "is_read": false, "created_dt": "..."} ] }

Email (verification links, confirmations)

# List email threads ravi inbox email --json # Only threads with unread messages ravi inbox email --unread --json # View a specific thread (all messages with full content) ravi inbox email <thread_id> --json JSON shape — thread detail: { "thread_id": "abc123", "subject": "Verify your email", "messages": [ { "id": 10, "from_email": "noreply@example.com", "to_email": "janedoe@example.com", "subject": "Verify your email", "text_content": "Click here to verify: https://example.com/verify?token=xyz", "direction": "incoming", "is_read": false, "created_dt": "..." } ] }

Individual Messages (flat, not grouped)

Use these when you need messages by ID rather than by conversation: ravi message sms --json # All SMS messages ravi message sms --unread --json # Unread only ravi message sms <message_id> --json # Specific message ravi message email --json # All email messages ravi message email --unread --json # Unread only ravi message email <message_id> --json # Specific message

Extract an OTP code from SMS

ravi inbox sms --unread --json | jq -r '.[].preview' | grep -oE '[0-9]{4,8}'

Extract a verification link from email

THREAD_ID=$(ravi inbox email --unread --json | jq -r '.[0].thread_id') ravi inbox email "$THREAD_ID" --json | jq -r '.messages[].text_content' | grep -oE 'https?://[^ ]+'

Important Notes

Poll, don't rush — SMS/email delivery takes 2-10 seconds. Use sleep 5 before checking. Auto-contacts — Ravi automatically creates or updates contacts when you send or receive email/SMS. Use ravi contacts search to look up people you've interacted with. Always use --json — human-readable output is not designed for parsing.

Related Skills

ravi-email-send — Reply, reply-all, or forward emails you've read ravi-email-writing — Write professional replies with proper formatting and tone ravi-contacts — Look up a sender's name or details from their email/phone ravi-login — End-to-end signup/login workflows that use inbox for OTP extraction ravi-feedback — Report inbox delivery issues or suggest improvements

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc