返回顶部
r

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 managing credentials (use ravi-passwords or ravi-secrets).

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 2.1.1
安全检测
已通过
485
下载量
0
收藏
概述
安装方式
版本历史

ravi-inbox

# 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) ```bash # 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:** ```json [{ "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:** ```json { "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) ```bash # List email threads ravi inbox email # View a specific thread (all messages with full content) ravi inbox email <thread_id> ``` **JSON shape — thread detail:** ```json { "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 ```bash ravi inbox sms | jq -r '.[].preview' | grep -oE '[0-9]{4,8}' ``` ### Extract a verification link from email ```bash 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](https://ravi.id/docs/schema/inbox.json) | [Messages](https://ravi.id/docs/schema/messages.json) ## 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

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 ravi-inbox-1776294843 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 ravi-inbox-1776294843 技能

通过命令行安装

skillhub install ravi-inbox-1776294843

下载 Zip 包

⬇ 下载 ravi-inbox v2.1.1

文件大小: 1.94 KB | 发布时间: 2026-4-16 15:59

v2.1.1 最新 2026-4-16 15:59
Auto-published from 19d2b7eea3e0a215bf8c5726dd9e1fb86307cdd7

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部