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

paper-review论文评审

Agent Skill

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

总安装

7,951

周安装

328

GitHub Stars

公开资料未说明

下载量

2,598
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paper-review

简介

基于 OpenJudge 流程审查论文正确性与新颖性。

  • 支持 PDF 与 LaTeX 源码包(.tar.gz/.zip)。
  • 提供多阶段评估与反馈建议。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适用于投稿前自检与高要求评审场景。
  • paper-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
paper-review
description
>

Paper Review Skill

Multi-stage academic paper review using the OpenJudge PaperReviewPipeline:

  1. Safety check — jailbreak detection + format validation
  2. Correctness — objective errors (math, logic, data inconsistencies)
  3. Review — quality, novelty, significance (score 1–6)
  4. Criticality — severity of correctness issues
  5. BibTeX verification — cross-checks references against CrossRef/arXiv/DBLP

Prerequisites

# Install OpenJudge
pip install py-openjudge

# Extra dependency for paper_review
pip install litellm
pip install pypdfium2  # only if using vision mode (use_vision_for_pdf=True)

Gather from user before running

InfoRequired?Notes
Paper file pathYesPDF or .tar.gz/.zip TeX package
API keyYesEnv var preferred: OPENAI_API_KEY, ANTHROPIC_API_KEY, etc.
Model nameNogpt-5.2, anthropic/claude-opus-4-6, dashscope/qwen-vl-plus. See Model selection below
DisciplineNoIf not given, uses general CS/ML-oriented prompts
VenueNoe.g. "NeurIPS 2025", "The Lancet"
InstructionsNoFree-form reviewer guidance, e.g. "Focus on experimental design"
LanguageNo"en" (default) or "zh" for Simplified Chinese output
BibTeX fileNoRequired only for reference verification
CrossRef emailNoImproves API rate limits for BibTeX verification

Quick start

File type is auto-detected: .pdf → PDF review, .tar.gz/.zip → TeX review, .bib → BibTeX verification.

# Basic PDF review
python -m cookbooks.paper_review paper.pdf

# With discipline and venue
python -m cookbooks.paper_review paper.pdf \
  --discipline cs --venue "NeurIPS 2025"

# Chinese output
python -m cookbooks.paper_review paper.pdf --language zh

# Custom reviewer instructions
python -m cookbooks.paper_review paper.pdf \
  --instructions "Focus on experimental design and reproducibility"

# PDF + BibTeX verification
python -m cookbooks.paper_review paper.pdf \
  --bib references.bib --email your@email.com

# Vision mode (for models that prefer images over text extraction)
python -m cookbooks.paper_review paper.pdf \
  --vision --vision_max_pages 30 --format_vision_max_pages 10

# TeX source package
python -m cookbooks.paper_review paper_source.tar.gz \
  --discipline biology --email your@email.com

# TeX source package with Chinese output and custom instructions
python -m cookbooks.paper_review paper_source.tar.gz \
  --language zh --instructions "This is a short paper, be concise"

# Verify a standalone BibTeX file
python -m cookbooks.paper_review --bib_only references.bib --email your@email.com

All options

FlagDefaultDescription
input (positional)Path to PDF, TeX package, or .bib file
--bib_onlyPath to .bib file for standalone verification (no review)
--modelgpt-4oModel name
--api_keyenv varAPI key
--base_urlCustom API endpoint — must end at /v1, not /v1/chat/completions (litellm appends the path automatically)
--disciplineAcademic discipline
--venueTarget conference/journal
--instructionsFree-form reviewer guidance
--languageenOutput language: en or zh
--bibPath to .bib file (for PDF review + reference verification)
--emailCrossRef mailto for BibTeX check
--paper_namefilename stemPaper title in report
--outputautoOutput .md report path
--no_safetyoffSkip safety checks
--no_correctnessoffSkip correctness check
--no_criticalityoffSkip criticality verification
--no_biboffSkip BibTeX verification
--visiononUse vision mode (requires pypdfium2); enabled by default
--vision_max_pages30Max pages in vision mode (0 = all)
--format_vision_max_pages10Max pages for format check (0 = use --vision_max_pages)
--timeout7500API timeout in seconds

Interpreting results

Review score (1–6):

  • 1–2: Reject (major flaws or well-known results)
  • 3: Borderline reject
  • 4: Borderline accept
  • 5–6: Accept / Strong accept

