Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计提醒

pdf-text-extractorPDF text extractor 搜索

Agent Skill

pdf-text-extractor 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

375,888

周安装

15,662

GitHub Stars

19

下载量

125,296
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pdf-text-extractor(PDF text extractor 搜索)
来源仓库:https://github.com/michael-laffin/pdf-text-extractor
安装命令:
openclaw skills install pdf-text-extractor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pdf-text-extractor

简介

通过 OCR 支持从 PDF 中提取文本。非常适合数字化文档、处理发票或分析内容。需要零依赖。

SKILL.md

name
pdf-text-extractor
description
Extract text from PDFs with OCR support. Perfect for digitizing documents, processing invoices, or analyzing content. Zero dependencies required.
metadata

PDF-Text-Extractor - Extract Text from PDFs

Vernox Utility Skill - Perfect for document digitization.

Overview

PDF-Text-Extractor is a zero-dependency tool for extracting text content from PDF files. Supports both embedded text extraction (for text-based PDFs) and OCR (for scanned documents).

Features

✅ Text Extraction

  • Extract text from PDFs without external tools
  • Support for both text-based and scanned PDFs
  • Preserve document structure and formatting
  • Fast extraction (milliseconds for text-based)

✅ OCR Support

  • Use Tesseract.js for scanned documents
  • Support multiple languages (English, Spanish, French, German)
  • Configurable OCR quality/speed
  • Fallback to text extraction when possible

✅ Batch Processing

  • Process multiple PDFs at once
  • Batch extraction for document workflows
  • Progress tracking for large files
  • Error handling and retry logic

✅ Output Options

  • Plain text output
  • JSON output with metadata
  • Markdown conversion
  • HTML output (preserving links)

✅ Utility Features

  • Page-by-page extraction
  • Character/word counting
  • Language detection
  • Metadata extraction (author, title, creation date)

Installation

clawhub install pdf-text-extractor

Quick Start

Extract Text from PDF

const result = await extractText({
  pdfPath: './document.pdf',
  options: {
    outputFormat: 'text',
    ocr: true,
    language: 'eng'
  }
});

console.log(result.text);
console.log(`Pages: ${result.pages}`);
console.log(`Words: ${result.wordCount}`);

Batch Extract Multiple PDFs

const results = await extractBatch({
  pdfFiles: [
    './document1.pdf',
    './document2.pdf',
    './document3.pdf'
  ],
  options: {
    outputFormat: 'json',
    ocr: true
  }
});

console.log(`Extracted ${results.length} PDFs`);

Extract with OCR

const result = await extractText({
  pdfPath: './scanned-document.pdf',
  options: {
    ocr: true,
    language: 'eng',
    ocrQuality: 'high'
  }
});

// OCR will be used (scanned document detected)

Tool Functions

extractText

Extract text content from a single PDF file.

Parameters:

  • pdfPath (string, required): Path to PDF file
  • options (object, optional): Extraction options

- outputFormat (string): 'text' | 'json' | 'markdown' | 'html' - ocr (boolean): Enable OCR for scanned docs - language (string): OCR language code ('eng', 'spa', 'fra', 'deu') - preserveFormatting (boolean): Keep headings/structure - minConfidence (number): Minimum OCR confidence score (0-100)

Returns:

  • text (string): Extracted text content
  • pages (number): Number of pages processed
  • wordCount (number): Total word count
  • charCount (number): Total character count
  • language (string): Detected language
  • metadata (object): PDF metadata (title, author, creation date)
  • method (string): 'text' or 'ocr' (extraction method)

extractBatch

Extract text from multiple PDF files at once.

Parameters:

  • pdfFiles (array, required): Array of PDF file paths
  • options (object, optional): Same as extractText

Returns:

  • results (array): Array of extraction results
  • totalPages (number): Total pages across all PDFs
  • successCount (number): Successfully extracted
  • failureCount (number): Failed extractions
  • errors (array): Error details for failures

countWords

Count words in extracted text.

Parameters:

  • text (string, required): Text to count
  • options (object, optional):

- minWordLength (number): Minimum characters per word (default: 3) - excludeNumbers (boolean): Don't count numbers as words - countByPage (boolean): Return word count per page

Returns:

  • wordCount (number): Total word count
  • charCount (number): Total character count
  • pageCounts (array): Word count per page
  • averageWordsPerPage (number): Average words per page

