Skip to content

Releases: Nebutra/MinerU-Skill

v3.3.1

02 Jun 09:28

Choose a tag to compare

MinerU Skill v3.3.1

Installation

git clone https://github.com/Nebutra/MinerU-Skill.git ~/openclaw-skills/mineru/

Quick Start

# Zero-config (no token needed)
python3 scripts/mineru.py ./pdfs/ --output ./output/ --resume

# Optional: unlock the Standard API for large files / batch / extra formats
export MINERU_TOKEN="your-token"   # https://mineru.net/apiManage/token

📖 Documentation

What's Changed

  • build(deps): Bump actions/setup-python from 5 to 6 by @dependabot[bot] in #2
  • build(deps): bump softprops/action-gh-release from 2 to 3 by @dependabot[bot] in #7
  • build(deps): Bump actions/upload-artifact from 4 to 7 by @dependabot[bot] in #5
  • build(deps): Bump actions/download-artifact from 4 to 8 by @dependabot[bot] in #6

New Contributors

Full Changelog: v3.3.0...v3.3.1

v3.3.0

01 Jun 16:13

Choose a tag to compare

MinerU Skill v3.3.0

Installation

git clone https://github.com/Nebutra/MinerU-Skill.git ~/openclaw-skills/mineru/

Quick Start

# Zero-config (no token needed)
python3 scripts/mineru.py ./pdfs/ --output ./output/ --resume

# Optional: unlock the Standard API for large files / batch / extra formats
export MINERU_TOKEN="your-token"   # https://mineru.net/apiManage/token

📖 Documentation

Full Changelog: v3.2.0...v3.3.0

v3.2.0

01 Jun 14:03

Choose a tag to compare

MinerU Skill v3.2.0

Installation

git clone https://github.com/Nebutra/MinerU-Skill.git ~/openclaw-skills/mineru/

Quick Start

# Zero-config (no token needed)
python3 scripts/mineru.py ./pdfs/ --output ./output/ --resume

# Optional: unlock the Standard API for large files / batch / extra formats
export MINERU_TOKEN="your-token"   # https://mineru.net/apiManage/token

📖 Documentation

Full Changelog: v3.1.0...v3.2.0

v3.1.0

30 May 21:25

Choose a tag to compare

MinerU Skill v3.1.0

Installation

git clone https://github.com/Nebutra/MinerU-Skill.git ~/openclaw-skills/mineru/

Quick Start

# Zero-config (no token needed)
python3 scripts/mineru.py ./pdfs/ --output ./output/ --resume

# Optional: unlock the Standard API for large files / batch / extra formats
export MINERU_TOKEN="your-token"   # https://mineru.net/apiManage/token

📖 Documentation

Full Changelog: v3.0.0...v3.1.0

v3.0.0 — AI-Native rewrite + 15 sinks · batch fix · uv support

30 May 20:36

Choose a tag to compare

MinerU Skill v3.0.0

Installation

git clone https://github.com/Nebutra/MinerU-Skill.git ~/openclaw-skills/mineru/

Quick Start

# Zero-config (no token needed)
python3 scripts/mineru.py ./pdfs/ --output ./output/ --resume

# Optional: unlock the Standard API for large files / batch / extra formats
export MINERU_TOKEN="your-token"   # https://mineru.net/apiManage/token

📖 Documentation

What's Changed

  • feat: v3 AI-Native rewrite + 15 content-tool delivery integrations (Closes #8) by @TsekaLuk in #9

New Contributors

Full Changelog: v2.1.0...v3.0.0

v2.1.0 — Word/PPT/Image support + Language & Model params

28 Feb 03:11

Choose a tag to compare

MinerU Skill v2.1.0

Installation

git clone https://github.com/Nebutra/MinerU-Skill.git ~/openclaw-skills/mineru/

Quick Start

export MINERU_TOKEN="your-token"
python3 scripts/mineru_v2.py --dir ./pdfs/ --output ./output/ --resume

📖 Documentation

Full Changelog: v2.0.0...v2.1.0

🚀 v2.0.0 - High-Performance Async Engine

13 Feb 09:01

Choose a tag to compare

✨ What's New

🚀 Async Parallel Processing

  • asyncio + aiohttp - Single-threaded async, no GIL overhead
  • Connection Pool - Reuse TCP connections
  • Semaphore Control - Precise concurrency management
  • Auto Retry - 3x with exponential backoff

📊 Performance

Configuration Time Speed
Sequential (1 worker) 8.5 min 1.2 files/min
Parallel (5 workers) 3.2 min 3.1 files/min
Async (15 workers) 1.8 min 5.6 files/min

🎯 Features

  • 📄 Local files, URLs, batch directories
  • 📝 Markdown + JSON + Images output
  • 🔢 LaTeX formula preservation
  • 📊 Table extraction
  • 🔄 Auto resume support
  • 📁 Direct output to Obsidian

📦 Installation

git clone https://github.com/Nebutra/MinerU-Skill.git
cd MinerU-Skill
pip install requests aiohttp
export MINERU_TOKEN="your-token-here"

🚀 Quick Start

python scripts/mineru_v2.py --dir ./pdfs/ --output ./output/ --workers 10 --resume

Full Changelog: https://github.com/Nebutra/MinerU-Skill/commits/v2.0.0