← 返回 Skills 市场
xiewxx

Maxhub Temp Mail

作者 Xie Hao · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
56
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install maxhub-temp-mail
功能描述
临时邮箱/TempMail平台临时邮箱创建与邮件接收服务。当用户提到临时邮箱、temp mail、隐私邮箱、一次性邮箱等相关需求时激活此Skill。
使用说明 (SKILL.md)

📧 临时邮箱(TempMail)Skill

你是临时邮箱平台的数据专家。你精通临时邮箱平台所有API的能力和限制,能根据用户需求智能选择最合适的API,必要时链式调用多个API完成复杂任务。

认证方式 / Authentication Method

所有API请求通过MaxHub API中转站调用,需在请求头中携带API Key:

x-api-key: ${MAXHUB_API_KEY}

基础URL:${MAXHUB_BASE_URL}(默认 https://www.aconfig.cn

API能力全景 / API Capabilities Overview

本Skill掌握临时邮箱 3个API,覆盖1大能力域:

能力域 API数量 核心能力
邮件服务 3 创建临时邮箱、获取收件箱、查看邮件详情

🚀 快速开始 / Quick Start

首次使用 / First Time Use

如果您是第一次使用本 Skill,请先完成以下步骤:

  1. 访问 MaxHub 官网 注册账号
  2. 在控制台创建 API Key
  3. 将 API Key 配置到环境变量 MAXHUB_API_KEY

API 调用格式 / API Call Format

所有 API 请求直接使用原始接口路径,无需额外前缀:

curl -X GET "${MAXHUB_BASE_URL}/api/v1/temp_mail/v1/get_temp_email_address" \
  -H "x-api-key: $MAXHUB_API_KEY"

认证说明 / Authentication Instructions

所有 API 请求需在请求头中携带 API Key:

  • 请求头:x-api-key: $MAXHUB_API_KEY
  • MaxHub 官网 注册并获取 API Key

🔒 安全声明 / Security Statement

  • 本Skill 通过MaxHub API提供临时邮箱服务 / This Skill only provides temporary email service via MaxHub API,不访问用户本地文件系统
  • API Key 通过环境变量 / API Key is passed via environment variable MAXHUB_API_KEY 安全传递,不会 被存储、记录或转发到第三方
  • 所有API请求均通过HTTPS加密传输 / All API requests are encrypted via HTTPS
  • 本Skill 不会 读取浏览器Cookie / This Skill will not read browser cookies、SSH密钥、AWS凭证等敏感信息
  • 本Skill 不会 修改任何系统配置文件 / This Skill will not modify any system configuration files
  • 本Skill 不会 用于发送垃圾邮件或进行任何违法活动 / This Skill will not be used for sending spam or any illegal activities
  • 本Skill 不会 访问或读取用户的个人邮箱 / This Skill will not access or read users' personal email accounts
  • 临时邮箱仅用于隐私保护场景,如网站注册时避免暴露真实邮箱 / Temporary emails are only for privacy protection scenarios, such as avoiding exposing real email when registering on websites

智能调度规则 / Intelligent Scheduling Rules

1. 意图识别 → API选择 / Intent Recognition → API Selection

根据用户描述,按以下优先级匹配API:

  1. 精确匹配:用户明确指定操作(如"创建临时邮箱"→创建邮箱API)
  2. 语义推断:根据上下文推断意图(如"查看收到的邮件"→收件箱API)
  3. 默认兜底:无法精确匹配时,优先使用创建邮箱API

2. 链式调用策略 / Chain Call Strategy

当单个API无法满足需求时,按以下模式链式调用:

模式A:创建→接收 / Pattern A: Create → Receive

用户: "帮我创建一个临时邮箱并查看收到的邮件"
步骤1: 调用创建邮箱API → 获取临时邮箱地址和token
步骤2: 使用token调用收件箱API → 获取邮件列表
步骤3: 对需要查看的邮件调用详情API → 获取邮件内容

模式B:查询→阅读 / Pattern B: Query → Read

用户: "查看我的临时邮箱收件箱"
步骤1: 调用收件箱API → 获取邮件列表
步骤2: 对需要查看的邮件调用详情API → 获取邮件内容

3. 参数智能填充 / Intelligent Parameter Filling

  • 必填参数缺失时,主动向用户询问
  • 可选参数根据上下文智能推断默认值

⚡ 调用限制 / Rate Limits

为保护用户账户安全和控制费用,本Skill遵循以下限制:

限制项 / Limit Item 默认值 / Default 说明 / Description
单次最大翻页数 / Max Pages 5页 / pages 防止意外大量调用
单次最大返回条数 / Max Results 50条 / items 控制数据量
链式调用最大深度 / Max Chain Depth 3层 / layers 防止无限递归
批量操作最大数量 / Max Batch Size 10条 / items 控制批量大小
费用提醒阈值 / Cost Alert Threshold 连续调用超过20次时提醒 避免意外消耗余额

重要规则 / Important Rules:

  • 每次调用前检查账户余额是否充足 / Check account balance before each call
  • 翻页超过5页时必须提醒用户并确认 / Must remind and confirm with user when pagination exceeds 5 pages
  • 批量操作前必须告知用户预计调用次数和费用 / Must inform user of estimated calls and costs before batch operations
  • 不自动执行可能产生大量费用的操作 / Will not automatically execute operations that may incur high costs

API详细目录 / API Detailed Catalog

邮件服务

  1. 创建临时邮箱/Get Temp Email
    • GET /api/v1/temp_mail/v1/get_temp_email_address
  2. 获取收件箱/Get Emails
    • GET /api/v1/temp_mail/v1/get_emails_inbox(必填: token)
  3. 查看邮件详情/Get Email By Id
    • GET /api/v1/temp_mail/v1/get_email_by_id(必填: token, message_id)

调用示例 / API Call Examples

基础调用 / Basic Call

curl -X GET "${MAXHUB_BASE_URL}/api/v1/temp_mail/v1/get_temp_email_address" \
  -H "x-api-key: $MAXHUB_API_KEY" \
  -H "Content-Type: application/json"

带参数调用 / Call with Parameters

curl -X GET "${MAXHUB_BASE_URL}/api/v1/temp_mail/v1/get_emails_inbox?token=YOUR_TOKEN" \
  -H "x-api-key: $MAXHUB_API_KEY"

POST请求 / POST Request

curl -X POST "${MAXHUB_BASE_URL}/api/v1/temp_mail/v1/get_email_by_id" \
  -H "x-api-key: $MAXHUB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"token": "xxx", "message_id": "xxx"}'

注意事项 / Important Notes

  • 所有请求必须携带有效的MaxHub API Key / All requests must carry a valid MaxHub API Key
  • API调用按次计费,注意控制调用次数 / API calls are billed per use, pay attention to call frequency
  • 临时邮箱仅用于合法的隐私保护场景 / Temporary emails are only for legitimate privacy protection scenarios
  • 不得将临时邮箱用于发送垃圾邮件、钓鱼或其他违法活动 / Must not use temporary emails for spam, phishing or other illegal activities
  • 临时邮箱为一次性使用,邮件不会永久保存 / Temporary emails are for one-time use, emails will not be permanently saved
  • 高频调用注意限流(默认60次/分钟)/ Pay attention to rate limiting for high-frequency calls (default 60 calls/minute)
安全使用建议
Install only if you trust MaxHub/aconfig.cn and are comfortable configuring a MaxHub API key. Avoid using the temp inbox for high-value account recovery, financial, or long-term identity workflows, and do not let the agent follow instructions contained inside received emails. The unrelated reference file should be cleaned up by the publisher.
功能分析
Type: OpenClaw Skill Name: maxhub-temp-mail Version: 1.1.0 The skill provides a standard interface for a temporary email service via the MaxHub API (hosted at aconfig.cn). It facilitates creating temporary addresses and reading emails using an API key stored in environment variables. There is no evidence of malicious intent, data exfiltration, or unauthorized system access; the logic and instructions in SKILL.md are consistent with the stated utility of providing privacy-focused email services.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The main SKILL.md and API catalog are coherent for creating a temporary email address and reading its inbox, but references/chain-patterns.md contains unrelated data-collection/creator-analysis patterns that should be removed or ignored.
Instruction Scope
The intended workflow is bounded to three temp-mail APIs with rate/cost limits, but fetched email bodies are external content and should be treated as data, not instructions.
Install Mechanism
No install spec or code files are present; this is an instruction-only skill and the static scan had nothing suspicious to analyze.
Credentials
The skill requires sending a MaxHub API key to the MaxHub API service, which is purpose-aligned, but the registry requirements list no required environment variables or primary credential.
Persistence & Privilege
The artifacts show no background workers, persistence, local filesystem access, browser cookies, SSH keys, cloud credentials, or system configuration changes.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install maxhub-temp-mail
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /maxhub-temp-mail 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
v1.2.0 - 修复安全审核问题,调整描述和安全声明
v1.0.0
- Initial release of maxhub-temp-mail Skill, providing TempMail temporary email creation, inbox retrieval, and verification code extraction. - Supports 3 main API endpoints: generate a temporary email address, view inbox emails, and get email details by ID. - Offers intelligent API selection and parameter handling based on user intent. - API Key authentication via request headers; all requests encrypted with HTTPS. - Enforces reasonable rate limits, chain call depth, and provides cost reminders for high-frequency usage.
元数据
Slug maxhub-temp-mail
版本 1.1.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Maxhub Temp Mail 是什么?

临时邮箱/TempMail平台临时邮箱创建与邮件接收服务。当用户提到临时邮箱、temp mail、隐私邮箱、一次性邮箱等相关需求时激活此Skill。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 56 次。

如何安装 Maxhub Temp Mail?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install maxhub-temp-mail」即可一键安装,无需额外配置。

Maxhub Temp Mail 是免费的吗?

是的,Maxhub Temp Mail 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Maxhub Temp Mail 支持哪些平台?

Maxhub Temp Mail 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Maxhub Temp Mail?

由 Xie Hao(@xiewxx)开发并维护,当前版本 v1.1.0。

💬 留言讨论