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

paper-parser-skill论文解析技巧

Agent Skill

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

总安装

3,370

周安装

135

GitHub Stars

公开资料未说明

下载量

1,091
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paper-parser-skill

简介

CLI 工具,用于使用 MinerU API 从 arXiv 搜索、下载学术论文并将其解析为 AI 友好的 Markdown。

SKILL.md

name
paper-parser-skill
description
CLI tool to search, download, and parse academic papers from arXiv into AI-friendly Markdown using MinerU API.
version
0.1.4
author
KaiHangYang
homepage
https://github.com/KaiHangYang/paper-parser-skill
triggers
paper, arXiv ID, search, download, parse, agent-friendly
metadata
openclaw
requires
config
credentials

Paper Parser Skill

CLI tool for automated academic paper processing.

🛡️ Data Privacy & Security

[!IMPORTANT] External Data Processing: This skill transmits PDF files and paper metadata to MinerU (opendatalab) for layout analysis and Markdown conversion. Please ensure you trust the service and understand their data handling policies before providing an API token in the configuration file.

Security & Provenance:

  • Open Source: The full source code is available on GitHub.
  • Verified Package: This tool is published on PyPI as a standard Python package.
  • Local Control: All search results and downloaded PDFs are stored locally in your specified workspace.

Before Installing:

  1. Review the source code at GitHub for unexpected behavior.
  2. Understand that installing from PyPI executes third-party code on your system — use a virtual environment or container to limit blast radius if desired.
  3. The MINERU_API_TOKEN grants MinerU access to receive and process uploaded PDFs — use a dedicated, revocable token with minimal scope.
  4. Avoid uploading sensitive, unpublished, or confidential documents to MinerU — review their privacy and data retention policies.
  5. For sensitive documents requiring offline parsing, consider local alternatives that do not transmit PDFs externally.

🚀 Setup

[!WARNING] Installing from PyPI executes third-party code. Use a virtual environment if you want to limit blast radius.
pip install paper-parser-skill==v0.1.3

⚙️ Configuration

Default path: ~/.paper-parser/config.yaml

[!IMPORTANT] MINERU_API_TOKEN is required for parsing functionality. Get a token at mineru.net.
PAPER_WORKSPACE: "~/paper-parser-workspace"
MINERU_API_TOKEN: "your_token_here"  # Required for parsing
MINERU_API_BASE_URL: "https://mineru.net/api/v4"
MINERU_API_TIMEOUT: 600

📖 CLI Usage

Alias: pp

Basic Commands

CommandArgumentDescription
pp search<query>Search arXiv papers
pp download<id/query>Download PDF and metadata
pp path<id/query>Get local workspace path

Parsing Commands

[!TIP] Recommended for agent/automation use: pp submit + pp check (non-blocking async workflow). pp parse and pp all block the process until cloud processing completes, which can take several minutes and may time out. Prefer the async approach when calling from an agent or pipeline.
CommandArgumentOptionsDescription
pp submit<id/path>--force[Async ✅] Submit PDF for parsing and return immediately. Idempotent — safe to call repeatedly. If already submitted and pending, checks status instead of re-uploading.
pp check<id/path>[Async ✅] Check parse status once. Downloads results automatically when done.
pp parse<id/path>--force[Blocking ⚠️] Parse PDF synchronously. Blocks until complete. May time out on slow jobs.
pp all<id/query>--force[Blocking ⚠️] Full workflow (Search → Download → Parse). Blocks until complete. May time out on slow jobs.

Recommended Async Workflow (for agents)

# Step 1: Search for papers by keyword → pick an arXiv ID from results
pp search "retrieval augmented generation"
# → 1. Id: 2312.10997  Title: Retrieval-Augmented Generation for ...
# → 2. Id: 2401.00123  Title: ...

# Step 2: Submit for parsing and return immediately
#         (PDF is downloaded automatically if not already cached)
pp submit 2312.10997
# → ⬇️  Downloading PDF...
# → ✅ Submitted!  batch_id: xxxxxxxx

# (minutes later, the agent or user calls again)

# Step 3: Check status — downloads & extracts results automatically when done
pp check 2312.10997
# → "⏳ Still processing (state: running, 45s since submission)."
# → or "✅ Parsing complete!  📂 Results in: ~/paper-parser-workspace/2312.10997"

📂 Workspace Structure

PAPER_WORKSPACE/
└── <arxiv_id>/
    ├── paper.pdf
    ├── title.md
    ├── summary.md
    ├── .parse_task.json       ← async task state (batch_id, status, timestamps)
    └── markdowns/
        ├── 01_Introduction.md
        └── images/

🛠️ Requirements

  • Python >= 3.8
  • requests, click, PyYAML, arxiv, rapidfuzz
  • MinerU API Token: Required for the parsing stage. Add it to your config.yaml file. Get one at mineru.net.

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

OpenClaw

98.2%
按下载量换算1,071

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills