Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

pdf-text-extractionPDF text extraction 搜索

Agent Skill

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

总安装

3,067

周安装

92

GitHub Stars

10

下载量

796
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/allenai/asta-plugins --skill 'PDF Text Extraction'

简介

pdf-text-extraction 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 可通过 npx skills add 命令从指定仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

PDF Text Extraction

Extract high-quality text from PDFs using two OCR engines:

  • asta pdf-extraction olmocr — cloud-based extraction via olmOCR (best for large batches, S3, and complex layouts)
  • asta pdf-extraction remote — quick single-file extraction via the Asta remote OCR API

Installation

This skill requires the asta CLI:

# Install/reinstall at the correct version
PLUGIN_VERSION=0.14.0
if [ "$(asta --version 2>/dev/null | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" != "$PLUGIN_VERSION" ]; then
  uv tool install --force git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION
fi

Prerequisites: Python 3.11+ and uv package manager

Quick Start

olmocr (cloud batch extraction)

# Extract text from a PDF using a temporary workspace
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs document.pdf \
  --markdown

# Output will be in $TEMP_WORKSPACE/markdown/document.md

# Batch extract text from all PDFs in a directory
TEMP_WORKSPACE=$(mktemp -d)
find /path/to/pdfs -name "*.pdf" > "$TEMP_WORKSPACE/pdf-list.txt"
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs "$TEMP_WORKSPACE/pdf-list.txt" \
  --markdown

# Batch extract text from PDFs stored in S3
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs s3://my-bucket/prefix/*.pdf \
  --markdown

Key arguments:

  • <workspace> - Output directory (required: positional argument)
  • --pdfs - PDF file(s) to process (required: single path, path with wildcard, S3 path with wildcard, or a text file with paths)
  • --markdown - Generate markdown output (recommended)
  • --workers - Parallel workers (default: 20)

remote (single-file extraction)

# Print extracted markdown to stdout
asta pdf-extraction remote paper.pdf

# Save to a file
asta pdf-extraction remote paper.pdf -o paper.md

# Process a large PDF in steps (pages 0-49, then 50-99, etc.)
asta pdf-extraction remote paper.pdf --start-page 0  --max-pages 50 -o paper-part1.md
asta pdf-extraction remote paper.pdf --start-page 50 --max-pages 50 -o paper-part2.md

Key arguments:

  • <pdf> - PDF file to process (required: local path)
  • -o / --output - Output file path (default: stdout)
  • --start-page - First page to process, 0-indexed (default: 0)
  • --max-pages - Maximum number of pages to process (default: 50)
  • --images - Extract and save embedded images alongside the markdown; images are saved in the same directory as the output file and referenced by filename in the markdown

Requirements: Asta login (same as olmocr).

Workspace Best Practices

Use Temporary Workspace, Move Final Output

Recommended workflow:

# 1. Create temporary workspace (not in .asta/documents)
TEMP_WORKSPACE=$(mktemp -d)

# 2. Extract text
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs research-paper.pdf \
  --markdown

# 3. Move final output to permanent location
mkdir -p ~/.asta/documents/research
mv "$TEMP_WORKSPACE/markdown/research-paper.md" ~/.asta/documents/research/

# 4. Clean up temporary files
rm -rf "$TEMP_WORKSPACE"

Why use a temporary workspace?

  • olmOCR creates several intermediate files (JSON, work queues, etc.)
  • You typically only need the final markdown output
  • Keeping.asta/documents clean with only final outputs
  • Easy cleanup of temporary files

Where to store final outputs:

  • ~/.asta/documents/ - For indexing with asta documents
  • User's project directory - For project-specific documents
  • Any location convenient for the user's workflow

Common Workflows

Extract Single PDF

# Create temporary workspace and extract
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs paper.pdf \
  --markdown

# Review the extracted text
cat "$TEMP_WORKSPACE/markdown/paper.md"

# Move to permanent location
mkdir -p ~/.asta/documents/papers
mv "$TEMP_WORKSPACE/markdown/paper.md" ~/.asta/documents/papers/

# Clean up
rm -rf "$TEMP_WORKSPACE"

Extract Multiple PDFs

