An agentic software-development methodology: composable skills that push a coding agent through spec, plan, TDD and review instead of straight into code.
Resend Email API
Summary
Resend's official skill for the whole email lifecycle — transactional sends, inbound webhooks, templates, broadcasts, domains and delivery events.
Features
- Single and batch transactional sends with idempotency-key handling
- Inbound email over webhooks, including signature verification
- Template management with the correct variable syntax
- Domains, contacts, broadcasts, API keys and automations
- Delivery-event tracking and API request-log inspection
- Registers Resend's hosted MCP server for direct tool access
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
"Add a Resend-backed password-reset email to this Next.js app, with a React Email template and retry-safe sending."
Description
resend is the flagship skill in Resend's official resend/resend-skills repository, covering the email API end to end: single and batch transactional sends, inbound email received over webhooks, template management, delivery-event tracking, and administration of domains, contacts, broadcasts, webhooks, API keys and automations — plus reading the API request log when something did not arrive.
What makes it worth installing over letting a model improvise against the docs is the gotchas it encodes. Resend's own framing is that the skill should be loaded even for a request as simple as "send an email with Resend", because the failure modes are not in the happy path: idempotency keys on retried sends, webhook signature verification, and the exact template-variable syntax are each things an agent gets subtly wrong in a way that only shows up in production.
Setup. A Resend account with a verified sending domain, and an API key in RESEND_API_KEY. RESEND_WEBHOOK_SECRET is optional and only needed to verify inbound event payloads. The skill declares both as typed inputs, so a compatible harness can prompt for them rather than failing mid-task.
The wider set. The same repository ships agent-email-inbox (a secure webhook-backed inbox for agents), resend-cli for terminal operation, react-email for building HTML emails as React components, and email-best-practices for deliverability, DNS authentication and compliance. It also registers Resend's hosted MCP server at https://mcp.resend.com/mcp over streamable HTTP, authenticated by OAuth, so an agent can have tool access to the full API without any header configuration.
MIT-licensed. Packaged as a plugin for Claude Code, Cursor, OpenAI Codex and Grok.
Related Skills
Tencent's skill-evolution harness: it rewrites a whole skill folder — SKILL.md, scripts and references together — and lands every decision as a real Git issue, PR and wiki entry you can review.
Take an OpenSearch search application from requirements to a running cluster — BM25, dense and sparse vectors, hybrid retrieval, agentic search and RAG, with relevance evaluation built in.
Auth0's official agent skill: a router that detects your framework and intent, then loads the right Auth0 guidance for login, MFA, Organizations, tenant audits, debugging or provider migration.