Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

email邮件

Agent Skill

email 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,056

周安装

84

GitHub Stars

5

下载量

665
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:email(邮件)
来源仓库:https://github.com/merit-systems/agentcash-skills
仓库路径:skills/email
安装命令:
npx skills add https://github.com/merit-systems/agentcash-skills --skill email
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/merit-systems/agentcash-skills --skill email

简介

email 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • email 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Email with StableEmail

Send emails, manage inboxes, and run custom subdomains via x402 payments at https://stableemail.dev.

Setup

See rules/getting-started.md for installation and wallet setup.

Quick Reference

TaskEndpointPrice
Send email (shared)https://stableemail.dev/api/send$0.02
Buy subdomainhttps://stableemail.dev/api/subdomain/buy$5.00
Send from subdomainhttps://stableemail.dev/api/subdomain/send$0.005
Buy inboxhttps://stableemail.dev/api/inbox/buy$1.00
Send from inboxhttps://stableemail.dev/api/inbox/send$0.005
Top up inbox (30d)https://stableemail.dev/api/inbox/topup$1.00
Top up inbox (90d)https://stableemail.dev/api/inbox/topup/quarter$2.50
Top up inbox (365d)https://stableemail.dev/api/inbox/topup/year$8.00
List inbox messageshttps://stableemail.dev/api/inbox/messages$0.001
Read inbox messagehttps://stableemail.dev/api/inbox/messages/read$0.001
Create subdomain inboxhttps://stableemail.dev/api/subdomain/inbox/create$0.25
List subdomain messageshttps://stableemail.dev/api/subdomain/inbox/messages$0.001
Read subdomain messagehttps://stableemail.dev/api/subdomain/inbox/messages/read$0.001

Free Management Endpoints

TaskEndpoint
Subdomain statusGET https://stableemail.dev/api/subdomain/status?subdomain=name
Update subdomainPOST https://stableemail.dev/api/subdomain/update
Manage signersPOST https://stableemail.dev/api/subdomain/signers
Inbox statusGET https://stableemail.dev/api/inbox/status?username=name
Update inboxPOST https://stableemail.dev/api/inbox/update
Cancel inboxPOST https://stableemail.dev/api/inbox/cancel
Delete messagePOST https://stableemail.dev/api/inbox/messages/delete
List subdomain inboxesPOST https://stableemail.dev/api/subdomain/inbox/list
Delete subdomain inboxPOST https://stableemail.dev/api/subdomain/inbox/delete
Update subdomain inboxPOST https://stableemail.dev/api/subdomain/inbox/update
Delete subdomain messagePOST https://stableemail.dev/api/subdomain/inbox/messages/delete

Free endpoints use SIWX wallet authentication (handled automatically by npx agentcash@latest fetch).

Send an Email

Send from the shared relay@stableemail.dev address:

npx agentcash@latest fetch https://stableemail.dev/api/send -m POST -b '{
  "to": ["recipient@example.com"],
  "subject": "Hello from x402",
  "html": "<h1>Hi!</h1><p>This email was sent via x402 payments.</p>",
  "text": "Hi! This email was sent via x402 payments.",
  "replyTo": "your-real-email@example.com"
}'

Parameters:

  • to — array of recipient emails (required)
  • subject — email subject (required)
  • html and/or text — email body (at least one required)
  • replyTo — reply-to address (optional but recommended)
  • attachments — array of {content, contentType, filename} (optional, max 5, base64 encoded, ~3.75MB limit each)

Attachment example:

{
  "attachments": [{
    "content": "base64-encoded-content...",
    "contentType": "application/pdf",
    "filename": "report.pdf"
  }]
}

For calendar invites, use contentType: "text/calendar; method=REQUEST".

Forwarding Inbox

Buy username@stableemail.dev for $1/month. Emails are forwarded to your real address and/or retained for programmatic access.

Buy an Inbox

npx agentcash@latest fetch https://stableemail.dev/api/inbox/buy -m POST -b '{
  "username": "alice",
  "forwardTo": "alice@gmail.com"
}'

Omit forwardTo to use as a programmatic-only mailbox (retainMessages auto-enabled).

Send from Inbox

