stvlynn/qclaw-skills · Archived

arxiv-watcher

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.

First seen Mar 21, 2026

Installation

$ npx skills add stvlynn/qclaw-skills --skill arxiv-watcher

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from stvlynn/qclaw-skills · top by installs.

npx skills add stvlynn/qclaw-skills

Browse all from stvlynn/qclaw-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,419 B
  • docs SUMMARY.md 167 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.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] TITLEOFPAPER - 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.