← All skills
Tencent SkillHub · Developer Tools

WiseDiag MedOCR

PDF OCR — Convert PDF to Markdown via WiseDiag cloud API (requires WISEDIAG_API_KEY). Files are uploaded to WiseDiag servers for processing. Supports table r...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

PDF OCR — Convert PDF to Markdown via WiseDiag cloud API (requires WISEDIAG_API_KEY). Files are uploaded to WiseDiag servers for processing. Supports table r...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, requirements.txt, scripts/wiseocr.py, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.21

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

⚠️ Privacy Warning

IMPORTANT - READ BEFORE INSTALLING: This skill uploads your files to WiseDiag's cloud servers for OCR processing. Do NOT use with sensitive or confidential documents unless: You trust WiseDiag's data handling policies You accept that file contents will be transmitted and processed remotely For sensitive documents, use offline/local OCR tools instead.

WiseOCR Skill (powered by WiseDiag)

A high-accuracy OCR tool that converts PDF files into Markdown format. After processing, the Markdown result is automatically saved to disk — no additional saving is needed.

Installation

pip install -r requirements.txt

🔑 API Key Setup (Required)

Get your API key: 👉 https://console.wisediag.com/apiKeyManage The API key MUST be set as an environment variable. The script reads it automatically. export WISEDIAG_API_KEY=your_api_key

How to Process a PDF (Step-by-Step)

NEVER call any API or HTTP endpoint directly. ONLY use the script below. Step 1: Set the API key (if not already set): export WISEDIAG_API_KEY=your_api_key Step 2: Run the script with the input PDF file: cd scripts python3 wiseocr.py -i "/path/to/input_filename.pdf" IMPORTANT: If the input file has been copied or renamed (e.g. to a temp path), always pass -n with the original filename (without extension) so the output file is named correctly: python3 wiseocr.py -i "/tmp/ocr_input.pdf" -n "my_report" # Output saved to: ~/.openclaw/workspace/WiseOCR/my_report.md The Markdown result is saved to ~/.openclaw/workspace/WiseOCR/{name}.md automatically. No additional saving is needed.

Arguments

FlagDescription-i, --inputInput PDF file path (required)-n, --nameOriginal filename without extension for output (recommended when input file is renamed/copied)-o, --outputOutput directory (default: ~/.openclaw/workspace/WiseOCR)--dpiPDF rendering DPI, 72-600 (default: 200)

Data Privacy

What happens to your files: Files are uploaded to WiseDiag's OCR API Files are processed on WiseDiag servers Processing results are returned to you Files are not permanently stored on WiseDiag servers For sensitive documents, use offline/local OCR tools instead.

License

MIT

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/wiseocr.py Scripts
  • requirements.txt Files