# Send Lel-Mail to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/lel-mail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lel-mail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/check_email.sh",
      "scripts/email_send.sh",
      "scripts/email_sender_daemon.sh",
      "scripts/manage_queue.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lel-mail",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T04:34:23.155Z",
      "expiresAt": "2026-05-09T04:34:23.155Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lel-mail",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lel-mail",
        "contentDisposition": "attachment; filename=\"lel-mail-1.1.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lel-mail"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Important Note If Running On the Cloud/VPS

Some cloud providers explicitly disable email leading to failiure of these scripts, services like tailscale will be needed to bypass these blocks

### Setting up the Config File

Create ~/.config/lel-mail/config.json:

[
  {
    "provider": "gmail",
    "config": {
        "smtp": {
        "server": "smtp.gmail.com", //Default url
        "port": 587 //Default port
      },
      "imap": {
        "server": "imap.gmail.com", //Default url
        "port": 993 //Default port
      }
    },
    "auth": {
      "user": "example@gmail.com",
      "password": "XXXX XXXX XXXX XXXX" //Gmail Requires App Specific Password Rather Than Your Normal Password
    },
    "can_send": true,
    "can_read": true
  }
]

### Setting up cron job

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:
~/.openclaw/workspace/skills/lel-mail/scripts/email_sender_daemon.sh

### Read Email

Make sure config exists, if not create it with input of user
Reference 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)
Run the following command ~/.openclaw/workspace/skills/lel-mail/scripts/check_email.sh <USER_EMAIL>

### 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

Make sure you have the necessary data to send the email from the user, that includes sender, recipient and body, everything else is optional
Run 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

### 3. Manage Outgoing Queue

Outgoing emails are scheduled to send with a random delay (30-90 seconds). You can list or delete these before they are sent.

List all queued emails:

python3 ~/.openclaw/workspace/skills/lel-mail/scripts/manage_queue.py --list

Delete a specific email by ID:

python3 ~/.openclaw/workspace/skills/lel-mail/scripts/manage_queue.py --delete <ID>

### Troubleshooting

Prompt user to assist when errors occur due to missing/invalid credentials/configuration

If emails aren't sending at all check that a cron job for the daemon is running
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Leli1024
- Version: 1.1.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T04:34:23.155Z
- Expires at: 2026-05-09T04:34:23.155Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lel-mail)
- [Send to Agent page](https://openagent3.xyz/skills/lel-mail/agent)
- [JSON manifest](https://openagent3.xyz/skills/lel-mail/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lel-mail/agent.md)
- [Download page](https://openagent3.xyz/downloads/lel-mail)