agentmaillisted
Install: claude install-skill stevengonsalvez/agents-in-a-box
# agentmail — disposable inboxes for agent workflows
## What this skill gives you
The `myagentinbox.com` service hands out 24-hour disposable inboxes via plain REST. Five things to know:
| capability | how |
|---|---|
| Create inbox | `POST /api/inboxes` — returns `{address, created_at, expires_in: "24h"}`. No auth. |
| Check inbox exists | `GET /api/inboxes/{address}` |
| List messages | `GET /api/inboxes/{address}/messages` — returns `{data: [...]}` |
| Read message | `GET /api/inboxes/{address}/messages/{id}` |
| Download attachment | `GET /api/inboxes/{address}/messages/{id}/attachments/{filename}` |
Limits (per IP):
| limit | value |
|---|---|
| Inbox creation | 3 per minute |
| API reads | 20 per minute |
| Inbox lifetime | 24 hours then auto-deleted |
| Max email size | 10 MB |
**No accounts. No keys. No tracking.** Inbox + everything in it vanishes after 24h. Perfect for ephemeral test flows; useless for anything that needs to be retained.
## When to use
- Driving `/expect-test`, `/shot-testing`, or any browser test through a signup flow that requires email verification
- Capturing a one-time password / magic-link sent by a service the agent is registering with
- Receiving a webhook-style email as a stage in an automated pipeline
- Pulling an attachment (PDF receipt, exported report) that a service emails out
## When NOT to use
- Anything you need to keep — inboxes are gone after 24h
- Long-lived account recovery email — pick a real mailbox
- Sending email —