Add AnyDoc (NanoClaw document conversion)
An install playbook that adds the pinned Firecrawl AnyDoc CLI to NanoClaw agent containers so Office documents convert to Markdown locally.
Docs & OfficeAdvanced★ 30,532⑂ 12,853AI score 8/10Last updated: Aug 17, 2026
What it does
- Installs
@firecrawl/anydoc0.1.6 as a pinned CLI inside NanoClaw agent containers. - Converts Word, PowerPoint, Excel, OpenDocument, RTF, EPUB, CSV and text-based PDFs to Markdown without uploading them to a hosted parser.
- Runs preflight safety checks: npm registry lookup (deprecation, 72-hour release-age gate), duplicate detection in
container/cli-tools.json, and per-group container image pin review. - Walks the full sequence: copy the bundled container skill and manifest test → vitest → build → rebuild images → restart the service → smoke test with a real attachment.
Who it's for
- Developers and operators working directly on the NanoClaw repository.
- Teams that must parse documents on-premise instead of sending them to a SaaS parser.
- Anyone who wants npm supply-chain risk handled by explicit procedure.
Usage examples
- "Let the agent read the DOCX attached in this channel" → the skill handles CLI install through image rebuild.
- "Check whether AnyDoc is already pinned in cli-tools.json" → it stops and reports duplicates or version conflicts.
- "Verify conversion actually works after install" →
docker run --entrypoint anydoc ... --format csvexercises the native binding, not just--help.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/.claude/skills/add-anydoc/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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-anydoc folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/add-anydoc/. 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 && mkdir -p ~/.claude/skills && cp -r nanoclaw/.claude/skills/add-anydoc ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/nanocoai/nanoclaw.git - Copy the skill into your Claude Code skills folder:
mkdir -p ~/.claude/skills && cp -r nanoclaw/.claude/skills/add-anydoc ~/.claude/skills/ - If you only need it inside the project, open the NanoClaw repo and use the bundled
.claude/skills/add-anydocas-is. - Make sure prerequisites are present: Node.js, pnpm, Docker, git, and the NanoClaw repo itself (
container/,setup/lib/install-slug.sh, thenclCLI). - Start Claude Code at the NanoClaw repo root and ask it to "add AnyDoc" to trigger the skill.
- Follow the stages in order (preflight → install → validate/build → restart → smoke test); if the release-age gate fails, stop rather than bypassing it.
View source on GitHub ↗License: MIT