Pdf Reader Cn

v1.0.0

Extract text, tables, and metadata from PDFs; analyze, summarize, and search PDF content, including specific pages or page ranges.

0· 115·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wancy86/pdf-reader-cn.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pdf Reader Cn" (wancy86/pdf-reader-cn) from ClawHub.
Skill page: https://clawhub.ai/wancy86/pdf-reader-cn
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pdf-reader-cn

ClawHub CLI

Package manager switcher

npx clawhub@latest install pdf-reader-cn
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (extract, analyze, summarize PDFs) match the included scripts and SKILL.md. The two Python scripts implement text/table extraction and summary/metadata reporting using pdfplumber; nothing requested or included is disproportionate to that purpose.
Instruction Scope
SKILL.md only tells the agent to run the provided local scripts and references local files; the scripts read only the PDF path provided and produce local output. There are no instructions to read unrelated files, environment variables, or to transmit data elsewhere.
Install Mechanism
No install spec is provided (instruction-only). The code depends on standard Python PDF libraries (pdfplumber / PyMuPDF mentioned in references) but does not fetch or execute remote code. This is low-risk; the only operational requirement is installing the Python dependency from normal package sources.
Credentials
The skill does not request environment variables, credentials, or config paths. The scripts access only the PDF file path the user supplies and produce local output; requested privileges are proportional to the stated functionality.
Persistence & Privilege
always is false and the skill does not attempt to modify agent/system configuration. Autonomous invocation is allowed by default (disable-model-invocation false) which is normal and not by itself a red flag here.
Assessment
This skill appears to be a straightforward local PDF extractor written in Python. Before installing or running: (1) ensure you install pdfplumber (and any other listed dependencies) from trusted package sources (pip) in a controlled environment (virtualenv/container), (2) only run the scripts on PDFs you trust or in an isolated environment—malicious PDFs can trigger harmful parser behavior in some viewers, and (3) confirm you are comfortable giving the tool access to any PDFs you process (it will read the files you pass to it). The skill does not request credentials or perform network communication according to the provided files.

Like a lobster shell, security has layers — review code before you run it.

latestvk979za9zqa17rw5hv8y0da7g75843hqe
115downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

PDF Reader Skill

Extract and analyze content from PDF files using pdfplumber and PyMuPDF.

Quick Start

For basic text extraction, use the provided script:

python scripts/extract_pdf.py <path-to-pdf>

Capabilities

  • Text extraction - Extract all text from PDF pages
  • Table extraction - Extract tables as structured data
  • Metadata - Get PDF metadata (author, pages, etc.)
  • Page-specific - Extract from specific pages or ranges
  • Search - Find specific text within PDF

Scripts

ScriptPurpose
scripts/extract_pdf.pyExtract text from PDF
scripts/analyze_pdf.pyAnalyze and summarize PDF content

References

  • references/pdf-libraries.md - Python PDF library documentation

Usage Examples

Extract all text:

python scripts/extract_pdf.py document.pdf

Extract specific page:

python scripts/extract_pdf.py document.pdf --page 5

Analyze and summarize:

python scripts/analyze_pdf.py document.pdf

Comments

Loading comments...