← 返回 Skills 市场
jsemldonado

Agent Burner

作者 jsemldonado · GitHub ↗ · v0.2.1 · MIT-0
cross-platform ✓ 安全检测通过
156
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install agent-burner
功能描述
Disposable email API. Use when you need a temporary email address -- receiving mail, reading contents, extracting URLs. Triggers include "create a temp email...
使用说明 (SKILL.md)

Agent Burner

Disposable email API. No signup, no API key.

Quick Start

# create an inbox
curl -X POST https://api.agentburner.com/inbox
# -> { "address": "[email protected]", "key": "550e8400-...", "ttl": 3600 }

# read emails
curl https://api.agentburner.com/inbox/550e8400-...
# -> { "address": "...", "entries": [{ "id": "...", "from": "...", "subject": "...", "receivedAt": "..." }] }

# get full email
curl https://api.agentburner.com/inbox/550e8400-.../EMAIL_ID
# -> { "body": "...", "html": "...", "urls": ["..."], ... }

# delete inbox (optional -- auto-expires)
curl -X DELETE https://api.agentburner.com/inbox/550e8400-...

API Reference

POST /inbox

Create a disposable inbox.

Body (optional): { "ttl": 60 }   // TTL in minutes, default 60, max 360
Response: { "address": string, "key": string, "ttl": number }
  • address -- the email address
  • key -- inbox key (UUID), the only credential you need
  • ttl -- inbox lifetime in seconds

Rate limited to 10 creations per minute per IP.

GET /inbox/:key

List received emails.

Response: { "address": string, "entries": [{ "id": string, "from": string, "subject": string, "receivedAt": string }] }

Returns 404 if key is expired or invalid.

GET /inbox/:key/:emailId

Get full email content.

Response: {
  "id": string,
  "from": string,
  "to": string[],
  "subject": string,
  "body": string,        // plain text
  "html": string | null, // raw HTML if present
  "urls": string[],      // all extracted URLs
  "receivedAt": string   // ISO 8601
}

DELETE /inbox/:key

Delete inbox and all emails. Optional -- inboxes auto-expire.

Response: { "ok": true }

Key Details

  • No auth required -- inbox key is the only credential
  • Multiple trusted .com domains
  • Auto-expiry -- 1 hour default, 6 hours max
  • 50 emails per inbox (oldest dropped first)
  • 10MB max email size
  • URLs extracted from both HTML and plain text

Errors

Status Meaning
404 Key expired or invalid
429 Rate limit exceeded
安全使用建议
This skill is coherent with its description, but consider these practical risks before installing: the agent will call a third-party API (api.agentburner.com) and any email content retrieved via that API will be processed by your agent — do not use it for sensitive inboxes or verification codes you care about unless you trust the provider. Because inbox keys grant access to received mail, treat keys as secrets in your workflows. Also note the service is public/no-auth; anyone with a key or the created address could access messages until the inbox expires. If you need stronger guarantees (auditability, retention, privacy), use a vetted paid provider or your own controlled service.
功能分析
Type: OpenClaw Skill Name: agent-burner Version: 0.2.1 The skill provides a legitimate disposable email API service for AI agents to create temporary inboxes and retrieve messages. Analysis of SKILL.md, README.md, and llms.txt reveals no evidence of malicious intent, prompt injection, or unauthorized data access; the instructions are strictly limited to functional API usage for the agentburner.com service.
能力评估
Purpose & Capability
Name/description describe a disposable email service and the SKILL.md only documents using https://api.agentburner.com endpoints to create/list/read/delete inboxes. There are no unexpected environment variables, binaries, or install steps required that would contradict the stated purpose.
Instruction Scope
Runtime instructions are limited to calling the service's REST endpoints and parsing returned fields (address, key, entries, urls, body, html). The SKILL.md does not instruct the agent to read local files, other env vars, or transmit data to unrelated endpoints.
Install Mechanism
No install spec and no code files — instruction-only skill. No downloads, no archive extraction, no third-party package installs. Lowest-risk install posture for a skill.
Credentials
The skill requests no environment variables, credentials, or config paths. The only credential concept is the inbox key returned by the API, which is consistent with the described service.
Persistence & Privilege
Skill is not always-enabled and uses default agent invocation settings. It does not request persistent system-wide configuration or modify other skills' settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-burner
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-burner 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.2.1
Add tags for skill discovery
v0.2.0
Disposable email API for agents. No signup, no API key.
元数据
Slug agent-burner
版本 0.2.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Agent Burner 是什么?

Disposable email API. Use when you need a temporary email address -- receiving mail, reading contents, extracting URLs. Triggers include "create a temp email... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 156 次。

如何安装 Agent Burner?

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

Agent Burner 是免费的吗?

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

Agent Burner 支持哪些平台?

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

谁开发了 Agent Burner?

由 jsemldonado(@jsemldonado)开发并维护,当前版本 v0.2.1。

💬 留言讨论