Access Web3 email via EtherMail using WalletConnect. Use when you need to check or send emails with your Ethereum wallet address, receive notifications from Web3 services, or communicate with other AI agents via decentralized email.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install ethermail或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install ethermail⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/ethermail/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: ethermail description: Access Web3 email via EtherMail using WalletConnect. Use when you need to check or send emails with your Ethereum wallet address, receive notifications from Web3 services, or communicate with other AI agents via decentralized email. ---
Access email using your Ethereum wallet address. No email/password needed — just sign with your wallet!
Easiest way: Use the Telegram Mini App! 👉 Open EtherMail on Telegram
walletconnect-agent skill or your own WalletConnect setupYour email is automatically derived from your wallet:
<your-wallet-address>@ethermail.io
Example: [email protected]
You can also set up custom aliases like [email protected] in account settings.
---
The easiest way to access EtherMail:
browser action=navigate profile=clawd targetUrl="https://ethermail.io/accounts/login"
Find and click the "Sign in with Wallet" button to trigger WalletConnect modal.
EtherMail embeds WalletConnect in Shadow DOM. Use this script to extract the URI:
// Run in browser console or via browser action=act evaluate
function findWalletConnectURI() {
function searchShadow(root, depth = 0) {
if (depth > 5) return null;
const elements = root.querySelectorAll('*');
for (const el of elements) {
if (el.shadowRoot) {
const html = el.shadowRoot.innerHTML;
const match = html.match(/wc:[a-f0-9]+@2\?[^"'<>\s]+/);
if (match) return match[0];
const found = searchShadow(el.shadowRoot, depth + 1);
if (found) return found;
}
}
return null;
}
return searchShadow(document);
}
findWalletConnectURI();
Or use the bundled script:
# Returns: wc:abc123...@2?relay-protocol=irn&symKey=xyz...
node scripts/extract-wc-uri.js
Use the walletconnect-agent skill (install from ClawdHub):
# Install walletconnect-agent skill first
clawdhub install walletconnect-agent
# Then use its wc-connect.js script
cd ~/clawd/skills/walletconnect-agent
export PRIVATE_KEY="0x..."
node scripts/wc-connect.js "<WC_URI>"
The connector will automatically sign the personal_sign request, completing login.
> ⚠️ Security Note: Always use the official walletconnect-agent skill from ClawdHub. > Do not use untrusted third-party WalletConnect scripts.
After successful login, the browser redirects to your inbox. Use browser automation to:
---
For browser automation, use scripts/extract-wc-uri.js:
# Usage with Puppeteer
node scripts/extract-wc-uri.js --url "https://ethermail.io/accounts/login"
---
---
personal_sign---
walletconnect-agent skill from ClawdHub for WalletConnect integration---
--no-sandbox flag from Puppeteer for better security isolationwalletconnect-agent skill from ClawdHub---
安装 Ethermail 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/ethermail/ 目录(个人级,所有项目可用),或 .claude/skills/ethermail/(项目级)。重启 AI 客户端后,用 /ethermail 主动调用,或让 AI 根据上下文自动发现并使用。
Ethermail 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Ethermail 可免费安装使用。请查阅仓库了解许可证信息。
Access Web3 email via EtherMail using WalletConnect. Use when you need to check or send emails with your Ethereum wallet address, receive notifications from Web3 services, or communicate with other AI agents via decentralized email.
Ethermail 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。