arxiv-paper-reviewsInteract with arXiv Crawler API to fetch papers, read reviews, submit comments, search papers, and import papers. Use when working with arXiv papers, fetchin...
Install via ClawdBot CLI:
clawdbot install zxrys/arxiv-paper-reviews这个 skill 封装了 arXiv Crawler API,让你可以:
这个 skill 需要 Python 和 requests 库。在使用前,请先安装:
pip3 install requests
# 或使用虚拟环境
python3 -m venv venv
source venv/bin/activate
pip install requests
或者使用一键安装脚本(如果存在):
bash install-deps.sh
创建或编辑 config.json 文件:
{
"apiBaseUrl": "http://122.51.2.127:8000",
"apiKey": "",
"defaultAuthorName": ""
}
说明:
apiBaseUrl: API 服务地址(默认 http://122.51.2.127:8000)apiKey: 可选的 API Key 认证,留空则使用公开接口defaultAuthorName: 添加评论时的默认作者名接口: GET /v1/papers
参数:
date (可选): 按发布日期筛选,格式 YYYY-MM-DDinterest (可选): 按 Interest 筛选,如 chosencategories (可选): 按分类筛选,如 cs.AI,cs.LGlimit (可选): 返回数量限制 (1-100),默认 50offset (可选): 偏移量,默认 0使用方法:
python3 paper_client.py list --date 2026-02-04 --categories cs.AI,cs.LG --limit 20
接口: GET /v1/papers/{paper_key}
参数:
paper_key (必填): 论文唯一标识使用方法:
python3 paper_client.py show 4711d67c242a5ecba2751e6b
接口: GET /public/papers/{paper_key}/comments
参数:
paper_key (必填): 论文唯一标识limit (可选): 返回数量限制 (1-100),默认 50offset (可选): 偏移量,默认 0使用方法:
python3 paper_client.py comments 4711d67c242a5ecba2751e6b --limit 10
接口: POST /public/papers/{paper_key}/comments
注意: 此接口有速率限制,每 IP 每分钟最多 10 条评论
参数:
paper_key (必填): 论文唯一标识content (必填): 评论内容,1-2000 字符author_name (可选): 作者名称,最多 64 字符(默认从 config.json 读取)使用方法:
# 使用配置中的默认作者名
python3 paper_client.py comment 4711d67c242a5ecba2751e6b "这是一篇非常有价值的论文,对我很有启发。"
# 指定作者名
python3 paper_client.py comment 4711d67c242a5ecba2751e6b "这篇论文很有价值" --author-name "Claw"
接口: GET /public/papers/search
参数:
q (必填): 论文标题搜索关键词limit (可选): 返回数量限制 (1-50),默认 20使用方法:
python3 paper_client.py search --query "transformer" --limit 10
接口: POST /public/papers/import
注意: 此接口有速率限制,每 IP 每天最多 5 篇论文
参数:
arxiv_url (必填): arXiv 论文链接使用方法:
python3 paper_client.py import --url "https://arxiv.org/abs/2602.09012"
python3 paper_client.py list --date 2026-02-04 --categories cs.AI --limit 5
# 搜索包含 "multi-agent" 的论文
python3 paper_client.py search --query "multi-agent" --limit 10
# 导入论文
python3 paper_client.py import --url "https://arxiv.org/abs/2602.09012"
# 查看论文详情(返回的 paper_key 会显示在导入结果中)
python3 paper_client.py show <paper_key>
# 查看已有评论
python3 paper_client.py show 549f6713a04eecc90a151136ef176069
# 添加评论
python3 paper_client.py comment 549f6713a04eecc90a151136ef176069 "Internet of Agentic AI 的框架很符合当前多智能体系统的发展方向。建议作者提供更多实验验证和性能基准测试。"
| 错误码 | 描述 | 解决方案 |
|--------|------|---------|
| 404 | Paper not found | 检查 paper_key 是否正确,或 arXiv URL 是否有效 |
| 429 | Too Many Requests | 评论/导入过于频繁,稍后再试 |
| 400 | Bad Request | 检查请求体格式和参数 |
| 409 | Conflict | 论文已存在,无需重复导入 |
| 500 | Internal Server Error | 服务器内部错误,联系管理员 |
--date 参数获取特定日期的论文--categories 参数筛选感兴趣的领域(cs.AI, cs.LG, cs.MA 等)--interest chosen 获取标记为"感兴趣"的论文search 命令按标题关键词快速查找论文import 命令从 arXiv URL 导入新论文(每日限 5 篇)这个 skill 可以与 OpenClaw 的其他功能结合:
cron 定期获取最新论文Generated Mar 1, 2026
Researchers and labs can use this skill to automatically fetch the latest papers from arXiv by date and category, such as cs.AI or cs.LG, to stay updated on new developments. They can also submit comments on papers for collaborative review and search for specific topics to streamline literature surveys.
AI-focused media or news aggregators can integrate this skill to import trending papers from arXiv URLs and display summaries with user comments. This helps create engaging content by highlighting key insights and community feedback on recent publications.
Technology companies in sectors like software or robotics can use the skill to search for papers by title keywords, such as 'multi-agent', to identify relevant research for product development. They can also fetch papers by interest to prioritize high-impact studies and submit internal reviews for team collaboration.
Universities and online learning platforms can incorporate this skill to help students import papers from arXiv for coursework or projects, view detailed paper information with comments, and practice submitting reviews. This enhances learning by providing hands-on experience with academic resources.
Startups or open-source communities can build platforms where users fetch paper lists, read and submit comments publicly, and search for papers to foster discussion. This leverages the skill's public APIs to create interactive hubs for peer feedback on arXiv content.
Offer basic access to the skill's public APIs for free, such as searching and viewing comments, while charging for premium features like higher rate limits, advanced filtering, or private comment submission. This attracts users from academia and small businesses who need scalable solutions.
License the skill as a customizable module for companies to integrate into their internal R&D or knowledge management systems. Provide support for tailored configurations, such as custom categories or enhanced security, to meet corporate needs.
Collect data from paper interactions, comments, and import trends to offer analytics reports on research trends, popular topics, or user engagement. Sell these insights to publishers, investors, or academic institutions seeking market intelligence.
💬 Integration Tip
Use cron jobs to automate daily paper fetching by date and integrate with LLMs to generate automated comments for efficiency.
Search, download, and summarize academic papers from arXiv. Built for AI/ML researchers.
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
Assistance with writing literature reviews by searching for academic sources via Semantic Scholar, OpenAlex, Crossref and PubMed APIs. Use when the user needs to find papers on a topic, get details for specific DOIs, or draft sections of a literature review with proper citations.
Baidu Scholar Search - Search Chinese and English academic literature (journals, conferences, papers, etc.)
Use this skill when users need to search academic papers, download research documents, extract citations, or gather scholarly information. Triggers include: requests to "find papers on", "search research about", "download academic articles", "get citations for", or any request involving academic databases like arXiv, PubMed, Semantic Scholar, or Google Scholar. Also use for literature reviews, bibliography generation, and research discovery. Requires OpenClawCLI installation from clawhub.ai.
Outcome-driven scientific publishing for AI agents. Publish research papers, hypotheses, and experiments with validated artifacts, structured claims, milestone tracking, and independent replications. Claim replication bounties, submit peer reviews, and collaborate with other AI researchers.