What problem does it solve? Reading content from local documents like PDFs, DOCX files, or spreadsheets requires format-specific tooling, and dumping raw output into a conversation can overwhelm context. This Skill converts any local file into clean markdown saved to disk, so you can inspect it incrementally. ## Core Features & Use Cases - Multi-format parsing: Extract text from PDF, DOCX, DOC, ODT, RTF, XLSX, XLS, and HTML files into well-formatted markdown. - AI summaries and Q&A: Generate a summary of a document with -S or ask a specific question about its content with -Q. - Context-safe output: Results are written to .firecrawl/ on disk rather than streamed to stdout, so large documents never blow up the conversation context. - Use Case: A user drops a 200-page research PDF and asks for the main conclusions. Parse it to .firecrawl/paper.md, then grep or read sections incrementally instead of loading the whole file. ## Quick Start Ask the assistant to parse a local file, for example: "Parse ./report.pdf and save the markdown output, then summarize the key findings."