From document-to-markdown
Use when you have a scanned PDF with no embedded text layer and need to add OCR text
npx claudepluginhub danielrosehill/claude-code-plugins --plugin document-to-markdownThis skill uses the workspace's default tool permissions.
Add text recognition to image-only PDFs using `ocrmypdf`. This preprocesses scanned documents to make them readable by text-extraction tools.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Add text recognition to image-only PDFs using ocrmypdf. This preprocesses scanned documents to make them readable by text-extraction tools.
pdf-to-markdown on a scanned document--lang (optional; defaults to eng)--out (optional; defaults to <stem>-ocr.pdf next to source)pdftotext -layout <pdf> -. If output is substantial, warn the user that OCR may be unnecessary.ocrmypdf with sensible defaults: ocrmypdf --language=<lang> <input-pdf> <output-pdf>, where language defaults to eng if not specified.--force-ocr (OCR even if text layer exists), --redo-ocr (re-OCR if a layer already exists).<stem>-ocr.pdf next to the source.