/install mail-addr-creator
Cloudflare Mail Address Creator
Use this skill to create ordinary mailbox addresses through https://mail-api.suilong.online/admin/new_address.
Workflow
- Collect or infer
name,domain, andenablePrefix. - Default
enablePrefixtotruewhen the user does not specify it. - If the user gives a full address such as
[email protected], split it intoname=t2anddomain=suilong.online. - Never hardcode real credentials in the skill. Read them from runtime environment variables or pass them as CLI flags.
- Run
python3 scripts/create_address.pyfor single or batch creation. - Return the script's JSON output directly unless the user asks for a reformatted summary.
- Preserve the normalized statuses:
created,already_exists,auth_error,error. - If local validation fails, fix the input before attempting the API call again.
- Use
--output-format csvand optionally--output-file \x3Cpath>when the user asks for exportable results.
Commands
Single address:
python3 scripts/create_address.py \
--name t2 \
--domain suilong.online \
--admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH"
Single full address:
python3 scripts/create_address.py \
--name [email protected] \
--admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH"
Batch addresses from a comma-separated list:
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:
python3 scripts/create_address.py \
--names-file ./names.txt \
--domain suilong.online \
--admin-auth "$CLOUDFLARE_MAIL_ADMIN_AUTH"
Export batch results as CSV:
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_AUTHCLOUDFLARE_MAIL_BEARER_TOKENCLOUDFLARE_MAIL_FINGERPRINTCLOUDFLARE_MAIL_LANGCLOUDFLARE_MAIL_USER_TOKENCLOUDFLARE_MAIL_API_URL
Supporting Files
- Read
references/api.mdfor the endpoint contract and error mapping. - Read
references/examples.mdfor 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/.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install mail-addr-creator - 安装完成后,直接呼叫该 Skill 的名称或使用
/mail-addr-creator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
mail-addr-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. u... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 132 次。
如何安装 mail-addr-creator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install mail-addr-creator」即可一键安装,无需额外配置。
mail-addr-creator 是免费的吗?
是的,mail-addr-creator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
mail-addr-creator 支持哪些平台?
mail-addr-creator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 mail-addr-creator?
由 jcwang502(@jcwang502)开发并维护,当前版本 v1.0.0。