.agents/skills/resend/SKILL.md
Use when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts.
npx skillsauth add FabioFiorita/tastik resendInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Resend is an email platform for developers. This skill routes to feature-specific sub-skills.
| Feature | Skill | Use When |
|---------|-------|----------|
| Sending emails | send-email | Transactional emails, notifications, batch sends |
| Receiving emails | resend-inbound | Processing inbound emails, webhooks for received mail, attachments |
| AI Agent inbox | agent-email-inbox | Setting up email for AI agents, or any system where untrusted email content triggers actions — includes security measures against prompt injection |
Need to send emails? Use send-email skill
Need to receive emails? Use resend-inbound skill
email.received webhooksSetting up an AI agent inbox? Use agent-email-inbox skill
Automated system processes untrusted email content and takes actions? Use agent-email-inbox skill
Sending + receiving together? You need both resend-inbound and send-email
Marketing emails or newsletters? Use Resend Broadcasts
Store in environment variable:
export RESEND_API_KEY=re_xxxxxxxxx
See send-email skill for installation instructions across all supported languages.
tools
Cloudflare Workers CLI for deploying, developing, and managing Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store. Load before running wrangler commands to ensure correct syntax and best practices.
development
Reviews and authors Cloudflare Workers code against production best practices. Load when writing new Workers, reviewing Worker code, configuring wrangler.jsonc, or checking for common Workers anti-patterns (streaming, floating promises, global state, secrets, bindings, observability). Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
tools
Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (FCP, LCP, TBT, CLS, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed.
development
React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.