# Send Document Pro to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/document-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=document-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### 概述

赋予 AI 强大的文档处理能力：

PDF 读取与提取
Word 文档解析
PowerPoint 提取
Excel 数据提取
文档格式转换

### 触发场景

用户发送文档并要求"分析"、"总结"
用户要求"提取文档内容"
用户要求"转换成 PDF"
用户询问文档中的具体信息
用户要求"从报告/论文中提取要点"

### 支持的格式

格式读取写入工具PDF✅✅pdfplumber, PyPDF2DOCX✅✅python-docxPPTX✅❌python-pptxXLSX✅✅openpyxlTXT✅✅内置Markdown✅✅内置

### PDF 处理

# 提取文本
import pdfplumber

with pdfplumber.open("document.pdf") as pdf:
    for page in pdf.pages:
        text = page.extract_text()
        print(text)

# 提取表格
with pdfplumber.open("document.pdf") as pdf:
    table = pdf.pages[0].extract_tables()

### Word 文档

from docx import Document

doc = Document("document.docx")
for para in doc.paragraphs:
    print(para.text)

# 提取表格
for table in doc.tables:
    for row in table.rows:
        print([cell.text for cell in row.cells])

### PowerPoint

from pptx import Presentation

prs = Presentation("presentation.pptx")
for slide in prs.slides:
    for shape in slide.shapes:
        if shape.has_text_frame:
            print(shape.text)

### 工作流

1. 识别文档类型 → 选择正确的工具
2. 读取内容 → 提取文本、表格、图片
3. 分析信息 → 理解结构、提取要点
4. 总结呈现 → 用中文总结给用户

### 文档摘要

提取文档主要观点
生成简短摘要
列出关键要点

### 表格处理

识别表格结构
提取表格数据
转换为 CSV/Excel

### 关键词提取

找出重要名词/术语
识别主题
提取关键信息

### 输出格式

向用户呈现文档时：

文档类型和页数
主要内容摘要
关键要点（3-5条）
建议的后续操作

### 限制

扫描版 PDF 需要 OCR
复杂格式可能丢失
图片/图表无法完全理解
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Jackeven02
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T08:50:05.858Z
- Expires at: 2026-05-06T08:50:05.858Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/document-pro)
- [Send to Agent page](https://openagent3.xyz/skills/document-pro/agent)
- [JSON manifest](https://openagent3.xyz/skills/document-pro/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/document-pro/agent.md)
- [Download page](https://openagent3.xyz/downloads/document-pro)