skills$openclaw/temp-mail
techwithanirudh9.5k

by techwithanirudh

temp-mail – OpenClaw Skill

temp-mail is an OpenClaw Skills integration for coding workflows. Temporary email helper backed by Vortex (vortex.email). Use when needing disposable addresses for signup flows: create a mailbox (random localpart), poll for messages, fetch and clear mailboxes.

9.5k stars4.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nametemp-mail
descriptionTemporary email helper backed by Vortex (vortex.email). Use when needing disposable addresses for signup flows: create a mailbox (random localpart), poll for messages, fetch and clear mailboxes. OpenClaw Skills integration.
ownertechwithanirudh
repositorytechwithanirudh/temp-mail
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @techwithanirudh/temp-mail
last updatedFeb 7, 2026

Maintainer

techwithanirudh

techwithanirudh

Maintains temp-mail in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
requirements.txt
70 B
temp_mail.py
3.6 KB
_meta.json
279 B
SKILL.md
2.1 KB
SKILL.md

name: temp-mail description: Temporary email helper backed by Vortex (vortex.email). Use when needing disposable addresses for signup flows: create a mailbox (random localpart), poll for messages, fetch and clear mailboxes. homepage: https://vortex.skyfall.dev metadata: {"clawdis":{"emoji":"✉️","requires":{"bins":["curl"]}}}

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:

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
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install temp-mail?

Run openclaw add @techwithanirudh/temp-mail in your terminal. This installs temp-mail into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/techwithanirudh/temp-mail. Review commits and README documentation before installing.