
Arxiv Watcher
- 35 installs
- 61 repo stars
- Updated March 16, 2026
- kirkluokun/awesome-a-stock-openclawskills
Helps with ai & agent building tasks.
About
arxiv-watcher is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- arxiv-watcher
- AI & Agent Building
- AI-coding skill
Arxiv Watcher by the numbers
- 35 all-time installs (skills.sh)
- Ranked #8,740 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/kirkluokun/awesome-a-stock-openclawskills --skill arxiv-watcherAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 35 |
|---|---|
| repo stars | ★ 61 |
| Last updated | March 16, 2026 |
| Repository | kirkluokun/awesome-a-stock-openclawskills ↗ |
What it does
Helps with ai & agent building tasks.
Files
ArXiv 论文追踪器
本技能通过 ArXiv API 查找并摘要最新研究论文。
功能
- 搜索:按关键词、作者或分类查找论文。
- 摘要:获取论文摘要并提供简明概述。
- 保存记忆:自动将已摘要的论文记录到
memory/RESEARCH_LOG.md,用于长期追踪。 - 深度阅读:如有需要,通过
web_fetch访问 PDF 链接提取更多详情。
工作流
1. 使用 scripts/search_arxiv.sh "<query>" 获取 XML 结果。 2. 解析 XML(查找 <entry>、<title>、<summary>、<link title="pdf">)。 3. 向用户展示查找结果。 4. 必须执行:将讨论过的论文标题、作者、日期和摘要追加至 memory/RESEARCH_LOG.md,格式如下:
### [YYYY-MM-DD] 论文标题
- **Authors**: 作者列表
- **Link**: ArXiv 链接
- **Summary**: 论文简要摘要及其研究意义。示例
- "搜索 ArXiv 上关于 LLM reasoning 的最新论文。"
- "告诉我 ID 为 2512.08769 的论文讲了什么。"
- "给我总结一下今天 ArXiv 上关于 AI 智能体的最新动态。"
资源
scripts/search_arxiv.sh:直接访问 ArXiv API 的脚本。
{
"owner": "rubenfb23",
"slug": "arxiv-watcher",
"displayName": "ArXiv Watcher",
"latest": {
"version": "1.0.0",
"publishedAt": 1769434876997,
"commit": "https://github.com/clawdbot/skills/commit/8f7a7c8f69e939e8eb0690c343c17792d97db777"
},
"history": []
}
#!/usr/bin/env bash
# scripts/search_arxiv.sh
QUERY=$1
COUNT=${2:-5}
# Use curl to query ArXiv API
curl -sL "https://export.arxiv.org/api/query?search_query=all:$QUERY&start=0&max_results=$COUNT&sortBy=submittedDate&sortOrder=descending"
capture-arxiv-watcherRelated skills
AI & Agent Buildingagents