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,…
Migrate from OpenClaw to NanoClaw v2. Detects an existing OpenClaw installation, extracts identity, channel credentials, scheduled tasks, and other config, then guides interactive migration. Triggers on "migrate from openclaw", "openclaw migration", "import from openclaw".
$ npx -y skills add nanocoai/nanoclaw --skill migrate-from-openclaw --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/migrate-from-openclawContext preview
The summary Claude sees to decide when to auto-load this skill.
Migrate from OpenClaw to NanoClaw v2. Detects an existing OpenClaw installation, extracts identity, channel credentials, scheduled tasks, and other config, then guides interactive migration. Triggers on "migrate from openclaw", "openclaw migration", "import from openclaw".
name: migrate-from-openclaw description: Migrate from OpenClaw to NanoClaw v2. Detects an existing OpenClaw installation, extracts identity, channel credentials, scheduled tasks, and other config, then guides interactive migration. Triggers on "migrate from openclaw", "openclaw migration", "import from openclaw".
Guide the user through migrating their OpenClaw installation into NanoClaw v2. This is a conversation, not a batch job. Read OpenClaw state, discuss it with the user, decide together what to bring over and where it belongs in v2's entity model, and show proposed changes before applying.
**Principle:** Never silently copy data. Read it, explain it, place it, then apply. Credentials are masked when displayed (first 4 + `...` + last 4). Make judgment calls about what's core vs. reference material.
**UX:** Use `AskUserQuestion` for multiple-choice only. Use plain text for free-form input. Don't dump raw data — summarize and explain conversationally.
This skill drives existing NanoClaw entry points (`setup/index.ts --step register`, `scripts/init-first-agent.ts`, the `onecli` CLI) and copies a few files in (workspace markdown, OpenClaw skills, and its own transform module + test). It makes no code-level reach-in into core. Its integration assumptions about v2 are guarded by `scripts/transform.test.ts`, which is copied into the project's `scripts/` test tree on apply (Phase 8) so vitest runs it against the composed install. `REMOVE.md` reverses every file the skill copies.
OpenClaw and NanoClaw v2 differ structurally. Keep these in mind throughout:
`user_roles`, `agent_groups`, `messaging_groups`, and the `messaging_group_agents` wiring between them. There is no `store/messages.db` and no `scheduled_tasks` table.
An OpenClaw "agent" maps to a v2 *agent group* (workspace + memory + CLAUDE.md); an OpenClaw chat/group maps to a v2 *messaging group*; the wiring row connects them.
behavior live in `groups/<folder>/instructions.prepend.md`. Durable facts live under `groups/<folder>/memory/`. The provider project document is composed at spawn and must not be edited.
held in the OneCLI Agent Vault and injected per request — never in container env vars. Host-side channel tokens (Telegram/Discord/Slack bot tokens) stay in `.env`; the NanoClaw host process reads them to connect to the platform.
`user_roles` (owner/admin) and `agent_group_members` — not a JSON allowlist file.
session's `inbound.db`, carrying a cron `recurrence` and a `process_after` timestamp. The agent creates them via its `schedule_task` MCP tool.
Create `migration-state.md` in the project root at the start of Phase 0. Update it after each phase. It's the single source of truth — if context is lost, re-read it to recover decisions and progress. Re-read it before starting any phase.
Sections to maintain:
platform_id mappings), workspace files, cron count, MCP servers
Keep it factual and terse. Delete it at the end of Phase 8 (or offer to keep it as a record).
Run the discovery script to find and summarize the OpenClaw installation:
pnpm exec tsx ${CLAUDE_SKILL_DIR}/scripts/discover-openclaw.tsIf the user specifies a custom path, pass `--state-dir <path>`.
Parse the status block. Key fields: STATUS, STATE_DIR, CHANNELS, WORKSPACE_FILES, DAILY_MEMORY_FILES, SKILL_COUNT, SKILLS, CRON_JOBS, MCP_SERVERS, IDENTITY_NAME, AGENT_COUNT, AGENT_IDS, GROUPS (each formatted `channel:id(name)=>v2_platform_id` — the right-hand value is what to pass as `--platform-id` to register).
**Sanity-check the output.** The script detects known structures but can miss data if OpenClaw's format changed. Check `CONFIG_TOP_KEYS` and `CONFIG_CHANNEL_KEYS` — if you see keys it didn't report on, read that section of the config with the Read tool. Check `STATE_DIR_CONTENTS` for directories it doesn't scan.
**If STATUS=not_found:** Tell the user no OpenClaw install was detected at the standard locations (`~/.openclaw`, `~/.clawdbot`). Ask for a custom path; if none, exit.
**If STATUS=found:** Present a human-readable summary (identity name, workspace files, channels and which v2 supports, daily memory count, skills, cron count, MCP servers, agent count). Then paraphrase the key architectural differences from the section above — don't dump it as a table.
AskUserQuestion: "Ready to start migrating? I'll go through each area one at a time." 1. **Yes, let's go** — proceed to Phase 1 2. **Tell me more** — explain any area they ask about 3. **Skip migration** — exit
**Decide this before identity/memory** — it determines where files go.
**OpenClaw model:** all groups routed to one a
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.