npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

paddleocr-skills

v1.2.1

Published

PaddleOCR Skills - Install PP-OCRv5 and PaddleOCR-VL 1.5 for Claude Code

Readme

PaddleOCR Skills

One-command installer to add PaddleOCR Skills to your Claude Code project.

Quick Start

Install PaddleOCR Skills in your Claude Code project with a single command:

npx paddleocr-skills

The installer will:

  1. Prompt you to select skills (PP-OCRv5 and/or PaddleOCR-VL)
  2. Copy skill files to your project
  3. Install Python dependencies
  4. Guide you through API configuration
  5. Verify the installation

What's Included

PP-OCRv5 (Text OCR)

  • Fast text recognition for images and documents
  • Adaptive quality modes (auto/fast/quality)
  • Supports URLs and local files
  • Confidence scoring and quality metrics

PaddleOCR-VL (Document Parsing)

  • Advanced document structure analysis
  • Table, formula, and chart recognition
  • Layout detection (headers, footers, page numbers)
  • Complete document parsing with reading order

Prerequisites

  • Node.js: 14.0.0 or higher
  • Python: 3.7 or higher
  • Claude Code: Installed and configured
  • API Access: Get your API credentials at Baidu AI Studio

Installation

Interactive Mode (Recommended)

npx paddleocr-skills

The installer will guide you through:

  • Skill selection
  • Python dependency installation
  • API configuration

Skip Configuration

If you want to configure later:

npx paddleocr-skills
# Choose "No" when asked about configuration

Then configure manually:

# For PP-OCRv5
python scripts/ppocrv5/configure.py

# For PaddleOCR-VL
python scripts/paddleocr-vl-1.5/configure.py

Usage

After installation, use the skills in your Claude Code session:

PP-OCRv5 Example

# Extract text from an image
python scripts/ppocrv5/ocr_caller.py --file-url "https://example.com/image.jpg" --pretty

# Save result to file
python scripts/ppocrv5/ocr_caller.py --file-path "document.pdf" --output result.json --pretty

PaddleOCR-VL Example

# Parse a complex document
python scripts/paddleocr-vl-1.5/vl_caller.py --file-url "https://example.com/paper.pdf" --pretty

# Save result to file
python scripts/paddleocr-vl-1.5/vl_caller.py --file-path "invoice.pdf" --output result.json --pretty

Project Structure

After installation, your project will have:

your-project/
├── skills/
│   ├── ppocrv5/
│   │   └── SKILL.md
│   └── paddleocr-vl-1.5/
│       └── SKILL.md
├── scripts/
│   ├── ppocrv5/
│   │   ├── ocr_caller.py
│   │   ├── configure.py
│   │   ├── smoke_test.py
│   │   └── requirements.txt
│   └── paddleocr-vl-1.5/
│       ├── vl_caller.py
│       ├── configure.py
│       ├── smoke_test.py
│       └── requirements.txt
├── references/
│   ├── ppocrv5/
│   └── paddleocr-vl-1.5/
└── .env.example

Configuration

Manual Configuration

If you skipped auto-configuration, create a .env file:

# Copy the example file
cp .env.example .env

# Edit with your credentials
nano .env

Add your API credentials:

# PP-OCRv5
API_URL=https://your-api-url.aistudio-app.com/ocr
TOKEN=your-token-here

# PaddleOCR-VL
VL_API_URL=https://your-vl-api-url.com/v1
VL_TOKEN=your-vl-token-here

Using Configuration Scripts

# Configure PP-OCRv5
python scripts/ppocrv5/configure.py --api-url "YOUR_URL" --token "YOUR_TOKEN"

# Configure PaddleOCR-VL
python scripts/paddleocr-vl-1.5/configure.py --api-url "YOUR_URL" --token "YOUR_TOKEN"

Verification

Test your installation:

# Test PP-OCRv5
python scripts/ppocrv5/smoke_test.py

# Test PaddleOCR-VL
python scripts/paddleocr-vl-1.5/smoke_test.py

Troubleshooting

Python Not Found

Ensure Python is in your PATH:

python --version

If not found, install Python 3.7+ from python.org.

API Configuration Error

Get your API credentials:

  1. Visit Baidu AI Studio
  2. Create a new task or use an existing one
  3. Copy the API URL and TOKEN
  4. Run the configuration script

Permission Denied

On Windows, run your terminal as Administrator if you encounter permission errors.

Documentation

Each skill includes comprehensive documentation:

  • skills/ppocrv5/SKILL.md: PP-OCRv5 usage guide
  • skills/paddleocr-vl-1.5/SKILL.md: PaddleOCR-VL usage guide
  • references/: Technical reference documentation

License

MIT

Support

For issues and questions:

  • GitHub Issues: Report a bug
  • Documentation: See skills/*/SKILL.md files

Credits

Built with: