near-email-reporter
✓Verified·Scanned 2/18/2026
This skill sends NEAR transaction reports via email and stores SMTP credentials in ~/.near-email/config.json. It makes network requests to rpc.mainnet.near.org and includes CLI examples that run node scripts/emailer.js.
from clawhub.ai·va3cf4ca·8.6 KB·0 installs
Scanned from 1.0.0 at a3cf4ca · Transparency log ↗
$ vett add clawhub.ai/shaiss/near-email-reporter
NEAR Email Reporter Skill
Send NEAR transaction reports via email.
Installation
The skill is installed in ~/.openclaw/skills/near-email-reporter/
Usage
Setup Email Configuration
node scripts/emailer.js setup \
--host smtp.gmail.com \
--port 587 \
--user myemail@gmail.com \
--pass myapppassword \
--from myemail@gmail.com
Send a Report
node scripts/emailer.js report myaccount.near recipient@gmail.com
Set Up Alerts
node scripts/emailer.js alert myaccount.near 10.0
Schedule Reports
node scripts/emailer.js schedule myaccount.near "0 9 * * *"
Requirements
For actual email sending, install nodemailer:
npm install nodemailer
Notes
- Configuration is stored in
~/.near-email/config.json - For Gmail, use App Passwords: https://myaccount.google.com/apppasswords
- Configure script to use nodemailer for actual email sending
License
MIT