detectLanguage

Detect the language of extracted text.

Parameters:

  • text (string, required): Text to analyze
  • minConfidence (number): Minimum confidence for detection

Returns:

  • language (string): Detected language code
  • languageName (string): Full language name
  • confidence (number): Confidence score (0-100)

Use Cases

Document Digitization

  • Convert paper documents to digital text
  • Process invoices and receipts
  • Digitize contracts and agreements
  • Archive physical documents

Content Analysis

  • Extract text for analysis tools
  • Prepare content for LLM processing
  • Clean up scanned documents
  • Parse PDF-based reports

Data Extraction

  • Extract data from PDF reports
  • Parse tables from PDFs
  • Pull structured data
  • Automate document workflows

Text Processing

  • Prepare content for translation
  • Clean up OCR output
  • Extract specific sections
  • Search within PDF content

Performance

Text-Based PDFs

  • Speed: ~100ms for 10-page PDF
  • Accuracy: 100% (exact text)
  • Memory: ~10MB for typical document

OCR Processing

  • Speed: ~1-3s per page (high quality)
  • Accuracy: 85-95% (depends on scan quality)
  • Memory: ~50-100MB peak during OCR

Technical Details

PDF Parsing

  • Uses native PDF.js library
  • Extracts text layer directly (no OCR needed)
  • Preserves document structure
  • Handles password-protected PDFs

OCR Engine

  • Tesseract.js under the hood
  • Supports 100+ languages
  • Adjustable quality/speed tradeoff
  • Confidence scoring for accuracy

Dependencies

  • ZERO external dependencies
  • Uses Node.js built-in modules only
  • PDF.js included in skill
  • Tesseract.js bundled

Error Handling

Invalid PDF

  • Clear error message
  • Suggest fix (check file format)
  • Skip to next file in batch

OCR Failure

  • Report confidence score
  • Suggest rescan at higher quality
  • Fallback to basic extraction

Memory Issues

  • Stream processing for large files
  • Progress reporting
  • Graceful degradation

Configuration

Edit config.json:

{
  "ocr": {
    "enabled": true,
    "defaultLanguage": "eng",
    "quality": "medium",
    "languages": ["eng", "spa", "fra", "deu"]
  },
  "output": {
    "defaultFormat": "text",
    "preserveFormatting": true,
    "includeMetadata": true
  },
  "batch": {
    "maxConcurrent": 3,
    "timeoutSeconds": 30
  }
}

Examples

Extract from Invoice

const invoice = await extractText('./invoice.pdf');
console.log(invoice.text);
// "INVOICE #12345 Date: 2026-02-04..."

Extract from Scanned Contract

const contract = await extractText('./scanned-contract.pdf', {
  ocr: true,
  language: 'eng',
  ocrQuality: 'high'
});
console.log(contract.text);
// "AGREEMENT This contract between..."

Batch Process Documents

const docs = await extractBatch([
  './doc1.pdf',
  './doc2.pdf',
  './doc3.pdf',
  './doc4.pdf'
]);
console.log(`Processed ${docs.successCount}/${docs.results.length} documents`);

Troubleshooting

OCR Not Working

  • Check if PDF is truly scanned (not text-based)
  • Try different quality settings (low/medium/high)
  • Ensure language matches document
  • Check image quality of scan

Extraction Returns Empty

  • PDF may be image-only
  • OCR failed with low confidence
  • Try different language setting

Slow Processing

  • Large PDF takes longer
  • Reduce quality for speed
  • Process in smaller batches

Tips

Best Results

  • Use text-based PDFs when possible (faster, 100% accurate)
  • High-quality scans for OCR (300 DPI+)
  • Clean background before scanning
  • Use correct language setting

Performance Optimization

  • Batch processing for multiple files
  • Disable OCR for text-based PDFs
  • Lower OCR quality for speed when acceptable

Roadmap

  • [ ] PDF/A support
  • [ ] Advanced OCR pre-processing
  • [ ] Table extraction from OCR
  • [ ] Handwriting OCR
  • [ ] PDF form field extraction
  • [ ] Batch language detection
  • [ ] Confidence scoring visualization

License

MIT


Extract text from PDFs. Fast, accurate, zero dependencies. 🔮

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.54%
按下载量换算95,902

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills