← 返回
沟通协作 中文

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...
读取收到的短信和邮件,包括一次性密码、验证码和验证链接。请勿用于发送邮件(请使用 ravi-email-send)。
raunaksingwi
沟通协作 clawhub v2.1.1 3 版本 100000 Key: 无需
★ 0
Stars
📥 920
下载
💾 17
安装
3
版本
#latest

概述

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

# View a specific conversation (all messages)
# conversation_id format: {phone_id}_{from_number}, e.g. "1_+15559876543"
ravi inbox sms "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

# View a specific thread (all messages with full content)
ravi inbox email <thread_id>

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": "..."
    }
  ]
}

Quick Recipes

Extract an OTP code from SMS

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

Extract a verification link from email

THREAD_ID=$(ravi inbox email | jq -r '.[0].thread_id')

ravi inbox email "$THREAD_ID" | 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.

Full API Reference

For complete endpoint details, request/response schemas, and parameters: Inbox | Messages

Related Skills

  • ravi-email-send — Reply 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

版本历史

共 3 个版本

  • v2.1.1 当前
    2026-05-03 03:27 安全 安全
  • v1.7.1
    2026-03-29 17:28 安全 安全
  • v1.6.0
    2026-03-07 01:58

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 113 📥 52,371
communication-collaboration

Himalaya

lamelas
{"answer":"通过IMAP/SMTP管理邮件的CLI。可在终端使用 `himalaya` 收发、回复、转发、搜索及整理邮件。支持多账户与MML(MIME元语言)编写邮件。"}
★ 68 📥 45,574
communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,667