Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:149
forks:21
updated:1 de diciembre de 2025, 17:06
Explorador de archivos
SKILL.md
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)