Convert an attached Word document, presentation, spreadsheet, OpenDocument file, RTF, EPUB, CSV, or text-based PDF into local Markdown. Use when a message supplies a local attachment path that must be read without uploading it to an external parser.
72
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Use the installed Firecrawl AnyDoc CLI (MIT). Conversion is local to the agent container.
Use the exact local attachment path supplied in the message. Current Chat SDK attachments normally use /workspace/inbox/<message-id>/<file>. Encode the path as a single-quoted shell literal, replacing each apostrophe with '"'"'. Never paste an untrusted path inside double quotes because command substitutions still execute there. Quote generated paths, put options before --, and put the input after it:
input_path='/workspace/inbox/<message-id>/<document>'
mkdir -p "/workspace/agent/converted"
output_dir="$(mktemp -d "/workspace/agent/converted/anydoc.XXXXXX")"
output_path="$output_dir/document.md"
timeout 60s anydoc -o "$output_path" -- "$input_path"
printf 'Converted document: %s\n' "$output_path"For example, this assigns a filename containing both shell syntax and an apostrophe without executing it:
input_path='/workspace/inbox/msg/report $(echo unsafe) '"'"'Q3'"'"'.docx'The -- prevents a filename beginning with - from becoming an option. If timeout is unavailable, run the same anydoc command without the wrapper.
For CSV read from stdin, name the format explicitly:
anydoc - --format csv < "$input_path"Prefer -o except for tiny inputs. Read only the relevant sections of large Markdown files instead of placing the complete output in model context.
7902716
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.