{
    "format": "skillpro/v1",
    "skill_id": "tencent-weknora-examples-skills-pdf-processing-skill-md",
    "name": "pdf-processing",
    "version": "1.0.0",
    "description": "Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.",
    "category": [
        "职场效率"
    ],
    "trigger_words": [],
    "tags": [],
    "source": "DeepseekModel",
    "source_url": "https://deepseekmodel.com/skill?id=tencent-weknora-examples-skills-pdf-processing-skill-md",
    "exported_at": "2026-09-16T08:59:20+08:00",
    "system_prompt": "name pdf-processing description Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction. PDF Processing This skill provides utilities for working with PDF documents. Quick Start Use pdfplumber to extract text from PDFs: import pdfplumber with pdfplumber. open ( \"document.pdf\" ) as pdf: text = pdf.pages[ 0 ].extract_text() print (text) Available Operations Text Extraction : Extract text content from PDF pages Table Extraction : Extract tabular data from PDFs Form Filling : Fill PDF forms with provided data Document Merging : Combine multiple PDFs into one Advanced Features Form filling : See FORMS.md for complete guide Utility scripts : Run scripts/analyze_form.py to extract form fields Run scripts/extract_text.py to extract text from a PDF Best Practices Always validate PDF files before processing Handle password-protected PDFs gracefully Check for scanned PDFs that may require OCR",
    "model_config": {
        "provider": "deepseek",
        "model": "deepseek-chat",
        "temperature": 0.7,
        "max_tokens": 4096,
        "top_p": 0.9
    },
    "examples": [
        {
            "input": "请用pdf-processing帮我处理问题",
            "output": "好的，我是pdf-processing。Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction. 我会根据你的需求提供专业帮助。"
        },
        {
            "input": "介绍一下你的能力",
            "output": "我是pdf-processing，专注于职场效率领域。Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction."
        }
    ],
    "install_guide": {
        "coze": "在 Coze 平台创建 Bot -> 技能配置 -> 导入此 .skill 文件",
        "dify": "在 Dify 平台创建应用 -> 添加知识库 -> 导入此 .skill 配置",
        "claude": "将 system_prompt 字段内容复制到 Claude 自定义指令中",
        "custom": "将此 .skill 文件加载到你的 AI Agent 框架中，解析 system_prompt 和 model_config 即可使用"
    },
    "scripts": {
        "python": "# pdf-processing - Python extension\n# Add custom Python logic here\ndef process(input_data):\n    return input_data\n",
        "javascript": "// pdf-processing - JavaScript extension\n// Add custom JS logic here\nfunction process(inputData) {\n    return inputData;\n}\n"
    },
    "tools": {
        "mcp_servers": [],
        "api_endpoints": []
    },
    "dependencies": {
        "python": [],
        "node": []
    },
    "hooks": {
        "on_load": "echo \"Skill loaded: pdf-processing\"",
        "on_call": "",
        "on_error": "echo \"Skill error: please check logs\""
    }
}