skills$openclaw/arxiv-watcher
rubenfb232.7k

by rubenfb23

arxiv-watcher – OpenClaw Skill

arxiv-watcher is an OpenClaw Skills integration for ai ml workflows. 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.

2.7k stars6.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

namearxiv-watcher
descriptionSearch 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. OpenClaw Skills integration.
ownerrubenfb23
repositoryrubenfb23/arxiv-watcher
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @rubenfb23/arxiv-watcher
last updatedFeb 7, 2026

Maintainer

rubenfb23

rubenfb23

Maintains arxiv-watcher in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
search_arxiv.sh
238 B
_meta.json
281 B
SKILL.md
1.4 KB
SKILL.md

name: arxiv-watcher description: 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.

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:
    ### [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.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install arxiv-watcher?

Run openclaw add @rubenfb23/arxiv-watcher in your terminal. This installs arxiv-watcher into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/rubenfb23/arxiv-watcher. Review commits and README documentation before installing.