# Send temp-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": "temp-mail",
    "name": "temp-mail",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/techwithanirudh/temp-mail",
    "canonicalUrl": "https://clawhub.ai/techwithanirudh/temp-mail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/temp-mail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=temp-mail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/requirements.txt",
      "scripts/temp_mail.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "temp-mail",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T18:01:02.504Z",
      "expiresAt": "2026-05-19T18:01:02.504Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=temp-mail",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=temp-mail",
        "contentDisposition": "attachment; filename=\"temp-mail-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "temp-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/temp-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/temp-mail",
    "downloadUrl": "https://openagent3.xyz/downloads/temp-mail",
    "agentUrl": "https://openagent3.xyz/skills/temp-mail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/temp-mail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/temp-mail/agent.md"
  }
}
```
## Documentation

### temp-mail skill

This skill provides a Python CLI script to interact with the hosted Vortex API (GET /emails/{email}, DELETE /emails/{email}/clear).

Usage examples (scripts are in scripts/):

create: generates a random localpart and prints an address for the provided domain
fetch: queries the Vortex HTTP API to list messages for an address
poll: wait until messages arrive or timeout
clear: delete all messages for an address

Run with uv: uv run {baseDir}/scripts/temp_mail.py (script includes shebang and metadata header similar to the hn skill)

Examples:

# generate a random address
uv run {baseDir}/scripts/temp_mail.py create

# fetch messages for an address
uv run {baseDir}/scripts/temp_mail.py fetch alice@dash.dino.icu

# poll until messages arrive (timeout 60s)
uv run {baseDir}/scripts/temp_mail.py poll alice@dash.dino.icu --timeout 60

# clear mailbox
uv run {baseDir}/scripts/temp_mail.py clear alice@dash.dino.icu

Defaults:

VORTEX_URL: https://vtx-api.skyfall.dev
default domain: skyfall.dev (override with VORTEX_DOMAIN env var)

Install

# create a venv and install deps (unix)
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r scripts/requirements.txt

# or using uv which creates an ephemeral venv for you, e.g.
uv run {baseDir}/scripts/temp_mail.py create

Notes:

script uses httpx for requests; rich is optional and omitted from requirements
random username generation mirrors the frontend behavior (lowercase alphanumeric), attempted to replicate falso randUserName behavior
hosted instance includes multiple domains, e.g., dash.dino.icu, skyfall.dev, etc. When creating addresses, choose a domain from that list or let the script use the default
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: techwithanirudh
- Version: 1.0.1
## 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-12T18:01:02.504Z
- Expires at: 2026-05-19T18:01:02.504Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/temp-mail)
- [Send to Agent page](https://openagent3.xyz/skills/temp-mail/agent)
- [JSON manifest](https://openagent3.xyz/skills/temp-mail/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/temp-mail/agent.md)
- [Download page](https://openagent3.xyz/downloads/temp-mail)