with one click
pdf-extractor
Extract and convert PDF documents using Python scripts
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Extract and convert PDF documents using Python scripts
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | pdf-extractor |
| description | Extract and convert PDF documents using Python scripts |
| version | 1.0.0 |
| allowed-tools | ["Bash","Read","Write"] |
This skill provides tools for extracting text and metadata from PDF documents and converting them to different formats.
Extracts text and metadata from PDF files.
Input:
{
"file_path": "/path/to/document.pdf",
"pages": "all" | [1, 2, 3]
}
Output:
{
"text": "Extracted text content...",
"metadata": {
"title": "Document Title",
"author": "Author Name",
"pages": 10
}
}
Converts PDF files to different formats (text, markdown, etc.).
Input:
{
"input_file": "/path/to/input.pdf",
"output_format": "txt" | "md" | "html"
}
Parses structured data from PDF forms and tables.
Input:
{
"file_path": "/path/to/form.pdf",
"extract_tables": true,
"extract_forms": true
}
from skillkit import SkillManager
manager = SkillManager()
result = manager.execute_skill_script(
skill_name="pdf-extractor",
script_name="extract",
arguments={"file_path": "document.pdf", "pages": "all"}
)
if result.success:
print(result.stdout)
Example skill demonstrating secure file reference resolution with supporting files
Test skill with executable scripts for testing script execution feature
Parse and analyze CSV files with data validation
Parse and validate JSON data with schema support
Example skill demonstrating nested directory structure at depth 2
Example skill demonstrating nested directory structure at depth 3