Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Arxiv Papers

v1.0.0

Find and summarize arXiv.org preprints—keyword/category search, abstracts, PDF links. Use for literature scans, paper IDs, or quick orientation (not peer-rev...

0· 112·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for codenova58/arxiv-papers.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Arxiv Papers" (codenova58/arxiv-papers) from ClawHub.
Skill page: https://clawhub.ai/codenova58/arxiv-papers
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install arxiv-papers

ClawHub CLI

Package manager switcher

npx clawhub@latest install arxiv-papers
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description (search and summarize arXiv) matches the included instructions and script: the shell script calls the arXiv API and SKILL.md describes parsing entries and optionally fetching PDFs. One minor mismatch: the package metadata declares no required binaries, but the script uses curl (so the runtime must provide curl).
Instruction Scope
SKILL.md stays on-topic: it instructs querying the arXiv API, summarizing abstracts, optionally fetching PDFs, and optionally appending entries to memory/RESEARCH_LOG.md. It does not instruct reading unrelated system files or exfiltrating data to third-party endpoints. The only persistence option is to append to a local memory file if available — this is explicit and optional.
Install Mechanism
No install spec and only a tiny, local shell script are included. There are no downloads, package installs, or external install steps — low risk.
Credentials
The skill declares no credentials or environment variables and does not request any. The optional memory write is local and optional. Nothing asks for unrelated secrets or system config.
Persistence & Privilege
always:false (default) and autonomous invocation allowed (normal). The skill suggests optionally appending notable papers to memory/RESEARCH_LOG.md — that is local persistence the agent may perform if configured. Users should be aware summaries could be stored in agent memory.
Assessment
This skill appears to do what it says: call the arXiv API and summarize results. Before installing, note two small operational points: (1) the included script uses curl but the skill metadata doesn't declare curl as required — ensure the agent runtime has curl on PATH; (2) queries are interpolated into the URL without URL-encoding (functional bug, not malicious)—beware odd characters in queries; (3) the skill can optionally append summaries to memory/RESEARCH_LOG.md, so check where your agent stores memory if you don't want persistent logs. Otherwise the code is tiny, uses only arXiv's public API, and requests no secrets or external installs.

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

latestvk971j0g167apj3gsagrwyr1ayd83qxhm
112downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

ArXiv Papers

Use the arXiv API (and optional PDF fetch) to locate papers and summarize abstracts for the user. Treat results as preprints—not necessarily peer-reviewed or final.

When to use

  • “What’s new on arXiv about …”, “Summarize arXiv:XXXX”, category browsing (e.g. cs.AI).
  • Quick orientation before deeper reading—not a substitute for reading the full paper in serious research.

Limits (say explicitly when relevant)

  • Coverage: arXiv only; many venues are not there.
  • Quality: preprint ≠ endorsed truth; contradictory claims exist.
  • Rate / ToS: respect arXiv’s API guidelines; don’t hammer endpoints.

Workflow

  1. Run scripts/search_arxiv.sh "<query>" and parse the returned XML (<entry>, <title>, <summary>, PDF <link>).

  2. Present title, authors, id, abstract summary, and link to abstract/PDF.

  3. If the user wants depth, PDF may be fetched selectively—large files and parsing limits apply.

  4. Optionally append notable papers to memory/RESEARCH_LOG.md (if your environment uses it):

    ### [YYYY-MM-DD] TITLE
    - **Authors**: …
    - **Link**: …
    - **Summary**: …
    

Examples

  • Latest LLM reasoning papers on arXiv.
  • “What is paper 2512.08769 about?”

Resources

  • scripts/search_arxiv.sh — thin wrapper over the arXiv API.

Comments

Loading comments...