{
  "schemaVersion": "1.0",
  "item": {
    "slug": "resend",
    "name": "Resend",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mjrussell/resend",
    "canonicalUrl": "https://clawhub.ai/mjrussell/resend",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/resend",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=resend",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/resend"
    },
    "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/resend",
    "agentPageUrl": "https://openagent3.xyz/skills/resend/agent",
    "manifestUrl": "https://openagent3.xyz/skills/resend/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/resend/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": "Resend CLI",
        "body": "CLI for the Resend email API. Query received (inbound) emails and attachments."
      },
      {
        "title": "Installation",
        "body": "npm install -g @mjrussell/resend-cli"
      },
      {
        "title": "Setup",
        "body": "Sign up at resend.com\nSet up inbound email routing for your domain\nCreate API key at API Keys → Create API key (needs read permissions)\nSet environment variable: export RESEND_API_KEY=\"re_your_key\""
      },
      {
        "title": "List Emails",
        "body": "resend email list              # List recent emails (default 10)\nresend email list -l 20        # List 20 emails\nresend email list --json       # Output as JSON"
      },
      {
        "title": "Get Email Details",
        "body": "resend email get <id>          # Show email details\nresend email get <id> --json   # Output as JSON"
      },
      {
        "title": "Attachments",
        "body": "resend email attachments <email_id>                    # List attachments\nresend email attachment <email_id> <attachment_id>     # Get attachment metadata\nresend email attachments <email_id> --json             # Output as JSON"
      },
      {
        "title": "Domains",
        "body": "resend domain list             # List configured domains\nresend domain get <id>         # Get domain details with DNS records\nresend domain list --json      # Output as JSON"
      },
      {
        "title": "Usage Examples",
        "body": "User: \"Do I have any new emails?\"\n\nresend email list -l 5\n\nUser: \"Show me the latest email\"\n\nresend email list --json | jq -r '.data.data[0].id'  # Get ID\nresend email get <id>\n\nUser: \"What attachments are on that email?\"\n\nresend email attachments <email_id>\n\nUser: \"What domains do I have set up?\"\n\nresend domain list\n\nUser: \"Show me the full content of email X\"\n\nresend email get <email_id>"
      },
      {
        "title": "Notes",
        "body": "This CLI only supports received (inbound) emails, not sending\nUse --json flag and pipe to jq for scripting\nEmail IDs are UUIDs shown in list output"
      }
    ],
    "body": "Resend CLI\n\nCLI for the Resend email API. Query received (inbound) emails and attachments.\n\nInstallation\nnpm install -g @mjrussell/resend-cli\n\nSetup\nSign up at resend.com\nSet up inbound email routing for your domain\nCreate API key at API Keys → Create API key (needs read permissions)\nSet environment variable: export RESEND_API_KEY=\"re_your_key\"\nCommands\nList Emails\nresend email list              # List recent emails (default 10)\nresend email list -l 20        # List 20 emails\nresend email list --json       # Output as JSON\n\nGet Email Details\nresend email get <id>          # Show email details\nresend email get <id> --json   # Output as JSON\n\nAttachments\nresend email attachments <email_id>                    # List attachments\nresend email attachment <email_id> <attachment_id>     # Get attachment metadata\nresend email attachments <email_id> --json             # Output as JSON\n\nDomains\nresend domain list             # List configured domains\nresend domain get <id>         # Get domain details with DNS records\nresend domain list --json      # Output as JSON\n\nUsage Examples\n\nUser: \"Do I have any new emails?\"\n\nresend email list -l 5\n\n\nUser: \"Show me the latest email\"\n\nresend email list --json | jq -r '.data.data[0].id'  # Get ID\nresend email get <id>\n\n\nUser: \"What attachments are on that email?\"\n\nresend email attachments <email_id>\n\n\nUser: \"What domains do I have set up?\"\n\nresend domain list\n\n\nUser: \"Show me the full content of email X\"\n\nresend email get <email_id>\n\nNotes\nThis CLI only supports received (inbound) emails, not sending\nUse --json flag and pipe to jq for scripting\nEmail IDs are UUIDs shown in list output"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mjrussell/resend",
    "publisherUrl": "https://clawhub.ai/mjrussell/resend",
    "owner": "mjrussell",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/resend",
    "downloadUrl": "https://openagent3.xyz/downloads/resend",
    "agentUrl": "https://openagent3.xyz/skills/resend/agent",
    "manifestUrl": "https://openagent3.xyz/skills/resend/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/resend/agent.md"
  }
}