Add Resend Email Channel
An install recipe that wires a Resend-powered email channel into NanoClaw so you can talk to your agent over email.
Web & APIIntermediate★ 30,471⑂ 12,865AI score 7/10Last updated: Aug 9, 2026
What it does
- Pulls the Resend adapter (
src/channels/resend.ts) plus its registration test from thechannelsbranch into your project. - Appends the single self-registration import to
src/channels/index.tsand installs@resend/chat-sdk-adapterat a pinned exact version. - Runs build and
vitestto prove the adapter is actually present in the channel registry. - Prompts for the Resend API key, webhook signing secret, from-address and display name, then writes them to
.envwithout overwriting existing values. - Registers your own address as owner, wires it to an agent group, and sends a hello email to verify round-trip delivery.
Who it's for
- NanoClaw operators who want an async email channel alongside chat channels.
- Teams that prefer email threads over Slack/Discord for agent interactions.
- Anyone who needs a checklist covering domain verification and inbound webhooks.
Examples
- "Add the Resend email channel to NanoClaw" — adapter copied, dependency pinned, build and registration test run.
- After verifying your sending domain, paste the API key and webhook secret; the skill wires you as owner and emails a hello you can reply to.
- When the hello lands in spam or sends fail with 401, walk the Troubleshooting section to check domain verification, key validity, and webhook URL/secret mismatches.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/add-resend folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/add-resend/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git /tmp/nanoclaw && mkdir -p ~/.claude/skills && cp -r /tmp/nanoclaw/.claude/skills/add-resend ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/nanocoai/nanoclaw.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r nanoclaw/.claude/skills/add-resend ~/.claude/skills/ - Start Claude Code inside your NanoClaw project directory (this skill only makes sense in that repo).
- Ask: "Add the Resend email channel" and let the skill run the Apply steps in order.
- Have a resend.com account, a verified sending domain, an API key, and a webhook subscribed to
email.receivedready before you start.
View source on GitHub ↗License: MIT