alterlab-arxiv — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited alterlab-arxiv (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.
This skill provides Python tools for searching and retrieving preprints from arXiv.org via its public Atom API. It supports keyword search, author search, category filtering, arXiv ID lookup, and PDF download. Results are returned as structured JSON with titles, abstracts, authors, categories, and links.
The script declares its requests dependency via a PEP 723 inline header, so the most reliable way to run it is uv run scripts/arxiv_search.py ... (resolves deps automatically). The python scripts/arxiv_search.py ... examples below work when requests is already installed.
Use this skill when:
2309.10668)cs.LG, cs.CL, stat.ML)Consider alternatives when:
Search for papers by keywords in titles, abstracts, or all fields.
python scripts/arxiv_search.py \
--keywords "sparse autoencoders" "mechanistic interpretability" \
--max-results 20 \
--output results.jsonWith category filter:
python scripts/arxiv_search.py \
--keywords "transformer" "attention mechanism" \
--category cs.LG \
--max-results 50 \
--output transformer_papers.jsonSearch specific fields:
# Title only
python scripts/arxiv_search.py \
--keywords "GRPO" \
--search-field ti \
--max-results 10
# Abstract only
python scripts/arxiv_search.py \
--keywords "reward model" "RLHF" \
--search-field abs \
--max-results 30python scripts/arxiv_search.py \
--author "Anthropic" \
--max-results 50 \
--output anthropic_papers.jsonpython scripts/arxiv_search.py \
--author "Ilya Sutskever" \
--category cs.LG \
--max-results 20Retrieve metadata for specific papers:
python scripts/arxiv_search.py \
--ids 2309.10668 2406.04093 2310.01405 \
--output sae_papers.jsonFull arXiv URLs also accepted:
python scripts/arxiv_search.py \
--ids "https://arxiv.org/abs/2309.10668"List recent papers in a category:
python scripts/arxiv_search.py \
--category cs.AI \
--max-results 100 \
--sort-by submittedDate \
--output recent_cs_ai.jsonpython scripts/arxiv_search.py \
--ids 2309.10668 \
--download-pdf papers/Batch download from search results:
import json
from scripts.arxiv_search import ArxivSearcher
searcher = ArxivSearcher()
# Search first
results = searcher.search(query="ti:sparse autoencoder", max_results=5)
# Download all
for paper in results:
arxiv_id = paper["arxiv_id"]
searcher.download_pdf(arxiv_id, f"papers/{arxiv_id.replace('/', '_')}.pdf")| Category | Description |
|---|---|
cs.AI | Artificial Intelligence |
cs.CL | Computation and Language (NLP) |
cs.CV | Computer Vision |
cs.LG | Machine Learning |
cs.NE | Neural and Evolutionary Computing |
cs.RO | Robotics |
cs.CR | Cryptography and Security |
cs.DS | Data Structures and Algorithms |
cs.IR | Information Retrieval |
cs.SE | Software Engineering |
| Category | Description |
|---|---|
stat.ML | Machine Learning (Statistics) |
stat.ME | Methodology |
math.OC | Optimization and Control |
math.ST | Statistics Theory |
| Category | Description |
|---|---|
q-bio.BM | Biomolecules |
q-bio.GN | Genomics |
q-bio.QM | Quantitative Methods |
q-fin.ST | Statistical Finance |
eess.SP | Signal Processing |
physics.comp-ph | Computational Physics |
Full list: see references/api_reference.md.
The arXiv API uses prefix-based field searches combined with Boolean operators.
Field prefixes:
ti: - Titleau: - Authorabs: - Abstractcat: - Categoryall: - All fields (default)co: - Commentjr: - Journal referenceid: - arXiv IDBoolean operators (must be UPPERCASE):
ti:transformer AND abs:attention
au:bengio OR au:lecun
cat:cs.LG ANDNOT cat:cs.CVGrouping with parentheses:
(ti:sparse AND ti:autoencoder) AND cat:cs.LG
au:anthropic AND (abs:interpretability OR abs:alignment)Examples:
from scripts.arxiv_search import ArxivSearcher
searcher = ArxivSearcher()
# Papers about SAEs in ML
results = searcher.search(
query="ti:sparse autoencoder AND cat:cs.LG",
max_results=50,
sort_by="submittedDate"
)
# Specific author in specific field
results = searcher.search(
query="au:neel nanda AND cat:cs.LG",
max_results=20
)
# Complex boolean query
results = searcher.search(
query="(abs:RLHF OR abs:reinforcement learning from human feedback) AND cat:cs.CL",
max_results=100
)All searches return structured JSON:
{
"query": "id_list:2309.10668",
"result_count": 1,
"results": [
{
"arxiv_id": "2309.10668",
"title": "Language Modeling Is Compression",
"authors": ["Grégoire Delétang", "Anian Ruoss", "..."],
"abstract": "Full abstract text...",
"categories": ["cs.LG", "cs.AI", "cs.CL", "cs.IT"],
"primary_category": "cs.LG",
"published": "2023-09-19T14:50:38Z",
"updated": "2024-03-18T23:15:47Z",
"doi": "",
"pdf_url": "https://arxiv.org/pdf/2309.10668v2",
"abs_url": "https://arxiv.org/abs/2309.10668v2",
"comment": "",
"journal_ref": ""
}
]
}from scripts.arxiv_search import ArxivSearcher
import json
searcher = ArxivSearcher()
# 1. Broad search
results = searcher.search(
query="abs:mechanistic interpretability AND cat:cs.LG",
max_results=200,
sort_by="submittedDate"
)
# 2. Save results
with open("interp_papers.json", "w") as f:
json.dump({"result_count": len(results), "results": results}, f, indent=2)
# 3. Filter and analyze
import pandas as pd
df = pd.DataFrame(results)
print(f"Total papers: {len(df)}")
print(f"Date range: {df['published'].min()} to {df['published'].max()}")
print(f"\nTop categories:")
print(df["primary_category"].value_counts().head(10))searcher = ArxivSearcher()
groups = {
"anthropic": "au:anthropic AND (cat:cs.LG OR cat:cs.CL)",
"openai": "au:openai AND cat:cs.CL",
"deepmind": "au:deepmind AND cat:cs.LG",
}
for name, query in groups.items():
results = searcher.search(query=query, max_results=50, sort_by="submittedDate")
print(f"{name}: {len(results)} recent papers")searcher = ArxivSearcher()
# Most recent ML papers
results = searcher.search(
query="cat:cs.LG",
max_results=50,
sort_by="submittedDate",
sort_order="descending"
)
for paper in results[:10]:
print(f"[{paper['published'][:10]}] {paper['title']}")
print(f" {paper['abs_url']}\n")from scripts.arxiv_search import ArxivSearcher
searcher = ArxivSearcher(verbose=True)
# Free-form query (uses arXiv query syntax)
results = searcher.search(query="...", max_results=50)
# Lookup by ID
papers = searcher.get_by_ids(["2309.10668", "2406.04093"])
# Download PDF
searcher.download_pdf("2309.10668", "paper.pdf")
# Build query from components
query = ArxivSearcher.build_query(
title="sparse autoencoder",
author="anthropic",
category="cs.LG"
)
results = searcher.search(query=query, max_results=20)cs.LG is where most ML papers live.relevance for keyword searches.start parameter, up to a 30000 total cap.2309.10668), not full URLs, in programmatic code.start) for larger sets, up to a 30000 total cap.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.