AgentStack
SKILL verified MIT Self-run

BaseMail

skill-daaab-agent-skills-basemail Β· by dAAAb

πŸ“¬ BaseMail - Email for AI Agents. Give your agent a real email (yourname@basemail.ai). Register for services, submit forms, receive confirmations β€” without bothering your human. No CAPTCHA, no passwords, just wallet signature.

β€” No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-daaab-agent-skills-basemail

βœ“ scanned Β· βœ“ verified β€” works with Claude Code, Cursor, and more.

Security review

βœ“ Passed

No issues found. Passed automated security review. Β· v0.1.0 How review works β†’

  • βœ“ Prompt-injection patterns
  • βœ“ Secret / credential exfiltration
  • βœ“ Dangerous shell & filesystem operations
  • βœ“ Untrusted network calls
  • βœ“ Known-malicious package signatures

What it can access

  • βœ“ Network access No
  • βœ“ Filesystem access No
  • βœ“ Shell / process execution No
  • βœ“ Environment & secrets No
  • βœ“ Dynamic code execution No

From automated source analysis of v0.1.0. β€œUsed” means the capability is present in the source β€” more access means more to trust, not that it’s unsafe.

Are you the author of BaseMail? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

πŸ“¬ BaseMail - Email for AI Agents

> Your agent can handle its own email. No need to bother your human.

TL;DR: Get yourname@basemail.ai with your Basename. Sign with wallet, send instantly.

Why BaseMail?

  • Autonomous registration β€” Sign up for services, events, newsletters without human help
  • Form submissions β€” Your agent can receive confirmation emails directly
  • No CAPTCHA β€” Wallet signature = proof of identity
  • No passwords β€” Cryptographic auth only

BaseMail gives AI agents verifiable email identities on Base chain:

  • ✨ Basename holders β†’ yourname@basemail.ai
  • πŸ”— Others β†’ 0xwallet@basemail.ai

πŸ” Wallet Setup (Choose One)

Option A: Environment Variable (Recommended βœ…)

If you already have a wallet, just set the env var β€” no private key stored to file:

export BASEMAIL_PRIVATE_KEY="0x..."
node scripts/register.js

> βœ… Safest method: private key exists only in memory.


Option B: Specify Wallet Path

Point to your existing private key file:

node scripts/register.js --wallet /path/to/your/private-key

> βœ… Uses your existing wallet, no copying.


Option C: Managed Mode (Beginners)

Let the skill generate and manage a wallet for you:

node scripts/setup.js --managed
node scripts/register.js

> βœ… Default: Encrypted β€” Private key protected with AES-256-GCM > - You'll set a password during setup > - Password required each time you use the wallet > - Mnemonic displayed once for manual backup (not auto-saved)

Unencrypted Storage (⚠️ Less Secure)
node scripts/setup.js --managed --no-encrypt

> ⚠️ Only use in trusted environments where you control machine access.


⚠️ Security Guidelines

  1. Never commit private keys to git
  2. Never share private keys or mnemonics publicly
  3. Never add ~/.basemail/ to version control
  4. Private key files should be chmod 600 (owner read/write only)
  5. Prefer environment variables (Option A) over file storage

Recommended .gitignore

# BaseMail - NEVER commit!
.basemail/
**/private-key
**/private-key.enc
*.mnemonic
*.mnemonic.backup

πŸš€ Quick Start

1️⃣ Register

# Using environment variable
export BASEMAIL_PRIVATE_KEY="0x..."
node scripts/register.js

# Or with Basename
node scripts/register.js --basename yourname.base.eth

2️⃣ Send Email

node scripts/send.js "friend@basemail.ai" "Hello!" "Nice to meet you 🦞"

3️⃣ Check Inbox

node scripts/inbox.js              # List emails
node scripts/inbox.js    # Read specific email

πŸ“¦ Scripts

| Script | Purpose | Needs Private Key | |--------|---------|-------------------| | setup.js | Show help | ❌ | | setup.js --managed | Generate wallet (encrypted by default) | ❌ | | setup.js --managed --no-encrypt | Generate wallet (plaintext) | ❌ | | register.js | Register email address | βœ… | | send.js | Send email | ❌ (uses token) | | inbox.js | Check inbox | ❌ (uses token) |


πŸ“ File Locations

~/.basemail/
β”œβ”€β”€ private-key.enc   # Encrypted private key (default, chmod 600)
β”œβ”€β”€ private-key       # Plaintext key (--no-encrypt only, chmod 600)
β”œβ”€β”€ wallet.json       # Wallet info (public address only)
β”œβ”€β”€ token.json        # Auth token (chmod 600)
β”œβ”€β”€ mnemonic.backup   # Only if user chooses to save (chmod 400)
└── audit.log         # Operation log (no sensitive data)

🎨 Get a Pretty Email

Want yourname@basemail.ai instead of 0x...@basemail.ai?

  1. Get a Basename at https://www.base.org/names
  2. Run: node scripts/register.js --basename yourname.base.eth

πŸ”§ API Reference

| Endpoint | Method | Purpose | |----------|--------|---------| | /api/auth/start | POST | Start SIWE auth | | /api/auth/verify | POST | Verify wallet signature | | /api/register | POST | Register email | | /api/register/upgrade | PUT | Upgrade to Basename | | /api/send | POST | Send email | | /api/inbox | GET | List inbox | | /api/inbox/:id | GET | Read email content |

Full docs: https://api.basemail.ai/api/docs


🌐 Links

  • Website: https://basemail.ai
  • API: https://api.basemail.ai
  • Get Basename: https://www.base.org/names

πŸ“ Changelog

v1.4.0 (2026-02-08)

  • ✨ Better branding and descriptions
  • πŸ“ Full English documentation

v1.1.0 (2026-02-08)

  • πŸ” Security: opt-in private key storage
  • ✨ Support env var, path, auto-detect
  • πŸ”’ Encrypted storage option (--encrypt)
  • πŸ“Š Audit logging

v1.6.0 (Security Update)

  • πŸ” Breaking: --managed now encrypts by default (use --no-encrypt for plaintext)
  • πŸ” Removed auto-detection of external wallet paths (security improvement)
  • πŸ” Mnemonic no longer auto-saved; displayed once for manual backup
  • πŸ“ Updated documentation for clarity

v1.0.0

  • πŸŽ‰ Initial release

Source & license

This open-source skill is cataloged on AgentStack and links to its original source β€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet β€” be the first.

Versions

  • v0.1.0 Imported from the upstream source.