Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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 & APIIntermediate30,47112,865AI score 7/10Last updated: Aug 9, 2026

What it does

  • Pulls the Resend adapter (src/channels/resend.ts) plus its registration test from the channels branch into your project.
  • Appends the single self-registration import to src/channels/index.ts and installs @resend/chat-sdk-adapter at a pinned exact version.
  • Runs build and vitest to 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 .env without 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

  1. "Add the Resend email channel to NanoClaw" — adapter copied, dependency pinned, build and registration test run.
  2. 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.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/nanocoai/nanoclaw.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r nanoclaw/.claude/skills/add-resend ~/.claude/skills/
  5. Start Claude Code inside your NanoClaw project directory (this skill only makes sense in that repo).
  6. Ask: "Add the Resend email channel" and let the skill run the Apply steps in order.
  7. Have a resend.com account, a verified sending domain, an API key, and a webhook subscribed to email.received ready before you start.