npx agentcash@latest fetch https://stableemail.dev/api/inbox/send -m POST -b '{
  "username": "alice",
  "to": ["bob@example.com"],
  "subject": "Hello",
  "html": "<p>Hi Bob</p>",
  "text": "Hi Bob"
}'

Top Up Inbox

npx agentcash@latest fetch https://stableemail.dev/api/inbox/topup -m POST -b '{"username": "alice"}'

Anyone can top up any inbox. Top-ups stack. Bulk discounts: 90 days/$2.50 (17% off), 365 days/$8 (34% off).

Cancel and Refund

npx agentcash@latest fetch https://stableemail.dev/api/inbox/cancel -m POST -b '{"username": "alice"}'

Returns pro-rata USDC refund on-chain automatically.

Read Inbox Messages

Enable message retention, then read messages programmatically.

Enable Retention

npx agentcash@latest fetch https://stableemail.dev/api/inbox/update -m POST -b '{"username": "alice", "retainMessages": true}'

List Messages

npx agentcash@latest fetch https://stableemail.dev/api/inbox/messages -m POST -b '{"username": "alice", "limit": 20}'

Read a Message

npx agentcash@latest fetch https://stableemail.dev/api/inbox/messages/read -m POST -b '{"messageId": "msg_abc123"}'

Returns full message with from, to, subject, date, text, html, and attachments.

Custom Subdomains

Buy yourname.stableemail.dev for $5 one-time. Send from any address on your subdomain for $0.005/email.

Buy a Subdomain

npx agentcash@latest fetch https://stableemail.dev/api/subdomain/buy -m POST -b '{"subdomain": "yourname"}'

Rules: 3-30 chars, lowercase alphanumeric + hyphens. DNS verification takes ~5 minutes.

Send from Subdomain

npx agentcash@latest fetch https://stableemail.dev/api/subdomain/send -m POST -b '{
  "from": "support@yourname.stableemail.dev",
  "to": ["customer@example.com"],
  "subject": "Your order confirmation",
  "html": "<p>Thank you for your order!</p>"
}'

Create Subdomain Inboxes

Create per-address inboxes on your subdomain ($0.25 each, max 100):

npx agentcash@latest fetch https://stableemail.dev/api/subdomain/inbox/create -m POST -b '{
  "subdomain": "yourname",
  "localPart": "support",
  "forwardTo": "team@company.com"
}'

Catch-All Forwarding

Forward all unmatched addresses on your subdomain:

npx agentcash@latest fetch https://stableemail.dev/api/subdomain/update -m POST -b '{"subdomain": "yourname", "catchAllForwardTo": "catch-all@company.com"}'

Manage Authorized Signers

Allow other wallets to send from your subdomain:

npx agentcash@latest fetch https://stableemail.dev/api/subdomain/signers -m POST -b '{"action": "add", "subdomain": "yourname", "walletAddress": "0x..."}'

Images in Emails

Host images on StableUpload or AgentUpload, then reference in HTML:

<img src="https://f.stableupload.dev/abc/photo.png" alt="Photo" />

Most email clients strip data URIs — always use hosted URLs.

Workflows

Quick Send

  • (Optional) Check balance: npx agentcash@latest balance
  • Send email via /api/send
  • Confirm delivery via messageId

Set Up Professional Email

  • Buy subdomain ($5)
  • Wait for DNS verification (~5 min)
  • Create inboxes for team members ($0.25 each)
  • Set up catch-all forwarding
  • Send from custom addresses ($0.005 each)

Programmatic Mailbox

  • Buy inbox with no forwardTo ($1)
  • Messages are retained automatically
  • List and read messages via API ($0.001 each)
  • Delete messages when processed (free)

Cost Estimation

TaskCost
Send one email (shared)$0.02
Send one email (subdomain/inbox)$0.005
Buy inbox (30 days)$1.00
Buy inbox (1 year)$1.00 + $8.00 = $9.00
Buy subdomain + 5 inboxes$5.00 + $1.25 = $6.25
Read 100 messages$0.10

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.32%
按下载量换算228

Claude

30.33%
按下载量换算202

Cursor

19.85%
按下载量换算132

Gemini CLI

10.55%
按下载量换算70

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills