AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Mineru

skill-woodfishhhh-ez-math-model-mineru · by woodfishhhh

|

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-woodfishhhh-ez-math-model-mineru

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-woodfishhhh-ez-math-model-mineru)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mineru? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

mineru — PDF 高质量解析

何时使用

  • 题目 PDF 含中文 + 表格 + 公式(pdfplumber 输出乱序时)
  • 阅读 external/zhanwen-mathmodel/ 下的优秀论文
  • 转换 docx / pptx 为 markdown

入口

本子 skill 自带 Python 实现;调用宿主已安装的 mineru-open-api CLI 或 mineru Python 包。详细 CLI 文档见 mineru 官方 skill

模式选择决策树

文件 ≤ 10MB 且 ≤ 20页 且 不需表格识别
  → flash-extract(零配置、最快)

文件 > 10MB 或 > 20页 或 需要表格 / 公式 / OCR
  → extract(要 token,注册免费领)
  → 备用:本地 CLI mineru(开源,自动下载模型)

命令模板

# Flash 模式(推荐起手)
mineru-open-api flash-extract problem.pdf -o workdir/.../out --language ch

# 限页(>20 页时)
mineru-open-api flash-extract problem.pdf -o workdir/.../out --language ch --pages 1-20

# Extract 精确模式(需 token;写入 EZMM_MINERU_TOKEN)
mineru-open-api auth                         # 一次性配置
mineru-open-api extract problem.pdf -o workdir/.../out --language ch --table --formula

# 本地 CLI(无 token,开源版)
pip install -U mineru
mineru -p problem.pdf -o workdir/.../out

入参约定

| 参数 | 默认 | 说明 | |---|---|---| | --language | ch | 中文文档;英文用 en;混合 ch_server | | --pages | 全部 | flash 模式下题目 > 20 页时按 1-20 分批 | | -o | stdout | 写入指定目录(推荐);不写参数则 markdown 走 stdout |

配置

| Env Var | 必需 | 用途 | |---|---|---| | EZMM_MINERU_TOKEN | extract 模式必需 | 注册免费领,flash 不需要 |

失败诊断

| 错误 | 原因 | 处理 | |---|---|---| | file page count exceeds API limit | flash 限 20 页 | 加 --pages 1-20;或换 extract(要 token) | | TLS handshake timeout | 网络抖动 | 重试 1 次;仍失败降级 pdfplumber | | no API token found | extract 缺 token | 调 mineru-open-api auth 或 fallback flash | | 输出 Markdown 含大量 `` | 论文图片占位 | 正常;只对文字部分有效 |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.