Correctness score (1–3):

  • 1: No objective errors
  • 2: Minor errors (notation, arithmetic in non-critical parts)
  • 3: Major errors (wrong proofs, core algorithm flaws)

BibTeX verification:

  • verified: found in CrossRef/arXiv/DBLP
  • suspect: title/author mismatch or not found — manual check recommended

Model selection

This pipeline uses litellm for model calls. Provider prefixes are handled automatically by the pipeline — see the table below.

IMPORTANT: The model MUST support multimodal (vision) input. PDF review uses vision mode (--vision) to render pages as images, which requires a vision-capable model. Text-only models will fail or produce empty reviews.

The --model value uses a provider/model-name convention so the pipeline knows which API endpoint to call. The table below shows the exact string to pass:

Provider--model valueEnv varNotes
OpenAIgpt-5.2, gpt-5-mini, …OPENAI_API_KEYNo prefix needed; gpt-5.2 is the current flagship vision model; check OpenAI models for the latest
Anthropicanthropic/claude-opus-4-6, anthropic/claude-sonnet-4-6, …ANTHROPIC_API_KEYUse anthropic/ prefix; claude-opus-4-6 is the current flagship; check Anthropic models for the latest
DashScope (Qwen)dashscope/qwen-vl-plus, dashscope/qwen-vl-max, …DASHSCOPE_API_KEYUse dashscope/ prefix; the pipeline auto-routes to DashScope’s OpenAI-compatible endpoint
Custom endpointbare model name--api_key + --base_urlUse the model name your endpoint expects; no prefix needed when --base_url is set
Note on prefixes: The dashscope/ and anthropic/ prefixes are interpreted by the pipeline itself — do not add them to the actual API key or base URL. For OpenAI models the bare model name (e.g. gpt-5.2) is sufficient.

If the user does not specify a model, choose one based on available API keys:

  1. DASHSCOPE_API_KEY set → use dashscope/qwen-vl-plus (vision-capable)
  2. OPENAI_API_KEY set → search web for the latest vision-capable OpenAI model and use it (currently gpt-5.2)
  3. ANTHROPIC_API_KEY set → search web for the latest vision-capable Anthropic model and use it with anthropic/ prefix (currently anthropic/claude-opus-4-6)

Vision mode is enabled by default for PDF review. Pages are rendered as images, which preserves formatting, figures, and tables. To disable, pass --no_vision (not recommended). The model must support multimodal (vision) input.

Additional resources

Troubleshooting API errors

CRITICAL: When the pipeline fails with an API error, you MUST diagnose and fix the root cause. Do NOT fall back to reading the PDF as plain text yourself and calling the API manually — this bypasses the entire review pipeline and produces incorrect, incomplete results.

Diagnose by reading the full error message, then follow the checklist below:

AuthenticationError / 401

  • The API key is wrong or not set.
  • Check the correct env var for the provider (see Model selection table).
  • For DashScope: echo $DASHSCOPE_API_KEY — must be non-empty.
  • Fix: export the correct key and re-run.

NotFoundError / 404 — model not found

  • The model name string is wrong.
  • Search the web for the provider's current model list and use the exact API ID.
  • Common mistakes: using a ChatGPT UI name instead of the API ID, outdated snapshot suffix.
  • Fix: correct --model and re-run.

BadRequestError / 400

  • Often caused by --base_url ending with /v1/chat/completions instead of /v1.

litellm appends the path automatically — strip everything after /v1.

  • May also indicate the model does not support vision/image input.

Use a vision-capable model (see Model selection) or omit --vision.

  • Fix: correct --base_url or switch to a vision-capable model and re-run.

Connection error / endpoint not reachable

  • --base_url points to the wrong host or port.
  • Test the endpoint first: curl <base_url>/models -H "Authorization: Bearer <key>"
  • Fix: correct --base_url to the reachable endpoint and re-run.

Timeout

  • The model is taking too long (common for long PDFs with vision mode).
  • Fix: increase --timeout (default 7500 s) or reduce --vision_max_pages.

After fixing, always re-run the full pipeline command.

Never summarise or interpret the paper yourself as a substitute for a failed pipeline run.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.46%
按下载量换算2,168

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills