Install
openclaw skills install @wei840222/anydocConvert Word (.doc, .docx), PowerPoint (.ppt, .pptx), Excel (.xls, .xlsx), OpenDocument (.odt, .ods, .odp), RTF, EPUB, CSV, and PDF files to GitHub-Flavored Markdown. Use when a task needs the contents of an office document, spreadsheet, presentation, ebook, or PDF you cannot read directly.
openclaw skills install @wei840222/anydocRun the anydoc CLI and write Markdown to stdout or a file:
anydoc <file> # Markdown to stdout
anydoc <file> -o out.md # write to a file
anydoc - --format csv < f # read stdin
If command -v anydoc fails, install the PATH-first wrapper used on this workstation:
mkdir -p ~/.local/bin
cat > ~/.local/bin/anydoc <<'EOF'
#!/usr/bin/env bash
set -euo pipefail
exec bunx @firecrawl/anydoc@latest "$@"
EOF
chmod +x ~/.local/bin/anydoc
Requirements and checks:
~/.local/bin on PATH ahead of later package-manager bin dirs.bunx can fetch @firecrawl/anydoc@latest.command -v anydoc and anydoc -V.@firecrawl/anydoc..doc, .docx, .docm, .odt, .rtf, .epub, .pdf, .ppt, .pps, .pot, .pptx, .pptm, .ppsx, .ppsm, .odp, .xls, .xlsx, .xlsm, .xlsb, .ods, .csv.--format <name> only when detection cannot work: CSV from stdin, or a missing or wrong extension.anydoc: <message> line to stderr. The CLI never prompts.-o and read the parts you need instead of streaming everything into context.@firecrawl/anydoc on npm, firecrawl-anydoc on PyPI, anydoc on crates.io. Each exposes the same to_markdown / toMarkdown API.