{
  "schemaVersion": "1.0",
  "item": {
    "slug": "document-pro",
    "name": "Document Pro",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/Jackeven02/document-pro",
    "canonicalUrl": "https://clawhub.ai/Jackeven02/document-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/document-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=document-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "document-pro",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T08:50:05.858Z",
      "expiresAt": "2026-05-06T08:50:05.858Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=document-pro",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=document-pro",
        "contentDisposition": "attachment; filename=\"document-pro-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "document-pro"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/document-pro"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/document-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/document-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/document-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/document-pro/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "概述",
        "body": "赋予 AI 强大的文档处理能力：\n\nPDF 读取与提取\nWord 文档解析\nPowerPoint 提取\nExcel 数据提取\n文档格式转换"
      },
      {
        "title": "触发场景",
        "body": "用户发送文档并要求\"分析\"、\"总结\"\n用户要求\"提取文档内容\"\n用户要求\"转换成 PDF\"\n用户询问文档中的具体信息\n用户要求\"从报告/论文中提取要点\""
      },
      {
        "title": "支持的格式",
        "body": "格式读取写入工具PDF✅✅pdfplumber, PyPDF2DOCX✅✅python-docxPPTX✅❌python-pptxXLSX✅✅openpyxlTXT✅✅内置Markdown✅✅内置"
      },
      {
        "title": "PDF 处理",
        "body": "# 提取文本\nimport pdfplumber\n\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    for page in pdf.pages:\n        text = page.extract_text()\n        print(text)\n\n# 提取表格\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    table = pdf.pages[0].extract_tables()"
      },
      {
        "title": "Word 文档",
        "body": "from docx import Document\n\ndoc = Document(\"document.docx\")\nfor para in doc.paragraphs:\n    print(para.text)\n\n# 提取表格\nfor table in doc.tables:\n    for row in table.rows:\n        print([cell.text for cell in row.cells])"
      },
      {
        "title": "PowerPoint",
        "body": "from pptx import Presentation\n\nprs = Presentation(\"presentation.pptx\")\nfor slide in prs.slides:\n    for shape in slide.shapes:\n        if shape.has_text_frame:\n            print(shape.text)"
      },
      {
        "title": "工作流",
        "body": "1. 识别文档类型 → 选择正确的工具\n2. 读取内容 → 提取文本、表格、图片\n3. 分析信息 → 理解结构、提取要点\n4. 总结呈现 → 用中文总结给用户"
      },
      {
        "title": "文档摘要",
        "body": "提取文档主要观点\n生成简短摘要\n列出关键要点"
      },
      {
        "title": "表格处理",
        "body": "识别表格结构\n提取表格数据\n转换为 CSV/Excel"
      },
      {
        "title": "关键词提取",
        "body": "找出重要名词/术语\n识别主题\n提取关键信息"
      },
      {
        "title": "输出格式",
        "body": "向用户呈现文档时：\n\n文档类型和页数\n主要内容摘要\n关键要点（3-5条）\n建议的后续操作"
      },
      {
        "title": "限制",
        "body": "扫描版 PDF 需要 OCR\n复杂格式可能丢失\n图片/图表无法完全理解"
      }
    ],
    "body": "Document Pro - 文档处理技能\n概述\n\n赋予 AI 强大的文档处理能力：\n\nPDF 读取与提取\nWord 文档解析\nPowerPoint 提取\nExcel 数据提取\n文档格式转换\n触发场景\n用户发送文档并要求\"分析\"、\"总结\"\n用户要求\"提取文档内容\"\n用户要求\"转换成 PDF\"\n用户询问文档中的具体信息\n用户要求\"从报告/论文中提取要点\"\n支持的格式\n格式\t读取\t写入\t工具\nPDF\t✅\t✅\tpdfplumber, PyPDF2\nDOCX\t✅\t✅\tpython-docx\nPPTX\t✅\t❌\tpython-pptx\nXLSX\t✅\t✅\topenpyxl\nTXT\t✅\t✅\t内置\nMarkdown\t✅\t✅\t内置\n工具使用\nPDF 处理\n# 提取文本\nimport pdfplumber\n\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    for page in pdf.pages:\n        text = page.extract_text()\n        print(text)\n\n# 提取表格\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    table = pdf.pages[0].extract_tables()\n\nWord 文档\nfrom docx import Document\n\ndoc = Document(\"document.docx\")\nfor para in doc.paragraphs:\n    print(para.text)\n\n# 提取表格\nfor table in doc.tables:\n    for row in table.rows:\n        print([cell.text for cell in row.cells])\n\nPowerPoint\nfrom pptx import Presentation\n\nprs = Presentation(\"presentation.pptx\")\nfor slide in prs.slides:\n    for shape in slide.shapes:\n        if shape.has_text_frame:\n            print(shape.text)\n\n工作流\n1. 识别文档类型 → 选择正确的工具\n2. 读取内容 → 提取文本、表格、图片\n3. 分析信息 → 理解结构、提取要点\n4. 总结呈现 → 用中文总结给用户\n\n进阶功能\n文档摘要\n提取文档主要观点\n生成简短摘要\n列出关键要点\n表格处理\n识别表格结构\n提取表格数据\n转换为 CSV/Excel\n关键词提取\n找出重要名词/术语\n识别主题\n提取关键信息\n输出格式\n\n向用户呈现文档时：\n\n文档类型和页数\n主要内容摘要\n关键要点（3-5条）\n建议的后续操作\n限制\n扫描版 PDF 需要 OCR\n复杂格式可能丢失\n图片/图表无法完全理解"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Jackeven02/document-pro",
    "publisherUrl": "https://clawhub.ai/Jackeven02/document-pro",
    "owner": "Jackeven02",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/document-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/document-pro",
    "agentUrl": "https://openagent3.xyz/skills/document-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/document-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/document-pro/agent.md"
  }
}