add-anydoc
Add local office-document-to-Markdown conversion to NanoClaw agent containers with the pinned Firecrawl AnyDoc CLI. Use when agents need to read attached Word,…
Add Resend (email) channel integration via Chat SDK.
$ npx -y skills add nanocoai/nanoclaw --skill add-resend --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/add-resendContext preview
The summary Claude sees to decide when to auto-load this skill.
Add Resend (email) channel integration via Chat SDK.
name: add-resend description: Add Resend (email) channel integration via Chat SDK.
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.
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
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';
Pinned to an exact version — the supply-chain policy rejects ranges and `latest`:
@resend/chat-sdk-adapter@0.1.1
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.
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.
1. Go to [resend.com](https://resend.com) and create an account. 2. Add and verify your sending domain. 3. Go to **API Keys** and create a new key. 4. Set up a webhook:
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}}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>`).
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.)
A lightweight alternative to OpenClaw that runs in containers for security. Connects to WhatsApp, Telegram, Slack, Discord, Gmail and other messaging apps,, has memory, scheduled jobs, and runs directly on Anthropic's Agents SDK
Repo: nanocoai/nanoclaw
Add local office-document-to-Markdown conversion to NanoClaw agent containers with the pinned Firecrawl AnyDoc CLI. Use when agents need to read attached Word,…
Convert an attached Word document, presentation, spreadsheet, OpenDocument file, RTF, EPUB, CSV, or text-based PDF into local Markdown. Use when a message…
Add Atomic Chat MCP server so the container agent can call local models served by the Atomic Chat desktop app via its OpenAI-compatible API.
Add clidash — a zero-dependency, read-only web dashboard that derives its tabs and tables at runtime from any CLI that lists resources as JSON. Ships pre-wired…
Use Codex (OpenAI's codex app-server) as a full agent provider — planning, tool orchestration, MCP tools, server-side history, session resume — alongside or…
Add a monitoring dashboard to NanoClaw. Installs @nanoco/nanoclaw-dashboard and a pusher that sends periodic JSON snapshots.