{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lel-mail",
    "name": "Lel-Mail",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Leli1024/lel-mail",
    "canonicalUrl": "https://clawhub.ai/Leli1024/lel-mail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/lel-mail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lel-mail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/check_email.sh",
      "scripts/email_send.sh",
      "scripts/email_sender_daemon.sh",
      "scripts/manage_queue.py"
    ],
    "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/lel-mail"
    },
    "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/lel-mail",
    "agentPageUrl": "https://openagent3.xyz/skills/lel-mail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lel-mail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lel-mail/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": "Important Note If Running On the Cloud/VPS",
        "body": "Some cloud providers explicitly disable email leading to failiure of these scripts, services like tailscale will be needed to bypass these blocks"
      },
      {
        "title": "Setting up the Config File",
        "body": "Create ~/.config/lel-mail/config.json:\n\n[\n  {\n    \"provider\": \"gmail\",\n    \"config\": {\n        \"smtp\": {\n        \"server\": \"smtp.gmail.com\", //Default url\n        \"port\": 587 //Default port\n      },\n      \"imap\": {\n        \"server\": \"imap.gmail.com\", //Default url\n        \"port\": 993 //Default port\n      }\n    },\n    \"auth\": {\n      \"user\": \"example@gmail.com\",\n      \"password\": \"XXXX XXXX XXXX XXXX\" //Gmail Requires App Specific Password Rather Than Your Normal Password\n    },\n    \"can_send\": true,\n    \"can_read\": true\n  }\n]"
      },
      {
        "title": "Setting up cron job",
        "body": "Set up a simple cron job which runs the following command every 5 minutes with a randomised 30-90 second delay. Confirm with user the interval to be used:\n~/.openclaw/workspace/skills/lel-mail/scripts/email_sender_daemon.sh"
      },
      {
        "title": "Read Email",
        "body": "Make sure config exists, if not create it with input of user\nReference USERS.md (or whatever USER reference file your system uses) to see what email(s) you need to check unless user explicitly defines the email(s)\nRun the following command ~/.openclaw/workspace/skills/lel-mail/scripts/check_email.sh <USER_EMAIL>"
      },
      {
        "title": "Note, this script does not send the data directly but sends it to a scheduler which will automatically send it in approximately 5.5 minutes",
        "body": "Make sure you have the necessary data to send the email from the user, that includes sender, recipient and body, everything else is optional\nRun the following command ~/.openclaw/workspace/skills/lel-mail/scripts/email_send.sh --sender <sender> --recipient <recipient> --subject <subject> --body <body> [--cc ...] [--bcc ...] Note: if using BCC/CC note that CC/BCC are comma-separated lists"
      },
      {
        "title": "3. Manage Outgoing Queue",
        "body": "Outgoing emails are scheduled to send with a random delay (30-90 seconds). You can list or delete these before they are sent.\n\nList all queued emails:\n\npython3 ~/.openclaw/workspace/skills/lel-mail/scripts/manage_queue.py --list\n\nDelete a specific email by ID:\n\npython3 ~/.openclaw/workspace/skills/lel-mail/scripts/manage_queue.py --delete <ID>"
      },
      {
        "title": "Troubleshooting",
        "body": "Prompt user to assist when errors occur due to missing/invalid credentials/configuration\n\nIf emails aren't sending at all check that a cron job for the daemon is running"
      }
    ],
    "body": "Lel Mail\nImportant Note If Running On the Cloud/VPS\nSome cloud providers explicitly disable email leading to failiure of these scripts, services like tailscale will be needed to bypass these blocks\nSetup\nSetting up the Config File\n\nCreate ~/.config/lel-mail/config.json:\n\n[\n  {\n    \"provider\": \"gmail\",\n    \"config\": {\n        \"smtp\": {\n        \"server\": \"smtp.gmail.com\", //Default url\n        \"port\": 587 //Default port\n      },\n      \"imap\": {\n        \"server\": \"imap.gmail.com\", //Default url\n        \"port\": 993 //Default port\n      }\n    },\n    \"auth\": {\n      \"user\": \"example@gmail.com\",\n      \"password\": \"XXXX XXXX XXXX XXXX\" //Gmail Requires App Specific Password Rather Than Your Normal Password\n    },\n    \"can_send\": true,\n    \"can_read\": true\n  }\n]\n\nSetting up cron job\n\nSet up a simple cron job which runs the following command every 5 minutes with a randomised 30-90 second delay. Confirm with user the interval to be used: ~/.openclaw/workspace/skills/lel-mail/scripts/email_sender_daemon.sh\n\nQuick Reference\nRead Email\nMake sure config exists, if not create it with input of user\nReference USERS.md (or whatever USER reference file your system uses) to see what email(s) you need to check unless user explicitly defines the email(s)\nRun the following command ~/.openclaw/workspace/skills/lel-mail/scripts/check_email.sh <USER_EMAIL>\nSend Email\nNote, this script does not send the data directly but sends it to a scheduler which will automatically send it in approximately 5.5 minutes\nMake sure you have the necessary data to send the email from the user, that includes sender, recipient and body, everything else is optional\nRun the following command ~/.openclaw/workspace/skills/lel-mail/scripts/email_send.sh --sender <sender> --recipient <recipient> --subject <subject> --body <body> [--cc ...] [--bcc ...] Note: if using BCC/CC note that CC/BCC are comma-separated lists\n3. Manage Outgoing Queue\n\nOutgoing emails are scheduled to send with a random delay (30-90 seconds). You can list or delete these before they are sent.\n\nList all queued emails:\n\npython3 ~/.openclaw/workspace/skills/lel-mail/scripts/manage_queue.py --list\n\n\nDelete a specific email by ID:\n\npython3 ~/.openclaw/workspace/skills/lel-mail/scripts/manage_queue.py --delete <ID>\n\nTroubleshooting\n\nPrompt user to assist when errors occur due to missing/invalid credentials/configuration\n\nIf emails aren't sending at all check that a cron job for the daemon is running"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Leli1024/lel-mail",
    "publisherUrl": "https://clawhub.ai/Leli1024/lel-mail",
    "owner": "Leli1024",
    "version": "1.1.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lel-mail",
    "downloadUrl": "https://openagent3.xyz/downloads/lel-mail",
    "agentUrl": "https://openagent3.xyz/skills/lel-mail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lel-mail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lel-mail/agent.md"
  }
}