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 Matrix channel integration via Chat SDK. Works with any Matrix homeserver.
$ npx -y skills add nanocoai/nanoclaw --skill add-matrix --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/add-matrixContext preview
The summary Claude sees to decide when to auto-load this skill.
Add Matrix channel integration via Chat SDK. Works with any Matrix homeserver.
name: add-matrix description: Add Matrix channel integration via Chat SDK. Works with any Matrix homeserver.
Adds Matrix support via the Chat SDK bridge. NanoClaw doesn't ship channels in trunk — this skill copies the Matrix 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 Matrix adapter into `src/channels/` (overwrite — the branch is canonical):
src/channels/matrix.ts src/channels/matrix-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 './matrix.js';
The published adapter references `matrix-js-sdk/lib/...` without `.js` extensions, which fails under Node 22 strict ESM resolution. Register the committed pnpm patch before installing the package. pnpm reapplies it after every install and fails if the pinned package drifts away from the patch:
patches/@beeper__chat-adapter-matrix@0.2.0.patch
pnpm pkg set 'pnpm.patchedDependencies[@beeper/chat-adapter-matrix@0.2.0]=patches/@beeper__chat-adapter-matrix@0.2.0.patch'
Pinned to an exact version — the supply-chain policy rejects ranges and `latest`. The Matrix adapter lives in the `@beeper/` namespace and versions on its own track (not the `@chat-adapter/*` family), so it carries its own pin:
@beeper/chat-adapter-matrix@0.2.0
Build guards the typed `createChatSdkBridge(...)` core call the adapter makes and fails if the `import './matrix.js';` line is missing. The direct Node import checks the published ESM entrypoint using the real runtime resolver:
pnpm run build
node --input-type=module -e 'await import("@beeper/chat-adapter-matrix")'pnpm exec vitest run src/channels/matrix-registration.test.ts
`matrix-registration.test.ts` imports the real channel barrel and asserts the registry contains `matrix`. It goes red if the import line is deleted or drifts, if the barrel fails to evaluate, or if `@beeper/chat-adapter-matrix` isn't installed (the import throws) — so it also covers the dependency from step 3.
End-to-end message delivery against a real Matrix homeserver is verified manually once the service is running — see Next Steps.
The bot needs its own Matrix account — separate from the user's account. This is required because Matrix cannot send DMs to yourself. These steps are human and interactive (no parser can click through Element), so they stay prose.
1. Open [app.element.io](https://app.element.io) in a private/incognito window (or sign out first) 2. Register a new account for the bot (e.g. `andybot` on matrix.org) 3. Note the bot's user ID (e.g. `@andybot:matrix.org`)
**Option A: Username + Password (simpler)**
No extra steps — just use the bot account's credentials directly. The adapter logs in automatically.
MATRIX_BASE_URL=https://matrix.org MATRIX_USERNAME=andybot MATRIX_PASSWORD=your-bot-password MATRIX_USER_ID=@andybot:matrix.org MATRIX_BOT_USERNAME=Andy
**Option B: Access Token (recommended for production)**
Get an access token from Element: sign into the bot account → **Settings** > **Help & About** > **Access Token** (under Advanced). Or via API:
curl -XPOST 'https://matrix.org/_matrix/client/r0/login' \
-d '{"type":"m.login.password","user":"andybot","password":"..."}'MATRIX_BASE_URL=https://matrix.org MATRIX_ACCESS_TOKEN=your-access-token MATRIX_USER_ID=@andybot:matrix.org MATRIX_BOT_USERNAME=Andy
MATRIX_INVITE_AUTOJOIN=true # Auto-accept room invites (default: true) MATRIX_INVITE_AUTOJOIN_ALLOWLIST=@you:matrix.org # Only accept invites from these users MATRIX_RECOVERY_KEY=your-recovery-key # Enable E2EE cross-signing MATRIX_DEVICE_ID=NANOCLAW01 # Stable device ID across restarts
Capture the values for the auth method you chose, 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. The homeserver URL, the bot's user ID, and a display name are shared across both auth methods:
Paste the homeserver base URL, e.g. `https://matrix.org`.
Paste the bot's full Matrix user ID, e.g. `@andybot:matrix.org`.
Paste a display name for the bot, e.g. `Andy`.
MATRIX_BASE_URL={{base_url}}
MATRIX_USER_ID={{user_id}}
MATRIX_BOT_USERNAME={{bot_username}}For **Option A** capture the bot login, for **Option B** capture the access token — set only the block matching your chosen method:
Option A only — the bot's login username (the localpart, e.g. `andybot`).
Option A only — the bot account's password.
MATRIX_USERNAME={{username}}
MATRIX_PASSWORD={{password}}Option B only — the access token from Element Settings > Help & About, or from the login API.
MATRIX_ACCESS_TOKEN={{access_token}}If you're in the middle of `/setup`, return to the setup flow now.
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.