بنقرة واحدة
pdf-extractor
Extract and convert PDF documents using Python scripts
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Extract and convert PDF documents using Python scripts
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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
| 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)