ArXiv Watcher

v1.0.0

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.

1· 1.9k·3 current·3 all-time
byRubén Fernández Boullón@rubenfb23
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description match the implementation: a small bash script queries the ArXiv API and SKILL.md describes searching and summarizing. No unrelated credentials, binaries, or installs are requested. The 'save to memory' feature is coherent with the stated 'long-term tracking' capability, though it is not declared as a separate permission.
!
Instruction Scope
SKILL.md contains concrete runtime steps (call scripts/search_arxiv.sh, parse XML, present results) which are appropriate, but it also requires a MANDATORY append of every discussed paper to memory/RESEARCH_LOG.md and instructs the agent to use web_fetch on PDF links for deeper extraction. The mandatory persistent write and arbitrary PDF fetchs extend the agent's IO/networking beyond simple querying and summarization and may capture or store content the user did not explicitly approve.
Install Mechanism
No install spec; this is instruction-only with one small shell script that uses curl to call the public ArXiv API. Low installation risk and no downloads from untrusted hosts.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate to its stated purpose.
!
Persistence & Privilege
Although always:false (so it won't be force-included), the skill mandates writing to a persistent memory file (memory/RESEARCH_LOG.md) for every paper discussed. Automatic, unconditional writes to persistent agent memory are a notable privilege: they can accumulate data without repeated user consent and may expose sensitive content if the memory is later accessed or shared.
What to consider before installing
This skill appears to do what it advertises (it queries ArXiv and summarizes results), but be aware it will automatically append summaries to memory/RESEARCH_LOG.md and can fetch PDFs for deeper extraction. Before installing or enabling it: (1) confirm where memory/RESEARCH_LOG.md is stored and whether that storage is private; (2) require the skill to ask for explicit user approval before saving any summary (or make saving optional); (3) consider disabling or restricting the 'web_fetch' PDF download behavior unless you trust the sources and understand the implications; (4) if you share this agent or its memory, understand that saved summaries could be visible to others; (5) because the skill is from an unknown source, review or sandbox the skill (or fork and remove the mandatory save) if you want to reduce persistent-write behavior. These precautions will reduce privacy and data-accumulation risks.

Like a lobster shell, security has layers — review code before you run it.

latestvk97be1ha174apcx95hcpdpntt17zzh4z
1.9kdownloads
1stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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.

Comments

Loading comments...