ArXiv Watcher

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears purpose-aligned for searching ArXiv, with disclosed external API use and a disclosed persistent research log that users should be aware of.

This skill looks safe for its stated ArXiv search purpose. Before installing, be aware that search terms are sent to ArXiv and discussed papers are automatically saved to memory/RESEARCH_LOG.md for long-term tracking.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Search topics entered by the user may be transmitted to ArXiv to retrieve paper results.

Why it was flagged

The helper sends user search terms to the ArXiv API using curl. This is expected for an ArXiv search skill, but users should know their queries are sent to an external service.

Skill content
curl -sL "https://export.arxiv.org/api/query?search_query=all:$QUERY&start=0&max_results=$COUNT&sortBy=submittedDate&sortOrder=descending"
Recommendation

Use the skill for research queries you are comfortable sending to ArXiv, and avoid including private or confidential text in search terms.

What this means

The skill may fail or behave differently on systems without curl available.

Why it was flagged

The script depends on curl, while the registry requirements declare no required binaries. This is a small metadata mismatch rather than suspicious behavior.

Skill content
# Use curl to query ArXiv API
curl -sL "https://export.arxiv.org/api/query?..."
Recommendation

Ensure curl is available before use, or update the metadata to declare curl as a required binary.

What this means

Your research interests and paper summaries can persist across future sessions in the memory log.

Why it was flagged

The skill intentionally creates a persistent research log. This is disclosed and aligned with daily research tracking, but it stores a record of papers and topics discussed.

Skill content
**MANDATORY**: Append the title, authors, date, and summary of any paper discussed to `memory/RESEARCH_LOG.md`.
Recommendation

Review or clear memory/RESEARCH_LOG.md if you do not want long-term tracking of discussed papers.