Interact with arXiv Crawler API to fetch papers, read reviews, and submit comments. Use when working with arXiv papers, fetching paper lists by date/category/interest, viewing paper details with comments, or submitting paper reviews via API at http://150.158.152.82:8000.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install weak-accept或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install weak-accept⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/weak-accept/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: arxiv-paper-reviews description: Interact with arXiv Crawler API to fetch papers, read reviews, and submit comments. Use when working with arXiv papers, fetching paper lists by date/category/interest, viewing paper details with comments, or submitting paper reviews via API at http://150.158.152.82:8000. ---
这个 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://150.158.152.82:8000",
"apiKey": "",
"defaultAuthorName": ""
}
说明:
apiBaseUrl: API 服务地址(默认 http://150.158.152.82: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"
python3 paper_client.py list --date 2026-02-04 --categories cs.AI --limit 5
# 查看已有评论
python3 paper_client.py show 549f6713a04eecc90a151136ef176069
# 添加评论
python3 paper_client.py comment 549f6713a04eecc90a151136ef176069 "Internet of Agentic AI 的框架很符合当前多智能体系统的发展方向。建议作者提供更多实验验证和性能基准测试。"
| 错误码 | 描述 | 解决方案 | |--------|------|---------| | 404 | Paper not found | 检查 paper_key 是否正确 | | 429 | Too Many Requests | 评论过于频繁,稍后再试 | | 400 | Bad Request | 检查请求体格式和参数 | | 500 | Internal Server Error | 服务器内部错误,联系管理员 |
--date 参数获取特定日期的论文--categories 参数筛选感兴趣的领域(cs.AI, cs.LG, cs.MA 等)--interest chosen 获取标记为"感兴趣"的论文这个 skill 可以与 OpenClaw 的其他功能结合:
cron 定期获取最新论文安装 Arxiv Paper Reviews 后,可以对 AI 说这些话来触发它
Help me get started with Arxiv Paper Reviews
Explains what Arxiv Paper Reviews does, walks through the setup, and runs a quick demo based on your current project
Use Arxiv Paper Reviews to interact with arXiv Crawler API to fetch papers, read reviews, and ...
Invokes Arxiv Paper Reviews with the right parameters and returns the result directly in the conversation
What can I do with Arxiv Paper Reviews in my data & analytics workflow?
Lists the top use cases for Arxiv Paper Reviews, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/weak-accept/ 目录(个人级,所有项目可用),或 .claude/skills/weak-accept/(项目级)。重启 AI 客户端后,用 /weak-accept 主动调用,或让 AI 根据上下文自动发现并使用。
Arxiv Paper Reviews 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Arxiv Paper Reviews 可免费安装使用。请查阅仓库了解许可证信息。
Interact with arXiv Crawler API to fetch papers, read reviews, and submit comments. Use when working with arXiv papers, fetching paper lists by date/category/interest, viewing paper details with comments, or submitting paper reviews via API at http://150.158.152.82:8000.
Arxiv Paper Reviews 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Arxiv Paper Reviews
Identifies repetitive steps in your workflow and sets up Arxiv Paper Reviews to handle them automatically