{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bot-email",
    "name": "BotEmail.ai - Free bot email",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/claw-silhouette/bot-email",
    "canonicalUrl": "https://clawhub.ai/claw-silhouette/bot-email",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bot-email",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bot-email",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "EXAMPLES.md",
      "README.md",
      "skill.json",
      "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/bot-email"
    },
    "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/bot-email",
    "agentPageUrl": "https://openagent3.xyz/skills/bot-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bot-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bot-email/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "BotEmail.ai — Email for Bots",
        "body": "Get a free permanent bot email address instantly. Just say \"get me a bot email\" — no signup, no form, done in seconds. Supports attachments, inbox monitoring, and automatic notifications via heartbeat."
      },
      {
        "title": "1. Create or retrieve an account",
        "body": "If the user doesn't have an account yet, create one:\n\nPOST https://api.botemail.ai/api/create-account\nContent-Type: application/json\n\n{}\n\nReturns:\n\n{ \"email\": \"9423924_bot@botemail.ai\", \"apiKey\": \"...\" }\n\nCustom username:\n\n{ \"username\": \"mybot\" }\n\nAsk the user to save the returned email address and API key securely (e.g. password manager or .env file). Do not store them anywhere unless the user explicitly asks."
      },
      {
        "title": "2. Check inbox",
        "body": "GET https://api.botemail.ai/api/emails/{email}\nAuthorization: Bearer {apiKey}"
      },
      {
        "title": "3. Optional: Inbox notifications via heartbeat",
        "body": "If the user asks to be notified of new emails automatically, ask them to confirm they want this set up and which address to monitor. Then update HEARTBEAT.md to add a check that:\n\nFetches the inbox using the user's credentials (ask them to provide the API key at setup time)\nCompares against seen IDs in memory/heartbeat-state.json\nNotifies the user of any new emails (sender, subject, preview) — does not take any action on their behalf\nUpdates the seen ID list\n\nThe agent only notifies — it does not act on email contents without a separate explicit user instruction."
      },
      {
        "title": "GET /api/emails/{email}",
        "body": "List all emails in inbox.\n\nHeaders: Authorization: Bearer {apiKey}\n\nResponse:\n\n{\n  \"emails\": [\n    {\n      \"id\": \"abc123\",\n      \"from\": \"sender@example.com\",\n      \"subject\": \"Hello\",\n      \"timestamp\": \"2026-02-17T12:00:00Z\",\n      \"bodyText\": \"Hello!\"\n    }\n  ]\n}"
      },
      {
        "title": "GET /api/emails/{email}/{id}",
        "body": "Get a single email by ID."
      },
      {
        "title": "DELETE /api/emails/{email}/{id}",
        "body": "Delete a specific email."
      },
      {
        "title": "DELETE /api/emails/{email}",
        "body": "Clear entire inbox."
      },
      {
        "title": "Common Use Cases",
        "body": "Verification codes — Create a bot address, trigger a signup flow, poll inbox for the code\nNotification monitoring — Watch for specific emails from a service\nEnd-to-end testing — Receive and verify automated emails in tests\n2FA codes — Retrieve authentication codes automatically"
      },
      {
        "title": "Notes",
        "body": "Emails stored for 6 months\nFree tier: 1 address, 1,000 requests/day\nAll addresses end in _bot@botemail.ai\nReceive only (sending not supported)"
      },
      {
        "title": "Links",
        "body": "Dashboard: https://botemail.ai/dashboard\nDocs: https://botemail.ai/docs\nMCP Server: https://github.com/claw-silhouette/botemail-mcp-server"
      }
    ],
    "body": "BotEmail.ai — Email for Bots\n\nGet a free permanent bot email address instantly. Just say \"get me a bot email\" — no signup, no form, done in seconds. Supports attachments, inbox monitoring, and automatic notifications via heartbeat.\n\nSetup\n1. Create or retrieve an account\n\nIf the user doesn't have an account yet, create one:\n\nPOST https://api.botemail.ai/api/create-account\nContent-Type: application/json\n\n{}\n\n\nReturns:\n\n{ \"email\": \"9423924_bot@botemail.ai\", \"apiKey\": \"...\" }\n\n\nCustom username:\n\n{ \"username\": \"mybot\" }\n\n\nAsk the user to save the returned email address and API key securely (e.g. password manager or .env file). Do not store them anywhere unless the user explicitly asks.\n\n2. Check inbox\nGET https://api.botemail.ai/api/emails/{email}\nAuthorization: Bearer {apiKey}\n\n3. Optional: Inbox notifications via heartbeat\n\nIf the user asks to be notified of new emails automatically, ask them to confirm they want this set up and which address to monitor. Then update HEARTBEAT.md to add a check that:\n\nFetches the inbox using the user's credentials (ask them to provide the API key at setup time)\nCompares against seen IDs in memory/heartbeat-state.json\nNotifies the user of any new emails (sender, subject, preview) — does not take any action on their behalf\nUpdates the seen ID list\n\nThe agent only notifies — it does not act on email contents without a separate explicit user instruction.\n\nAPI Reference\nGET /api/emails/{email}\n\nList all emails in inbox.\n\nHeaders: Authorization: Bearer {apiKey}\n\nResponse:\n\n{\n  \"emails\": [\n    {\n      \"id\": \"abc123\",\n      \"from\": \"sender@example.com\",\n      \"subject\": \"Hello\",\n      \"timestamp\": \"2026-02-17T12:00:00Z\",\n      \"bodyText\": \"Hello!\"\n    }\n  ]\n}\n\nGET /api/emails/{email}/{id}\n\nGet a single email by ID.\n\nDELETE /api/emails/{email}/{id}\n\nDelete a specific email.\n\nDELETE /api/emails/{email}\n\nClear entire inbox.\n\nCommon Use Cases\nVerification codes — Create a bot address, trigger a signup flow, poll inbox for the code\nNotification monitoring — Watch for specific emails from a service\nEnd-to-end testing — Receive and verify automated emails in tests\n2FA codes — Retrieve authentication codes automatically\nNotes\nEmails stored for 6 months\nFree tier: 1 address, 1,000 requests/day\nAll addresses end in _bot@botemail.ai\nReceive only (sending not supported)\nLinks\nDashboard: https://botemail.ai/dashboard\nDocs: https://botemail.ai/docs\nMCP Server: https://github.com/claw-silhouette/botemail-mcp-server"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/claw-silhouette/bot-email",
    "publisherUrl": "https://clawhub.ai/claw-silhouette/bot-email",
    "owner": "claw-silhouette",
    "version": "v1.0.7",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bot-email",
    "downloadUrl": "https://openagent3.xyz/downloads/bot-email",
    "agentUrl": "https://openagent3.xyz/skills/bot-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bot-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bot-email/agent.md"
  }
}