add-resend
Add Resend (email) channel integration via Chat SDK.
Install / Use
npx skills add nanocoai/nanoclaw --skill add-resendInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
CommunicationSupported Platforms
Tags
Our assessment of add-resend
add-resend scores 91/100 on our quality scale, 67th of 174 Communication skills we index (top 39%).
Its SKILL.md is 7.5 KB long, well organised into 12 sections with 13 code examples: a thorough specification that gives an agent plenty to work with.
With 30,846 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated yesterday, so add-resend is actively maintained.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
add-resend compared with similar skills
All 4 of these similar skills score higher than add-resend; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| add-resend (this skill)by nanocoai | 91 | 30.8k | 1d ago | SKILL.md |
| algorithmic-artby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
| designby nextlevelbuilder | 100 | 130.2k | 5d ago | SKILL.md |
| ui-ux-pro-maxby nextlevelbuilder | 100 | 130.2k | 5d ago | SKILL.md |
Frequently asked questions
- How do I install add-resend?
- Run
npx skills add nanocoai/nanoclaw --skill add-resend. The install tabs above show the steps for each supported agent. - Which AI agents does add-resend work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is add-resend safe to use?
- It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is add-resend still maintained?
- The repository was last updated yesterday, so add-resend is actively maintained.
Skill content
View source on GitHubname: add-resend description: Add Resend (email) channel integration via Chat SDK.
Add Resend Email Channel
Connect NanoClaw to email via Resend for async email conversations. NanoClaw
doesn't ship channels in trunk — this skill copies the Resend adapter in from the
channels branch.
The mechanical steps under Apply carry nc: directive fences: an agent reads
the prose and applies them, and a parser can apply them deterministically from
the same document. Every directive is idempotent, so the whole skill is safe to
re-run; anything a parser can't apply falls back to the prose beside it.
Apply
1. Copy the adapter
Fetch the channels branch and copy the Resend adapter into src/channels/
(overwrite — the branch is canonical):
src/channels/resend.ts
src/channels/resend-registration.test.ts
2. Register the adapter
Append the self-registration import to the channel barrel (skipped if the line is already present). This one line is the skill's only reach-in into core:
import './resend.js';
3. Install the adapter package
Pinned to an exact version — the supply-chain policy rejects ranges and latest:
@resend/chat-sdk-adapter@0.1.1
4. Build and validate
Build guards the typed createChatSdkBridge(...) core call and proves the
dependency is installed (the adapter imports @resend/chat-sdk-adapter; if it
isn't installed the barrel throws). End-to-end email delivery against a real
domain is verified manually once the service runs.
pnpm run build
pnpm exec vitest run src/channels/resend-registration.test.ts
resend-registration.test.ts imports the real channel barrel and asserts the
registry contains resend. It goes red if the import line is deleted or drifts,
if the barrel fails to evaluate, or if @resend/chat-sdk-adapter isn't installed
(the import throws) — so it also covers the dependency from step 3.
Credentials
Resend account and domain setup is human and interactive — these steps are prose, not directives (no parser can verify a sending domain or click through the Resend UI). A recipe rebuild produces a compiling, registered adapter that cannot receive a message until they're done.
- Go to resend.com and create an account.
- Add and verify your sending domain.
- Go to API Keys and create a new key.
- Set up a webhook:
- Go to Webhooks > Add webhook.
- URL:
https://your-domain/webhook/resend. - Events: select email.received.
- Copy the signing secret.
Store the credentials
Capture the secrets, then write them. prompt only asks and binds the answer
to a name; a separate directive consumes it — so the same prompts could feed
ncl or the OneCLI vault instead of .env by swapping only the consumer. Here
they go to .env (set-if-absent — a value you've already filled in is never
overwritten):
Paste the Resend API key — API Keys, starts with `re_`.
Paste the webhook signing secret — Webhooks, the value you copied above.
The bot's sending email address on your verified domain (e.g. `bot@yourdomain.com`).
The display name to send as (e.g. `NanoClaw`).
RESEND_API_KEY={{api_key}}
RESEND_FROM_ADDRESS={{from_address}}
RESEND_FROM_NAME={{from_name}}
RESEND_WEBHOOK_SECRET={{webhook_secret}}
Connect yourself
Because email is direct-addressable, the bot can write to you first — so wire
your own address as the owner and have it email you a hello. Tell it your address
and which agent should answer your email (ncl groups list shows their folders):
Your email address — I'll wire you as owner and email you a hello.
Which agent should answer your email? Enter its folder (run `ncl groups list`).
Register yourself as the owner, wire your address so the agent answers your email, and send the hello:
ncl users create --id resend:{{owner_email}} --kind resend --display-name Owner
ncl roles grant --user resend:{{owner_email}} --role owner
ncl messaging-groups create --channel-type resend --platform-id resend:{{owner_email}} --is-group 0
ncl wirings create --channel-type resend --platform-id resend:{{owner_email}} --agent-group {{agent_folder}} --engage-mode pattern --engage-pattern .
ncl messaging-groups send --channel-type resend --platform-id resend:{{owner_email}} --sender-id resend:{{owner_email}} --sender Owner --text "Hi — I'm your NanoClaw assistant, reachable by email now. Reply to this thread anytime."
The hello arrives as a fresh email thread; reply to keep the conversation going.
Your own address is the conversation key (resend:<your-address>).
Next Steps
If you're in the middle of /setup, return to the setup flow now. (Answering an
open inbox — anyone who emails in, not just you — is a separate, not-yet-wired
case: email is plain-message, so the router never auto-creates a group for an
unknown sender; each correspondent's resend:<their-address> must be wired
explicitly.)
Channel Info
- type:
resend - terminology: Resend handles email. The bot has one fixed sending identity (
RESEND_FROM_ADDRESS, e.g.bot@yourdomain.com); every external correspondent the bot emails with is a separate conversation, keyed by their address. - how-to-find-id: The platform ID is the correspondent's email address, prefixed —
resend:<their-address>(e.g.resend:you@example.com) — not the bot's from-address. The adapter derives it from the reply-to party (channelIdFromThreadIdreturnsresend:<address>); each distinct email thread from that person (by rootMessage-ID) is a sub-conversation under it. - supports-threads: no (the adapter sets
supportsThreads: false; replies still thread via email headers, but the router does not treat threads as the primary conversation unit) - typical-use: Async communication -- email conversations with longer response expectations
- default-isolation: Same agent group if you want your agent to handle email alongside other channels. Separate agent group if email contains sensitive correspondence that shouldn't be accessible from other channels.
Troubleshooting
Sends fail with 401. The API key comes from the Resend dashboard's API Keys page and starts with re_. Keys are shown once at creation — if in doubt, create a new one and update RESEND_API_KEY in .env.
The hello email never lands, or hits spam. The sending domain must show as verified under Resend → Domains — until the SPF/DKIM DNS records propagate, sends are rejected or spam-foldered. RESEND_FROM_ADDRESS must be an address on that verified domain; a free-mail from-address will not work.
Replies never reach the agent. Inbound only flows via the webhook: Resend → Webhooks must point at your public host at /webhook/resend (shared webhook server, port 3000) with the email.received event selected, and RESEND_WEBHOOK_SECRET must match that webhook's signing secret. Resend's webhook page lists delivery attempts — a run of failures means the URL is unreachable or the secret mismatches.
Adapter installed but nothing flows. Run pnpm exec vitest run src/channels/resend-registration.test.ts — red means the barrel import or the @resend/chat-sdk-adapter install drifted, so re-run the Apply steps. If green, restart the service so it loads the adapter and .env, then re-send the hello.
Related Skills
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
design
130.2kComprehensive design skill: brand identity, design tokens, UI styling, logo generation (55 styles, Gemini, Atlas Cloud, or MuAPI AI), corporate identity program (50 deliverables, CIP mockups), HTML presentations (Chart.js), banner design (22 styles, social/ads/web/print), icon design (15 styles, SVG…
ui-ux-pro-max
130.2kUI/UX design intelligence for web, mobile, and desktop. This skill should be used when designing, building, reviewing, or fixing interfaces, including pages, components, design systems, accessibility, interaction, responsive layout, typography, color, charts, and stack-specific UI implementation.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
