Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:149
forks:21
updated:1. Dezember 2025 um 17:06
Datei-Explorer
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)