arxiv-search — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited arxiv-search (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Search the arXiv API for academic papers. No authentication required.
https://export.arxiv.org/api/querycurl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=10&sortBy=submittedDate&sortOrder=descending"Replace spaces in QUERY with +. For multi-word phrases, use %22phrase%22 for exact match.
ti: — titleau: — authorabs: — abstractcat: — category (e.g. cs.AI, cs.CL, stat.ML)all: — all fieldsCombine with AND, OR, ANDNOT:
# Papers about transformers in NLP
curl -sL "https://export.arxiv.org/api/query?search_query=ti:transformer+AND+cat:cs.CL&max_results=10&sortBy=submittedDate&sortOrder=descending"
# Papers by a specific author
curl -sL "https://export.arxiv.org/api/query?search_query=au:hinton&max_results=10&sortBy=submittedDate&sortOrder=descending"curl -sL "https://export.arxiv.org/api/query?id_list=2301.07041"Multiple IDs: id_list=2301.07041,2305.18290
Use start parameter:
# Results 11-20
curl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&start=10&max_results=10&sortBy=submittedDate&sortOrder=descending"The response is Atom XML. Extract these fields from each <entry>:
| Field | XML Path | Notes |
|---|---|---|
| Title | <title> | May contain line breaks — normalize |
| Authors | <author><name> | Multiple entries |
| Abstract | <summary> | May contain LaTeX |
| Published | <published> | ISO 8601 date |
| Updated | <updated> | Latest version date |
| arXiv ID | <id> | URL form, extract ID from path |
| PDF link | <link rel="related" title="pdf"> | Direct PDF URL |
| Categories | <category term="..."> | Primary + secondary |
| Comment | <arxiv:comment> | Page count, conference info |
Present results as a numbered list:
1. **Title of Paper** (arXiv:2301.07041)
Authors: First Author, Second Author, et al.
Published: 2023-01-17 | Categories: cs.CL, cs.AI
Abstract: First 2-3 sentences of the abstract...
PDF: https://arxiv.org/pdf/2301.07041For single paper lookups, show the full abstract.
| Code | Field |
|---|---|
| cs.AI | Artificial Intelligence |
| cs.CL | Computation and Language (NLP) |
| cs.CV | Computer Vision |
| cs.LG | Machine Learning |
| cs.SE | Software Engineering |
| cs.CR | Cryptography and Security |
| stat.ML | Machine Learning (Stats) |
| math.OC | Optimization and Control |
| eess.SP | Signal Processing |
| quant-ph | Quantum Physics |
sortBy=submittedDate&sortOrder=descending for recent papersmax_results=10 as default, increase if user wants moreYYMM.NNNNN (e.g. 2301.07041)subject/YYMMNNN format (e.g. hep-th/9901001)https://arxiv.org/abs/IDhttps://arxiv.org/pdf/IDIf the user wants to read a paper's full content, fetch the PDF URL and use the Read tool on it, or use WebFetch on the abstract page for the HTML version.
For the abstract page (lighter weight):
curl -sL "https://arxiv.org/abs/2301.07041"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.