ClawSkills logoClawSkills

BaseMail - Onchain Email for AI Agents on Base

šŸ“¬ BaseMail - Onchain Email for AI Agents on Base. Get [email protected] linked to your Basename (.base.eth). SIWE wallet auth, no CAPTCHA, no passwords....

Introduction

# šŸ“¬ BaseMail - Onchain Email for AI Agents on Base

> Your agent gets a real email address, linked to its onchain identity. No human needed.

**TL;DR:** Own a Basename (`yourname.base.eth`)? Get `[email protected]` instantly. Sign with your Base wallet, send emails autonomously.

## Why BaseMail?

- **Built on Base Chain** — Email identity tied to your onchain wallet on Base (Coinbase's L2) - **Basename integration** — `.base.eth` holders get matching `@basemail.ai` addresses automatically - **SIWE authentication** — Sign-In with Ethereum, no passwords or CAPTCHA needed - **Autonomous for AI agents** — Register for services, submit forms, receive confirmations without human help - **Verifiable identity** — Your email is cryptographically linked to your Base wallet address

BaseMail gives AI agents verifiable email identities on **Base Chain**: - ✨ **Basename holders** → `yourname.base.eth` → `[email protected]` - šŸ”— **Any Base wallet** → `[email protected]`

### How it works

``` Base Wallet → SIWE Signature → BaseMail Registration → [email protected] ↑ ↓ Basename (.base.eth) Send & receive email autonomously ```

---

## šŸ” 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**:

```bash 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:

```bash 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:

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

> āœ… **Always encrypted** — Private key protected with AES-256-GCM > - You'll set a password during setup (min 8 chars, must include letter + number) > - Password required each time you use the wallet > - Mnemonic displayed once for manual backup (never saved to file) > - Password input is masked (hidden) in terminal

---

## āš ļø 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 6. `--wallet` paths are validated: must be under `$HOME`, no traversal, max 1KB file size 7. Private key format is validated (`0x` + 64 hex chars) before use 8. Password input is masked in terminal (characters hidden) 9. This skill only signs SIWE authentication messages — it **never sends funds or on-chain transactions**

### Recommended .gitignore

```gitignore # BaseMail - NEVER commit! .basemail/ **/private-key.enc ```

---

## šŸš€ Quick Start

### 1ļøāƒ£ Register

```bash # 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

```bash node scripts/send.js "[email protected]" "Hello!" "Nice to meet you šŸ¦ž" ```

### 3ļøāƒ£ Check Inbox

```bash node scripts/inbox.js # List emails node scripts/inbox.js <email_id> # Read specific email ```

---

## šŸ“¦ Scripts

| Script | Purpose | Needs Private Key | |--------|---------|-------------------| | `setup.js` | Show help | āŒ | | `setup.js --managed` | Generate wallet (always encrypted) | āŒ | | `register.js` | Register email address | āœ… | | `send.js` | Send email | āŒ (uses token) | | `inbox.js` | Check inbox | āŒ (uses token) | | `audit.js` | View audit log | āŒ |

---

## šŸ“ File Locations

``` ~/.basemail/ ā”œā”€ā”€ private-key.enc # Encrypted private key (AES-256-GCM, chmod 600) ā”œā”€ā”€ wallet.json # Wallet info (public address only) ā”œā”€ā”€ token.json # Auth token (chmod 600) └── audit.log # Operation log (no sensitive data) ```

---

## šŸŽØ Get a Basename-Linked Email

Want `[email protected]` instead of `[email protected]`?

1. Register a **Basename** (`.base.eth`) at https://www.base.org/names 2. Link it: `node scripts/register.js --basename yourname.base.eth`

Your Basename is your onchain identity on Base — and BaseMail turns it into a working email address.

---

## šŸ”§ 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 - API Docs: https://api.basemail.ai/api/docs - Get a Basename: https://www.base.org/names - Base Chain: https://base.org - Source: https://github.com/dAAAb/BaseMail-Skill

---

## šŸ“ Changelog

### v1.8.0 (2026-02-18) - šŸ“ Enhanced description: emphasize Base Chain and Basename (.base.eth) integration - šŸ“ Added architecture diagram showing wallet → SIWE → email flow - šŸ“ Better explanation of onchain identity and verifiable email - šŸ”— Added source repo and Base Chain links

### v1.7.0 (2026-02-18) - šŸ” **Security hardening** (addresses ClawHub "Suspicious" classification): - Added OpenClaw metadata: declares `BASEMAIL_PRIVATE_KEY` in `requires.env` - Password input now masked in terminal (characters hidden as `*`) - Stronger password requirements: min 8 chars, must include letter + number - `--wallet` path validation: must be under `$HOME`, no `..` traversal, max 1KB, regular file only - Private key format validation (`0x` + 64 hex chars) on all input sources - Removed `--no-encrypt` option — managed wallets are always encrypted - Mnemonic is displayed once and never saved to file (removed save-to-file prompt) - Removed legacy plaintext key file references - šŸ“ Added `notes` in metadata clarifying: this skill only signs SIWE messages, never sends funds - šŸ“ Updated security guidelines and file locations documentation

### 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 - šŸ” 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

More Products