{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ravi-inbox",
    "name": "Ravi inbox",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/raunaksingwi/ravi-inbox",
    "canonicalUrl": "https://clawhub.ai/raunaksingwi/ravi-inbox",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ravi-inbox",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ravi-inbox",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ravi-inbox"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ravi-inbox",
    "agentPageUrl": "https://openagent3.xyz/skills/ravi-inbox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ravi-inbox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ravi-inbox/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Ravi Inbox",
        "body": "Read SMS and email messages received at your Ravi identity. Use this after triggering verifications, 2FA, or when expecting incoming messages."
      },
      {
        "title": "SMS (OTPs, verification codes)",
        "body": "# List SMS conversations (grouped by sender)\nravi inbox sms --json\n\n# Only conversations with unread messages\nravi inbox sms --unread --json\n\n# View a specific conversation (all messages)\nravi inbox sms <conversation_id> --json\n# conversation_id format: {phone_id}_{from_number}, e.g. \"1_+15559876543\"\n\nJSON shape — conversation list:\n\n[{\n  \"conversation_id\": \"1_+15559876543\",\n  \"from_number\": \"+15559876543\",\n  \"phone_number\": \"+15551234567\",\n  \"preview\": \"Your code is 847291\",\n  \"message_count\": 3,\n  \"unread_count\": 1,\n  \"latest_message_dt\": \"2026-02-25T10:30:00Z\"\n}]\n\nJSON shape — conversation detail:\n\n{\n  \"conversation_id\": \"1_+15559876543\",\n  \"from_number\": \"+15559876543\",\n  \"messages\": [\n    {\"id\": 42, \"body\": \"Your code is 847291\", \"direction\": \"incoming\", \"is_read\": false, \"created_dt\": \"...\"}\n  ]\n}"
      },
      {
        "title": "Email (verification links, confirmations)",
        "body": "# List email threads\nravi inbox email --json\n\n# Only threads with unread messages\nravi inbox email --unread --json\n\n# View a specific thread (all messages with full content)\nravi inbox email <thread_id> --json\n\nJSON shape — thread detail:\n\n{\n  \"thread_id\": \"abc123\",\n  \"subject\": \"Verify your email\",\n  \"messages\": [\n    {\n      \"id\": 10,\n      \"from_email\": \"noreply@example.com\",\n      \"to_email\": \"janedoe@example.com\",\n      \"subject\": \"Verify your email\",\n      \"text_content\": \"Click here to verify: https://example.com/verify?token=xyz\",\n      \"direction\": \"incoming\",\n      \"is_read\": false,\n      \"created_dt\": \"...\"\n    }\n  ]\n}"
      },
      {
        "title": "Individual Messages (flat, not grouped)",
        "body": "Use these when you need messages by ID rather than by conversation:\n\nravi message sms --json              # All SMS messages\nravi message sms --unread --json     # Unread only\nravi message sms <message_id> --json # Specific message\n\nravi message email --json              # All email messages\nravi message email --unread --json     # Unread only\nravi message email <message_id> --json # Specific message"
      },
      {
        "title": "Extract an OTP code from SMS",
        "body": "ravi inbox sms --unread --json | jq -r '.[].preview' | grep -oE '[0-9]{4,8}'"
      },
      {
        "title": "Extract a verification link from email",
        "body": "THREAD_ID=$(ravi inbox email --unread --json | jq -r '.[0].thread_id')\nravi inbox email \"$THREAD_ID\" --json | jq -r '.messages[].text_content' | grep -oE 'https?://[^ ]+'"
      },
      {
        "title": "Important Notes",
        "body": "Poll, don't rush — SMS/email delivery takes 2-10 seconds. Use sleep 5 before checking.\nAuto-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.\nAlways use --json — human-readable output is not designed for parsing."
      },
      {
        "title": "Related Skills",
        "body": "ravi-email-send — Reply, reply-all, or forward emails you've read\nravi-email-writing — Write professional replies with proper formatting and tone\nravi-contacts — Look up a sender's name or details from their email/phone\nravi-login — End-to-end signup/login workflows that use inbox for OTP extraction\nravi-feedback — Report inbox delivery issues or suggest improvements"
      }
    ],
    "body": "Ravi Inbox\n\nRead SMS and email messages received at your Ravi identity. Use this after triggering verifications, 2FA, or when expecting incoming messages.\n\nSMS (OTPs, verification codes)\n# List SMS conversations (grouped by sender)\nravi inbox sms --json\n\n# Only conversations with unread messages\nravi inbox sms --unread --json\n\n# View a specific conversation (all messages)\nravi inbox sms <conversation_id> --json\n# conversation_id format: {phone_id}_{from_number}, e.g. \"1_+15559876543\"\n\n\nJSON shape — conversation list:\n\n[{\n  \"conversation_id\": \"1_+15559876543\",\n  \"from_number\": \"+15559876543\",\n  \"phone_number\": \"+15551234567\",\n  \"preview\": \"Your code is 847291\",\n  \"message_count\": 3,\n  \"unread_count\": 1,\n  \"latest_message_dt\": \"2026-02-25T10:30:00Z\"\n}]\n\n\nJSON shape — conversation detail:\n\n{\n  \"conversation_id\": \"1_+15559876543\",\n  \"from_number\": \"+15559876543\",\n  \"messages\": [\n    {\"id\": 42, \"body\": \"Your code is 847291\", \"direction\": \"incoming\", \"is_read\": false, \"created_dt\": \"...\"}\n  ]\n}\n\nEmail (verification links, confirmations)\n# List email threads\nravi inbox email --json\n\n# Only threads with unread messages\nravi inbox email --unread --json\n\n# View a specific thread (all messages with full content)\nravi inbox email <thread_id> --json\n\n\nJSON shape — thread detail:\n\n{\n  \"thread_id\": \"abc123\",\n  \"subject\": \"Verify your email\",\n  \"messages\": [\n    {\n      \"id\": 10,\n      \"from_email\": \"noreply@example.com\",\n      \"to_email\": \"janedoe@example.com\",\n      \"subject\": \"Verify your email\",\n      \"text_content\": \"Click here to verify: https://example.com/verify?token=xyz\",\n      \"direction\": \"incoming\",\n      \"is_read\": false,\n      \"created_dt\": \"...\"\n    }\n  ]\n}\n\nIndividual Messages (flat, not grouped)\n\nUse these when you need messages by ID rather than by conversation:\n\nravi message sms --json              # All SMS messages\nravi message sms --unread --json     # Unread only\nravi message sms <message_id> --json # Specific message\n\nravi message email --json              # All email messages\nravi message email --unread --json     # Unread only\nravi message email <message_id> --json # Specific message\n\nQuick Recipes\nExtract an OTP code from SMS\nravi inbox sms --unread --json | jq -r '.[].preview' | grep -oE '[0-9]{4,8}'\n\nExtract a verification link from email\nTHREAD_ID=$(ravi inbox email --unread --json | jq -r '.[0].thread_id')\nravi inbox email \"$THREAD_ID\" --json | jq -r '.messages[].text_content' | grep -oE 'https?://[^ ]+'\n\nImportant Notes\nPoll, don't rush — SMS/email delivery takes 2-10 seconds. Use sleep 5 before checking.\nAuto-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.\nAlways use --json — human-readable output is not designed for parsing.\nRelated Skills\nravi-email-send — Reply, reply-all, or forward emails you've read\nravi-email-writing — Write professional replies with proper formatting and tone\nravi-contacts — Look up a sender's name or details from their email/phone\nravi-login — End-to-end signup/login workflows that use inbox for OTP extraction\nravi-feedback — Report inbox delivery issues or suggest improvements"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/raunaksingwi/ravi-inbox",
    "publisherUrl": "https://clawhub.ai/raunaksingwi/ravi-inbox",
    "owner": "raunaksingwi",
    "version": "1.7.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ravi-inbox",
    "downloadUrl": "https://openagent3.xyz/downloads/ravi-inbox",
    "agentUrl": "https://openagent3.xyz/skills/ravi-inbox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ravi-inbox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ravi-inbox/agent.md"
  }
}