Claude Code Plugins

Community-maintained marketplace

Feedback

processing-files

@binome-dev/humcp
1
0

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.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name processing-files
description 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.

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

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

With page limits

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

Response format

{
  "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