惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
B
Blog
D
Docker
C
Check Point Blog
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
罗磊的独立博客
月光博客
月光博客
博客园 - Franky
L
LangChain Blog
H
Help Net Security
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

Resend RSS Feed

6 Tips for Accessible Emails Welcoming Manoel do Amaral, our new Brand Designer Welcoming Michael Vaz, our new Customer Success Engineer Six Steps to Improve Your Sender Reputation Welcoming Tatira Andrade, our new Executive Assistant Welcoming Pedro Ivo Hudson, our new Design Engineer Welcoming Diel Duarte, our new Open source Engineer Welcoming Areia Spinner, our new Recruiter Resend Forward: A Conference about Craft React Email 6.0 Custom Tracking Domains AI Email Editor Introducing Automations Welcoming Ahmed Tolba, our new SRE Engineer Welcoming Aneil Singh, our new Founding Account Executive Welcoming Lucas Motta, our new Software Engineer Welcoming Trey Knowles, our new Founding Account Executive Welcoming Anxhela Carciu, our new SRE Engineer Introducing DMARC Analyzer Welcoming Evan Thibodeau, our new Customer Success Engineer Welcoming Derich Pacheco, our new Software Engineer Welcoming Alec Ventura, our new Data Engineer Welcoming Felipe Freitag, our new Software Engineer Welcoming Mateusz Wos, our new Software Engineer Incident report for February 15, 2026 Email automation for OpenClaw How to Create a DevTools Agent Skill Why You Should Embrace the Promotions Tab Slater Smith, our new Customer Success Engineer Do You Need a Warmup Service?
Introducing Email Skills
Chris Pennington · 2026-01-28 · via Resend RSS Feed

AI agents are becoming a core part of how developers build software. They write code, debug issues, and ship features alongside us. To get the most of out agents, you need to provide the agent with expertise.

Agent skills are a new open standard for providing expertise to agents without bloating the context window. Created by Anthropic, skills are now available in all major AI development tools, including Claude Code, Open AI Codex, Cursor, Google Gemini, OpenCode, VSCode, and more.

We're releasing three Agent Skills:

  1. Email Best Practices
  2. React Email
  3. Resend Skill

These skills give AI agents the context they need to help you build production-ready email systems.

For a quick overview, watch the video below:

What are Agent Skills?

Agent Skills are modular capabilities that extend what an agent can do, while preserving the context window. Each skill packages instructions, metadata, and optional resources that an agent can use when relevant.

At its simplest, a skill is a directory containing a SKILL.md file with YAML fields for name and description, plus expert knowledge that tells an agent how to perform a task in an opinionated way.

Skill directories can also contain executable code, references, and assets.

my-skill/
├── SKILL.md          # Required: instructions + metadata
├── scripts/          # Optional: executable code
├── references/       # Optional: documentation
└── assets/           # Optional: templates, resources

Importantly, skills files are human-readable text, not code syntax. This pattern makes skills easy to compose and enables agents to work autonomously, using instructions as context rather than rigid patterns.

How skills work

Skills are progressively disclosed to preserve context. This enables the AI agent to perform tasks guided by expert knowledge.

Discovery: When an agent starts up, only the name and description fields for each available skill are loaded into context. The agent knows the skill exists and when it might be useful.

Execution: When a task matches a skill's description, the agent reads the full SKILL.md file. If the skill includes scripts, references, or assets, the agent can pull those in as needed.

While agents can certainly perform complex tasks without expertise, this approach both requires the agent to keep track of much more context, and also depends on the agent's ability to search the web for information or rely upon generic training data.

Skills offer precise, expert, opinionated knowledge in a way that preserves context and allows for autonomy guided by expert knowledge.

The skills we're introducing

Today we're releasing three skills:

1. Email Best Practices Skill

The Email Best Practices skill gives agents expert knowledge to build scalable email systems that reach the inbox and follow best email sending practices.

To install the skill, run:

What it covers:

  • Authentication setup: Step-by-step instructions for SPF, DKIM, and DMARC records
  • Email design: Guidelines for transactional and marketing messages
  • Regulatory compliance: CAN-SPAM, GDPR, CASL, and region-specific requirements
  • Event handling: Processing delivery notifications, bounces, and complaints
  • List management: Maintaining suppression lists and improving deliverability

2. React Email Skill

The React Email skills helps agents build production-ready HTML emails using React email components. It follows our best practices for clean, maintainable, and well-designed email templates.

To install the skill, run:

What it enables:

  • Component-driven architecture for consistent, reusable templates
  • Tailwind CSS integration for brand-aligned designs
  • Automatic HTML and plain text output
  • Cross-client rendering that works in Gmail, Outlook, Apple Mail, and more
  • Development preview server with hot reloading

3. Resend Skill

The Resend skill teaches agents how to send emails through the Resend API using our official recommendations for production-ready email sending.

To install the skill, run:

What it enables:

  • Send individual emails or batch up to 100 at once
  • Automatic retries with exponential backoff for transient failures
  • Idempotency keys to prevent duplicate sends
  • Support for Node.js, Python, Ruby, Go, and other SDKs

When your agent encounters an email-sending task, it activates this skill automatically—no manual configuration required.

Agent experience (AX) is developer experience (DX)

We've spent years obsessing over developer experience: clear documentation, intuitive APIs, and fast support when things go wrong.

Agent experience (AX) is the next frontier.

Developers turn to agents to accelerate their work, but the acceleration is only helpful if the agent can perform the task correctly. Agent skills close the expertise gap without demanding developer attention or unnecessarily bloating the agent's context window.

The agent should know the right patterns, avoid common pitfalls, and produce code that works in production—not just in a demo. At their best, agent skills provide expertise, not just instructions, but the accumulated knowledge of how to build email systems that scale.

When an agent can quickly produce high-quality code, it's not just good agent experience; it's good developer experience.

Get started

Install the skills and start building:

These skills are living documents, and we're updating them regularly to keep them up to date with the latest best practices. As you use them, let us know how they can be improved so we can make them even better.