Use this skill when the user wants to convert PDF files to Markdown.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-582ead44)More formats (shields.io, HTML) on the badges page.
---
name: pdf2md
description: Use this skill when the user wants to convert PDF files to Markdown.
---
# PDF2md Plugin
PDF to Markdown converter. Parse PDF files and convert them into Markdown format.
## Commands
### File Conversion
- `pdf2md file convert` — Convert PDF to Markdown
## Usage Examples
- "pdf2md file convert --input_folder ./pdfs --output_folder ./md"
- "pdf2md file convert --input_folder ./pdfs --output_folder ./md --recursive"
## Installation
```bash
npm install -g @opendocsg/pdf2md
```
## Examples
```bash
# Convert PDFs in a folder
npx @opendocsg/pdf2md --inputFolderPath=./pdfs --outputFolderPath=./md
# Convert recursively (subfolders included)
npx @opendocsg/pdf2md --inputFolderPath=./pdfs --outputFolderPath=./md --recursive
# For large recursive conversions with memory issues
node lib/pdf2md-cli.js --max-old-space-size=4096 --inputFolderPath=./pdfs --outputFolderPath=./md --recursive
```
## Key Features
- PDF to Markdown conversion
- Batch folder conversion
- Recursive folder processing
- Preserves document structure
- Extracts text content
- Cross-platform support
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!