# Send PDF Reader (Iyeque) 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": "iyeque-pdf-reader",
    "name": "PDF Reader (Iyeque)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/iyeque/iyeque-pdf-reader",
    "canonicalUrl": "https://clawhub.ai/iyeque/iyeque-pdf-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/iyeque-pdf-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iyeque-pdf-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "reader.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "iyeque-pdf-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T19:27:06.000Z",
      "expiresAt": "2026-05-13T19:27:06.000Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iyeque-pdf-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iyeque-pdf-reader",
        "contentDisposition": "attachment; filename=\"iyeque-pdf-reader-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "iyeque-pdf-reader"
      },
      "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/iyeque-pdf-reader"
    },
    "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/iyeque-pdf-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/iyeque-pdf-reader",
    "agentUrl": "https://openagent3.xyz/skills/iyeque-pdf-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/iyeque-pdf-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/iyeque-pdf-reader/agent.md"
  }
}
```
## Documentation

### PDF Reader Skill

The pdf-reader skill provides functionality to extract text and retrieve metadata from PDF files using PyMuPDF (fitz).

### Tool API

The skill provides two commands:

### extract

Extracts plain text from the specified PDF file.

Parameters:

file_path (string, required): Path to the PDF file to extract text from.
--max_pages (integer, optional): Maximum number of pages to extract.

Usage:

python3 skills/pdf-reader/reader.py extract /path/to/document.pdf
python3 skills/pdf-reader/reader.py extract /path/to/document.pdf --max_pages 5

Output: Plain text content from the PDF.

### metadata

Retrieve metadata about the document.

Parameters:

file_path (string, required): Path to the PDF file.

Usage:

python3 skills/pdf-reader/reader.py metadata /path/to/document.pdf

Output: JSON object with PDF metadata including:

title: Document title
author: Document author
subject: Document subject
creator: Application that created the PDF
producer: PDF producer
creationDate: Creation date
modDate: Modification date
format: PDF format version
encryption: Encryption info (if any)

### Implementation Notes

Uses PyMuPDF (imported as pymupdf) for fast, reliable PDF processing
Supports encrypted PDFs (will return error if password required)
Handles large PDFs efficiently with max_pages option
Returns structured JSON for metadata command

### Example

# Extract text from first 3 pages
python3 skills/pdf-reader/reader.py extract report.pdf --max_pages 3

# Get document metadata
python3 skills/pdf-reader/reader.py metadata report.pdf
# Output:
# {
#   "title": "Annual Report 2024",
#   "author": "John Doe",
#   "creationDate": "D:20240115120000",
#   ...
# }

### Error Handling

Returns error message if file not found or not a valid PDF
Returns error if PDF is encrypted and requires password
Gracefully handles corrupted or malformed PDFs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: iyeque
- Version: 1.1.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-05-06T19:27:06.000Z
- Expires at: 2026-05-13T19:27:06.000Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/iyeque-pdf-reader)
- [Send to Agent page](https://openagent3.xyz/skills/iyeque-pdf-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/iyeque-pdf-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/iyeque-pdf-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/iyeque-pdf-reader)