skills$openclaw/resend
christina-de-martinez3.1k

by christina-de-martinez

resend – OpenClaw Skill

resend is an OpenClaw Skills integration for coding workflows. Use when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts.

3.1k stars3.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameresend
descriptionUse when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts. OpenClaw Skills integration.
ownerchristina-de-martinez
repositorychristina-de-martinez/resend-skills
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @christina-de-martinez/resend-skills
last updatedFeb 7, 2026

Maintainer

christina-de-martinez

christina-de-martinez

Maintains resend in the OpenClaw Skills directory.

View GitHub profile
File Explorer
15 files
.
agent-email-inbox
SKILL.md
28.9 KB
resend-inbound
SKILL.md
7.2 KB
send-email
references
batch-email-examples.md
23.7 KB
best-practices.md
12.4 KB
installation.md
2.0 KB
single-email-examples.md
12.0 KB
webhooks.md
7.2 KB
SKILL.md
14.6 KB
_meta.json
647 B
README.md
1.4 KB
SKILL.md
1.8 KB
SKILL.md

name: resend description: Use when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts. license: MIT metadata: author: resend version: "2.2.0"

Resend

Overview

Resend is an email platform for developers. This skill routes to feature-specific sub-skills.

Sub-Skills

FeatureSkillUse When
Sending emailssend-emailTransactional emails, notifications, batch sends
Receiving emailsresend-inboundProcessing inbound emails, webhooks for received mail, attachments
AI Agent inboxmoltbotSetting up email for AI agents with security measures against prompt injection

Quick Routing

Need to send emails? Use send-email skill

  • Single or batch transactional emails
  • Attachments, scheduling, templates
  • Delivery webhooks (bounced, delivered, opened)

Need to receive emails? Use resend-inbound skill

  • Setting up inbound domain (MX records)
  • Processing email.received webhooks
  • Retrieving email content and attachments
  • Forwarding received emails

Setting up an AI agent inbox? Use moltbot skill

  • Configuring email for Moltbot/Clawdbot or similar AI agents
  • Webhook setup with ngrok/tunneling for local development
  • Security levels to prevent prompt injection attacks
  • Trusted sender allowlists and content filtering

Common Setup

API Key

Store in environment variable:

export RESEND_API_KEY=re_xxxxxxxxx

SDK Installation

See send-email skill for installation instructions across all supported languages.

Resources

README.md
 ____  _____ ____  _____ _   _ ____        ____  _  _____ _     _     ____
|  _ \| ____/ ___|| ____| \ | |  _ \      / ___|| |/ /_ _| |   | |   / ___|
| |_) |  _| \___ \|  _| |  \| | | | |_____\___ \| ' / | || |   | |   \___ \
|  _ <| |___ ___) | |___| |\  | |_| |_____|___) | . \ | || |___| |___ ___) |
|_| \_\_____|____/|_____|_| \_|____/      |____/|_|\_\___|_____|_____|____/

Resend Skills

A collection of skills for AI coding agents following the Agent Skills format. These skills enable AI agents to send emails using the Resend API.

Available Skills

send-email

Send emails using the Resend API - single or batch. Supports transactional emails, notifications, and bulk sending (up to 100 emails per batch). Includes best practices for idempotency keys, error handling, and retry logic.

Installation

npx skills add resend/resend-skills

Usage

Skills are automatically activated when relevant tasks are detected. Example prompts:

  • "Send a welcome email to new users"
  • "Send batch notifications to all order customers"
  • "Schedule a newsletter for tomorrow at 9am"

Supported SDKs

  • Node.js / TypeScript
  • Python
  • Go
  • Ruby
  • PHP
  • Rust
  • Java
  • .NET
  • cURL
  • SMTP

Prerequisites

  • A Resend account with a verified domain
  • API key stored in RESEND_API_KEY environment variable

Get your API key at resend.com/api-keys

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install resend?

Run openclaw add @christina-de-martinez/resend-skills in your terminal. This installs resend into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/christina-de-martinez/resend-skills. Review commits and README documentation before installing.