maxhub-temp-mail

ReviewAudited by ClawScan on May 13, 2026.

Overview

The skill mostly matches a temporary-email service, but the bundled code exposes a generic provider request helper that can use your API key beyond the documented temp-mail endpoints.

Review this skill before installing. Only use it if you trust MaxHub/aconfig.cn, provide a dedicated API key where possible, set clear limits before any polling or chained checks, and avoid using temporary mailboxes for sensitive personal information.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

If this exported helper is available to the agent or other code, it could use the user's provider API key for aconfig.cn endpoints outside the documented temp-mail workflow, potentially causing unexpected data access or charges.

Why it was flagged

The low-level request function accepts an arbitrary path and method, attaches the MAXHUB_API_KEY, and is exported, while the skill is documented as only three temp-mail APIs.

Skill content
async function _rawRequest(path, params = {}, method = 'GET') { const url = `${BASE_URL}${path}`; ... [AUTH_HEADER]: resolveCredential() ... } ... module.exports = { request, callApi, API_REGISTRY, ... }
Recommendation

Restrict exported calls to the API_REGISTRY temp-mail endpoints, enforce an allowlist/prefix check, and require explicit user approval for any non-documented provider API call.

What this means

Anyone using the skill needs to provide a MaxHub credential, and API calls may consume account balance.

Why it was flagged

The skill requires a provider API key, which is expected for MaxHub access but still grants account/billing authority.

Skill content
| MAXHUB_API_KEY | 是 | MaxHub API密钥,访问 https://www.aconfig.cn 注册获取 |
Recommendation

Use a dedicated, least-privileged API key if available, monitor usage, and avoid sharing the key with unrelated skills or agents.

What this means

Unbounded polling could create repeated provider calls and small recurring charges.

Why it was flagged

The skill describes periodic inbox polling, which is purpose-aligned for waiting on mail but does not specify a polling interval, maximum duration, or stop condition in this artifact.

Skill content
创建邮箱后,定时调用收件箱API检查新邮件,发现新邮件后可调用详情API查看完整内容
Recommendation

Before polling, ask the user to confirm the interval, maximum attempts, and when to stop.

What this means

Temporary email data may remain in process memory for a short time and repeated identical requests may return cached data.

Why it was flagged

The optimization layer caches API responses briefly; temp-mail responses may include mailbox tokens, inbox metadata, or message contents.

Skill content
cache: { maxSize: 50, defaultTTL: 3 * 60 * 1000 }
Recommendation

Do not use the skill for sensitive personal information, and clear/restart the agent session if temporary mailbox contents should not remain in memory.

What this means

Users may be confused about what the skill actually does, although the implemented API endpoints are temp-mail focused.

Why it was flagged

This description includes unrelated video search/user analysis/trending capabilities, which do not match the temp-mail API catalog.

Skill content
临时邮箱服务——临时邮箱、temp mail、隐私邮箱等平台数据的智能采集与分析工具,支持视频搜索、用户分析、热门趋势追踪等能力
Recommendation

Correct the documentation and remove unrelated boilerplate so users can accurately judge the skill's behavior.