# Process all PDFs in a directory
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs papers/*.pdf \
  --markdown \
  --workers 10

# Move all extracted markdown files
mkdir -p ~/.asta/documents/batch
mv "$TEMP_WORKSPACE/markdown/"*.md ~/.asta/documents/batch/

# Clean up
rm -rf "$TEMP_WORKSPACE"

Extract and Index in Documents

# 1. Extract text to temporary workspace
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs research-paper.pdf \
  --markdown

# 2. Move to documents directory
mkdir -p ~/.asta/documents/research
FINAL_PATH=~/.asta/documents/research/research-paper.md
mv "$TEMP_WORKSPACE/markdown/research-paper.md" "$FINAL_PATH"

# 3. Index in asta documents
asta documents add "file://${FINAL_PATH}" \
  --name="Research Paper (OCR)" \
  --summary="Extracted via olmOCR" \
  --tags="ocr,extracted,research"

# 4. Clean up temporary workspace
rm -rf "$TEMP_WORKSPACE"

S3 Support

olmOCR supports reading PDFs from S3 and using S3 as a workspace.

Read PDFs from S3

# Extract PDF stored in S3
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs s3://my-bucket/documents/paper.pdf \
  --markdown

# Output will be in local workspace
cat "$TEMP_WORKSPACE/markdown/paper.md"

Use S3 as Workspace

# Use S3 bucket as workspace (requires AWS credentials)
asta pdf-extraction olmocr s3://my-bucket/ocr-workspace \
  --pdfs document.pdf \
  --markdown

# Output will be in s3://my-bucket/ocr-workspace/markdown/document.md

S3 Configuration:

  • Requires AWS credentials configured (via ~/.aws/credentials or environment variables)
  • Uses standard boto3 credential resolution
  • Can mix local and S3 paths (e.g., S3 PDFs to local workspace, or vice versa)

Output Structure

After extraction, the workspace directory contains:

workspace/
├── markdown/           # Markdown output (if --markdown used)
│   └── document.md
├── output/            # Raw JSON output
│   └── document.json
└── work_queue/        # Internal work tracking

The extracted text is saved as markdown, preserving:

  • Document structure
  • Headings and formatting
  • Tables (as markdown tables)
  • Lists and emphasis

Advanced Options

Control Parallelism

# Process with 50 parallel workers (faster for large batches)
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs papers/*.pdf \
  --workers 50 \
  --markdown

Filter Documents

# Apply filters to skip non-English or form-like documents
TEMP_WORKSPACE=$(mktemp -d)
asta pdf-extraction olmocr "$TEMP_WORKSPACE" \
  --pdfs documents/*.pdf \
  --apply_filter \
  --markdown

Workspace Statistics

# View statistics about a workspace
asta pdf-extraction olmocr ~/workspace/output --stats

Performance and Cost

  • Speed: ~10-20 seconds per page (cloud GPU)
  • Cost: ~$0.001-0.01 per typical PDF (10-50 pages)
  • No setup: Works immediately, API configuration handled automatically

Troubleshooting

"workspace is required"

The first argument must be a workspace directory:

# ✓ Correct
asta pdf-extraction olmocr ~/workspace/output --pdfs file.pdf ...

# ✗ Wrong (missing workspace)
asta pdf-extraction olmocr --pdfs file.pdf ...

"Connection failed"

  1. Verify internet connection
  2. Check if the service is currently available

"No output files"

Check the output directories:

  • Markdown: <workspace>/markdown/
  • JSON: <workspace>/output/

S3 Access Issues

  1. Verify AWS credentials are configured
  2. Check bucket permissions (read for --pdfs, read/write for workspace)
  3. Ensure IAM user/role has s3:GetObject, s3:PutObject, s3:ListBucket permissions

Choosing an Engine

olmocrremote
InputLocal file, S3 path, or globLocal file only
OutputFiles in workspace directoryStdout or single file
Batch processingYes (--workers)No
S3 supportYesNo
Auth requiredAsta loginAsta login
Best forLarge batches, complex layoutsQuick single-file extraction

When to Use This Skill

✅ Use PDF extraction when:

  • User wants to extract text from a PDF
  • User mentions "OCR", "read PDF", "extract from document"
  • Processing scanned or image-based PDFs
  • Dealing with complex layouts (tables, multi-column, equations)
  • Need high-quality text extraction for downstream tasks

❌ Don't use when:

  • User wants to process images directly (both engines are PDF-specific)
  • User needs real-time/streaming extraction

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.81%
按下载量换算277

Claude

28.69%
按下载量换算228

Cursor

19.97%
按下载量换算159

Gemini CLI

9.93%
按下载量换算79

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills