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 WhatsApp Business Cloud API channel via Chat SDK. Official Meta API.
$ npx -y skills add nanocoai/nanoclaw --skill add-whatsapp-cloud --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/add-whatsapp-cloudContext preview
The summary Claude sees to decide when to auto-load this skill.
Add WhatsApp Business Cloud API channel via Chat SDK. Official Meta API.
name: add-whatsapp-cloud description: Add WhatsApp Business Cloud API channel via Chat SDK. Official Meta API.
Connect NanoClaw to WhatsApp via the official Meta WhatsApp Business Cloud API. NanoClaw doesn't ship channels in trunk — this skill copies the WhatsApp Cloud 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 WhatsApp Cloud adapter into `src/channels/` (overwrite — the branch is canonical):
src/channels/whatsapp-cloud.ts src/channels/whatsapp-cloud-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 './whatsapp-cloud.js';
Pinned to an exact version — the supply-chain policy rejects ranges and `latest`:
@chat-adapter/whatsapp@4.29.0
Build guards the typed `createChatSdkBridge(...)` core call and proves the dependency is installed — the import throws at evaluation if `@chat-adapter/whatsapp` is missing or the barrel drifts:
pnpm run build
pnpm exec vitest run src/channels/whatsapp-cloud-registration.test.ts
`whatsapp-cloud-registration.test.ts` imports the real channel barrel and asserts the registry contains `whatsapp-cloud` — it goes red if the import line is deleted or drifts, if the barrel fails to evaluate, or if `@chat-adapter/whatsapp` isn't installed (the import throws), so it also covers the dependency from step 3.
End-to-end message delivery against a real WhatsApp Business number is verified manually once the service is running — see Next Steps and the webhook setup below.
Older copies of the adapter registered this bridge under the bare `whatsapp` key, which collided with the native Baileys adapter. It now registers under a distinct `whatsapp-cloud` instance (channelType stays `whatsapp`). Two consequences for an install that ran the previous version:
Update the callback URL in your Meta App dashboard (WhatsApp > Configuration) accordingly.
re-key under the new instance, so previously-subscribed threads may need to re-engage the bot.
Fresh installs need none of this.
Meta app setup is human and interactive — these steps are prose, not directives (no parser can click through the Meta dashboard). A recipe rebuild produces a compiling, registered adapter that cannot receive a message until they're done.
1. Go to [Meta for Developers](https://developers.facebook.com/apps/) and create an app (type: Business). 2. Add the **WhatsApp** product. 3. Go to **WhatsApp** > **API Setup**:
4. Go to **WhatsApp** > **Configuration**:
5. Copy the **App Secret** from **Settings** > **Basic**.
Capture the four values, 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 System User access token — WhatsApp > API Setup, with `whatsapp_business_messaging` permission.
Paste the Phone Number ID — WhatsApp > API Setup (not the phone number itself).
Paste the App Secret — Settings > Basic.
Paste the Verify Token — the random string you set under WhatsApp > Configuration.
WHATSAPP_ACCESS_TOKEN={{access_token}}
WHATSAPP_PHONE_NUMBER_ID={{phone_number_id}}
WHATSAPP_APP_SECRET={{app_secret}}
WHATSAPP_VERIFY_TOKEN={{verify_token}}The Chat SDK bridge automatically starts a shared webhook server on port 3000 (`WEBHOOK_PORT` to change it), handling `/webhook/whatsapp-cloud`. This port must be publicly reachable for Meta to deliver events. Running locally, expose it with ngrok (`ngrok http 3000`), a Cloudflare Tunnel, or a reverse proxy on a VPS — the resulting public URL is the base for the webhook URL set under WhatsApp > Configuration above.
If you're in the middle of `/setup`, return to the setup flow now.
Otherwise, run `/manage-channels` to wire this channel to an agent group.
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.