← 返回 Skills 市场
lnemail

LNemail

作者 LNemail · GitHub ↗ · v1.0.1
cross-platform ⚠ suspicious
637
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install lnemail
功能描述
Setup and use anonymous email accounts on LNemail.net using Bitcoin Lightning payments. Use when agents need email capabilities for 2FA, notifications, or co...
使用说明 (SKILL.md)

LNemail

Anonymous email accounts via Lightning Network. No KYC, no email required to sign up—just pay with Bitcoin.

Overview

LNemail provides fully functional email addresses for 1000 sats/year. Perfect for agents needing:

  • 2FA code reception
  • Anonymous communication
  • Bitcoin/Lightning service notifications
  • API-accessible email without identity requirements

Quick Start

1. Create Email Account

Create a Lightning invoice for email account creation:

# Create the account (returns payment hash)
curl -X POST https://lnemail.net/api/v1/email

# Response:
# {
#   "payment_hash": "abc123...",
#   "amount": 1000,
#   "currency": "SATS"
# }

2. Pay with Lightning

# Get the invoice from payment status endpoint
curl -X GET https://lnemail.net/api/v1/payment/PAYMENT_HASH

# Response when pending:
# {
#   "payment_hash": "abc123...",
#   "status": "pending",
#   "lightning_invoice": "lnbc10u1pj..."
# }

Pay the BOLT11 lightning_invoice using any Bitcoin Lightning Network wallet (e.g., Alby CLI).

3. Retrieve Credentials

After payment confirms (~seconds), check status again:

curl -X GET https://lnemail.net/api/v1/payment/PAYMENT_HASH

# Response when paid:
# {
#   "payment_hash": "abc123...",
#   "status": "paid",
#   "email": "[email protected]",
#   "access_token": "eyJhbG..."
# }

Save these credentials! Store them securely (e.g., ~/.lnemail/credentials.json).

Using Your Email

Check Inbox

curl -X GET https://lnemail.net/api/v1/emails \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Response:
# [
#   {
#     "id": "msg_123",
#     "from": "[email protected]",
#     "subject": "Your 2FA Code",
#     "received_at": "2024-01-15T10:30:00Z",
#     "has_attachments": false
#   }
# ]

Read Email Content

curl -X GET https://lnemail.net/api/v1/emails/EMAIL_ID \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Response:
# {
#   "id": "msg_123",
#   "from": "[email protected]",
#   "to": "[email protected]",
#   "subject": "Your 2FA Code",
#   "body": "Your verification code is: 123456",
#   "received_at": "2024-01-15T10:30:00Z"
# }

Note: HTML content is stripped for security; emails are plain text only.

Send Email

Sending requires a Lightning payment (~100 sats per email):

# Create send request
curl -X POST https://lnemail.net/api/v1/email/send \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -d '{
    "recipient": "[email protected]",
    "subject": "Hello",
    "body": "Message content here"
  }'

# Response:
# {
#   "payment_hash": "def456...",
#   "amount": 100,
#   "currency": "SATS"
# }

Pay the invoice, then check status:

curl -X GET https://lnemail.net/api/v1/email/send/status/PAYMENT_HASH

# Response when paid:
# {
#   "payment_hash": "def456...",
#   "status": "paid",
#   "message_id": "msg_sent_789"
# }

API Reference

Endpoint Method Auth Description
/email POST No Create account (returns payment hash)
/payment/{hash} GET No Check account payment status
/emails GET Bearer List inbox messages
/emails/{id} GET Bearer Get message content
/email/send POST Bearer Create send request (returns payment hash)
/email/send/status/{hash} GET No Check send payment status

Storage Recommendation

Store credentials in ~/.lnemail/credentials.json:

{
  "email": "[email protected]",
  "access_token": "eyJhbG..."
}

Note: The access_token is the only credential needed for ongoing operations. The payment_hash is only used during initial setup to check payment status — once you have the access_token, it can be discarded.

Pricing

Service Cost
Email account (1 year) 1000 sats
Send email ~100 sats
Receive email Free

