返回顶部
c

cloudflare-mail-address-creator

create one or many ordinary mailbox addresses in a cloudflare temporary mail system through the /admin/new_address admin api and return structured results. use when openclaw is asked to create mailbox addresses through the backend instead of the web ui, including requests such as create t2@suilong.online, create 10 mailboxes, add a mailbox in my cloudflare temp mail system, or use the cloudflare mail admin api to create addresses.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
82
下载量
0
收藏
概述
安装方式
版本历史

cloudflare-mail-address-creator

# Cloudflare Mail Address Creator Use this skill to create ordinary mailbox addresses through `https://mail-api.suilong.online/admin/new_address`. ## Workflow 1. Collect or infer `name`, `domain`, and `enablePrefix`. 2. Default `enablePrefix` to `true` when the user does not specify it. 3. If the user gives a full address such as `t2@suilong.online`, split it into `name=t2` and `domain=suilong.online`. 4. Never hardcode real credentials in the skill. Read them from runtime environment variables or pass them as CLI flags. 5. Run `python3 scripts/create_address.py` for single or batch creation. 6. Return the script's JSON output directly unless the user asks for a reformatted summary. 7. Preserve the normalized statuses: `created`, `already_exists`, `auth_error`, `error`. 8. If local validation fails, fix the input before attempting the API call again. 9. Use `--output-format csv` and optionally `--output-file <path>` when the user asks for exportable results. ## Commands Single address: ```bash python3 scripts/create_address.py \ --name t2 \ --domain suilong.online \ --admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH" ``` Single full address: ```bash python3 scripts/create_address.py \ --name t2@suilong.online \ --admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH" ``` Batch addresses from a comma-separated list: ```bash python3 scripts/create_address.py \ --names alice,bob,charlie \ --domain suilong.online \ --enable-prefix true \ --admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH" ``` Batch addresses from a file: ```bash python3 scripts/create_address.py \ --names-file ./names.txt \ --domain suilong.online \ --admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH" ``` Export batch results as CSV: ```bash python3 scripts/create_address.py \ --names alice,bob,charlie \ --domain suilong.online \ --output-format csv \ --output-file ./created-addresses.csv \ --admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH" ``` ## Runtime Environment Prefer environment variables for secrets: - `CLOUDFLARE_MAIL_ADMIN_AUTH` - `CLOUDFLARE_MAIL_BEARER_TOKEN` - `CLOUDFLARE_MAIL_FINGERPRINT` - `CLOUDFLARE_MAIL_LANG` - `CLOUDFLARE_MAIL_USER_TOKEN` - `CLOUDFLARE_MAIL_API_URL` ## Supporting Files - Read `references/api.md` for the endpoint contract and error mapping. - Read `references/examples.md` for example prompts and outputs. ## OpenClaw Install Notes Install this skill into an OpenClaw workspace under `skills/cloudflare-mail-address-creator/`, or globally under `~/.moltbot/skills/cloudflare-mail-address-creator/`. This package intentionally keeps only the OpenClaw-compatible skill files: `SKILL.md`, `scripts/`, and `references/`.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 mail-addr-creator-1776023897 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 mail-addr-creator-1776023897 技能

通过命令行安装

skillhub install mail-addr-creator-1776023897

下载 Zip 包

⬇ 下载 cloudflare-mail-address-creator v1.0.0

文件大小: 8.87 KB | 发布时间: 2026-4-13 10:55

v1.0.0 最新 2026-4-13 10:55
Initial release of Cloudflare Mail Address Creator skill.

- Enables creation of one or many mailbox addresses via the Cloudflare temp mail system admin API.
- Supports single and batch address creation, including from files and CSV export.
- Accepts both full email addresses and separated name/domain inputs.
- Utilizes environment variables for sensitive authentication information.
- Provides clear status reporting for address creation outcomes.
- Includes documentation for workflow, CLI usage, and OpenClaw installation.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部