arxiv-watcher

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

ArXiv Watcher

ArXiv Watcher

This skill interacts with the ArXiv API to find and summarize the latest research papers.
本Skill可与ArXiv API交互,查找并总结最新研究论文。

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.
  • 搜索:通过关键词、作者或分类查找论文。
  • 总结:获取论文摘要并生成简洁的总结内容。
  • 保存至内存:自动将已总结的论文记录到
    memory/RESEARCH_LOG.md
    中,用于长期追踪。
  • 深度挖掘:若用户有需求,可通过
    web_fetch
    获取PDF链接中的更多细节。

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.
  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.

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."
  • "查找ArXiv上关于LLM推理的最新论文。"
  • "告诉我编号为2512.08769的论文内容是什么。"
  • "为我总结今日ArXiv上关于Agents的最新动态。"

Resources

相关资源

  • scripts/search_arxiv.sh
    : Direct API access script.
  • scripts/search_arxiv.sh
    :直接调用API的脚本。