Agent skill · Backend & API

agentmail

Email infrastructure for AI agents. Create accounts, send/receive emails, manage webhooks, and check karma balance via the AgentMail API.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill agentmail --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/agentmail/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AgentMail — Email for AI Agents AgentMail gives AI agents real email addresses (`@theagentmail.net`) with a REST API. Agents can send and receive email, sign up for services (GitHub, AWS, Slack, etc.), and get verification codes. A karma system prevents spam and keeps the shared domain's reputation high. Base URL: `https://api.theagentmail.net` ## When to Use - An AI agent needs a real inbox/outbox for signups, verification flows, or transactional communication. - You need to provision AgentMail accounts, send messages, read inbox contents, or register inbound webhooks. - You need to monitor karma usage or wire email events into agent automation. ## Quick start All requests require `Authorization: Bearer am_...` header (API key from dashboard). ### Create an email account (-10 karma) ```bash curl -X POST https://api.theagentmail.net/v1/accounts \ -H "Authorization: Bearer am_..." \ -H "Content-Type: application/json" \ -d '{"address": "my-agent@theagentmail.net"}' ``` Response: `{"data": {"id": "...", "address": "my-agent@theagentmail.net", "displayName": null, "createdAt": 123}}` ### Send email (-1 karma) ```bash curl -X POST https://api.theagentmail.net/v1/accounts/{accountId}/

What's inside
Steps it walks through
  1. When to Use
  2. Quick start
  3. Create an email account (-10 karma)
  4. Send email (-1 karma)
  5. Read inbox
  6. Check karma
  7. Register webhook (real-time inbound)
  8. Download attachment
  9. Full API reference
  10. Karma system
  11. TypeScript SDK
  12. Error handling
  13. Common patterns
  14. Sign up for a service and read verification email
Commands it runs
curl -X POST https://api.theagentmail.net/v1/accounts \
curl -X POST https://api.theagentmail.net/v1/accounts/{accountId}/messages \
List messages
curl https://api.theagentmail.net/v1/accounts/{accountId}/messages \
Get full message (with body and attachments)
curl https://api.theagentmail.net/v1/accounts/{accountId}/messages/{messageId} \
curl https://api.theagentmail.net/v1/karma \
curl -X POST https://api.theagentmail.net/v1/accounts/{accountId}/webhooks \
curl https://api.theagentmail.net/v1/accounts/{accountId}/messages/{messageId}/attachments/{attachmentId} \
More from agentic-awesome-skills
All skills →
About this skill
What does the agentmail skill do?

Email infrastructure for AI agents. Create accounts, send/receive emails, manage webhooks, and check karma balance via the AgentMail API.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill agentmail --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going