arxiv-watcher

TotalClaw 作者 totalclaw

从 ArXiv 搜索并总结论文。当用户询问最新研究、ArXiv 上的特定主题或 AI 论文的每日摘要时使用。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~rubenfb23-arxiv-watcher
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~rubenfb23-arxiv-watcher/file -o rubenfb23-arxiv-watcher.md
# ArXiv Watcher

This skill interacts with the ArXiv API to find and summarize the latest research papers.

## Capabilities

- **Search**: Find papers by keyword, author, or category.
- **Summarize**: Fetch the abstract and provide a concise summary.
- **Save to Memory**: Automatically record summarized papers to `memory/RESEARCH_LOG.md` for long-term tracking.
- **Deep Dive**: Use `web_fetch` on the PDF link to extract more details if requested.

## Workflow

1. Use `scripts/search_arxiv.sh "<query>"` to get the XML results.
2. Parse the XML (look for `<entry>`, `<title>`, `<summary>`, and `<link title="pdf">`).
3. Present the findings to the user.
4. **MANDATORY**: Append the title, authors, date, and summary of any paper discussed to `memory/RESEARCH_LOG.md`. Use the format:
   ```markdown
   ### [YYYY-MM-DD] TITLE_OF_PAPER
   - **Authors**: Author List
   - **Link**: ArXiv Link
   - **Summary**: Brief summary of the paper and its relevance.
   ```

## Examples

- "Busca los últimos papers sobre LLM reasoning en ArXiv."
- "Dime de qué trata el paper con ID 2512.08769."
- "Hazme un resumen de las novedades de hoy en ArXiv sobre agentes."

## Resources

- `scripts/search_arxiv.sh`: Direct API access script.

---

## 中文说明

# ArXiv Watcher

本技能与 ArXiv API 交互,用于查找并总结最新的研究论文。

## 能力

- **搜索**:按关键词、作者或类别查找论文。
- **总结**:获取摘要并提供简洁的概述。
- **保存到记忆**:自动将已总结的论文记录到 `memory/RESEARCH_LOG.md`,以便长期追踪。
- **深入研究**:如有需要,对 PDF 链接使用 `web_fetch` 以提取更多细节。

## 工作流程

1. 使用 `scripts/search_arxiv.sh "<query>"` 获取 XML 结果。
2. 解析 XML(查找 `<entry>`、`<title>`、`<summary>` 和 `<link title="pdf">`)。
3. 将查找结果呈现给用户。
4. **必须执行**:将讨论过的任何论文的标题、作者、日期和摘要追加到 `memory/RESEARCH_LOG.md`。使用以下格式:
   ```markdown
   ### [YYYY-MM-DD] TITLE_OF_PAPER
   - **Authors**: Author List
   - **Link**: ArXiv Link
   - **Summary**: Brief summary of the paper and its relevance.
   ```

## 示例

- "Busca los últimos papers sobre LLM reasoning en ArXiv."
- "Dime de qué trata el paper con ID 2512.08769."
- "Hazme un resumen de las novedades de hoy en ArXiv sobre agentes."

## 资源

- `scripts/search_arxiv.sh`:直接访问 API 的脚本。