# Processing Files

> Converts PDF files to markdown text. Use when the user wants to extract text from PDFs, convert PDFs to readable format, or process PDF documents.

- Skill: `tomevault-io/processing-files` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/processing-files`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/processing-files/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/processing-files

---


# File Processing Tools

Tools for converting and processing file formats.

## PDF to Markdown

Extract text from PDF files and convert to markdown format.

### Basic usage

```python
result = await pdf_to_markdown(file_path="/path/to/document.pdf")
# Returns: {"success": True, "data": {"markdown": "# Document Title\n\nContent..."}}
```

### With page limits

```python
# Extract first 5 pages only
result = await pdf_to_markdown(
    file_path="/path/to/document.pdf",
    max_pages=5
)
```

### Response format

```json
{
  "success": true,
  "data": {
    "markdown": "extracted markdown content",
    "page_count": 10,
    "file_path": "/path/to/document.pdf"
  }
}
```

## Requirements

Requires `pymupdf` package for PDF processing.

## When to use

- Converting PDF reports to readable text
- Extracting content from PDF documents
- Processing PDF files for further analysis

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/binome-dev) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