Limitations

  • Plain text only (HTML stripped)
  • Small attachment support
  • 100 sats per outgoing email
  • Account valid for 1 year from payment

Use Cases

  • 2FA reception: Reliable email delivery for verification codes
  • Service notifications: Bitcoin/Lightning service alerts
  • Anonymous signup: Services requiring email without identity link
  • Agent-to-agent comms: Programmatic email between agents

References

安全使用建议
This skill is an instructions-only wrapper around the lnemail.net HTTP API. Before installing or using it: verify you trust lnemail.net (review their published API docs and privacy policy), understand that the access_token returned is sensitive (store it with strict file permissions or in a secrets manager), and be cautious with funds — payments are made over your Lightning wallet. If you want stronger containment, run the curl commands manually in an isolated environment or ephemeral container/wallet rather than granting an agent autonomous access to perform payments or store tokens on your primary system.
功能分析
Type: OpenClaw Skill Name: lnemail Version: 1.0.1 The skill is classified as suspicious due to instructions in `SKILL.md` that direct the AI agent to perform file system writes and handle sensitive credentials. Specifically, the agent is instructed to 'Save these credentials! Store them securely (e.g., `~/.lnemail/credentials.json`)', which involves writing an `access_token` to the local filesystem. While this action is presented as necessary for the skill's stated purpose (managing anonymous email accounts), it represents a significant prompt-injection vulnerability surface, as an agent capable of writing files based on markdown instructions could be exploited to write malicious content or exfiltrate data in other scenarios. Additionally, the skill involves external network communication with `https://lnemail.net` and financial transactions (Bitcoin Lightning payments), which are high-risk capabilities.
能力评估
Purpose & Capability
The name and description (anonymous email via Lightning) match the SKILL.md instructions: creating invoices, paying, retrieving an access token, listing/reading/sending messages. Nothing requested (no env vars, no installs) is disproportionate to this purpose.
Instruction Scope
Instructions are narrowly scoped to calling lnemail.net endpoints with curl, paying Lightning invoices, and storing an access_token locally. It does ask the agent/user to store credentials at ~/.lnemail/credentials.json but does not instruct reading unrelated system files or other credentials. Consider that saving tokens to disk is sensitive and file-permission guidance is not provided.
Install Mechanism
No install spec or code files are present — this is instruction-only. That minimizes supply-chain risk (nothing is downloaded or written by an installer).
Credentials
The skill declares no required environment variables or credentials and the instructions only require an access_token returned by the service. The mention of example wallets (Alby CLI) is illustrative and not required by the skill.
Persistence & Privilege
The skill does not request always:true, does not modify other skills or system settings, and has no built-in persistence beyond recommending a local credentials file. Autonomous invocation is allowed (platform default) but not combined with other red flags.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lnemail
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lnemail 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Updated documentation to clarify that payment must use a BOLT11 Lightning invoice. - Removed Alby CLI–specific command from payment instructions for greater wallet flexibility. - No functional changes to the API; update is documentation and setup related.
v1.0.0
Initial release of the lnemail skill. - Enables setup and use of anonymous email accounts via LNemail.net using Bitcoin Lightning payments. - Allows users to receive, read, and send emails without KYC or personal information. - Full API workflow provided for account creation, inbox access, and sending email (requires Lightning payment per action). - Credentials and account management designed for privacy—no external email or identity needed. - Pricing: 1000 sats/year for account, 100 sats per sent email, free to receive. - Intended for use cases such as 2FA, anonymous communication, and automated notifications.
元数据
Slug lnemail
版本 1.0.1
许可证
累计安装 0
当前安装数 0
历史版本数 2
常见问题

LNemail 是什么?

Setup and use anonymous email accounts on LNemail.net using Bitcoin Lightning payments. Use when agents need email capabilities for 2FA, notifications, or co... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 637 次。

如何安装 LNemail?

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

LNemail 是免费的吗?

是的,LNemail 完全免费(开源免费),可自由下载、安装和使用。

LNemail 支持哪些平台?

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

谁开发了 LNemail?

由 LNemail(@lnemail)开发并维护,当前版本 v1.0.1。

💬 留言讨论