Search and retrieve scientific preprints from arXiv; use it when you need to find papers by keyword/author/category, fetch metadata (abstract, DOI, PDF URL), or download PDFs for offline reading.
59
68%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Evidence Insight/arxiv-database/SKILL.mdscripts/arxiv_search.py is the most direct path to complete the request.arxiv-database package behavior rather than a generic answer.scripts/arxiv_search.py.references/ for task-specific guidance.Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.cd "20260316/scientific-skills/Evidence Insight/arxiv-database"
python -m py_compile scripts/arxiv_search.py
python scripts/arxiv_search.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/arxiv_search.py with the validated inputs.scripts/arxiv_search.py.references/ contains supporting rules, prompts, or checklists.cs.AI, cs.CL).--max-results).--sort-by: Relevance, LastUpdatedDate, SubmittedDate).--download) with configurable output directory (--dir).arxiv (Python package) — version depends on your environment; install a recent release (e.g., arxiv>=1.4.0)pip install "arxiv>=1.4.0"Search for papers in cs.AI about reinforcement learning (top 5 results):
python scripts/arxiv_search.py --query "cat:cs.AI AND reinforcement learning" --max-results 5Search for “Large Language Models” in cs.CL:
python scripts/arxiv_search.py --query "cat:cs.CL AND \"Large Language Models\""Get the latest 5 papers on “quantum computing” (sorted by submission date):
python scripts/arxiv_search.py --query "quantum computing" --sort-by SubmittedDate --max-results 5Download a specific paper by arXiv ID:
python scripts/arxiv_search.py --query "id:2101.12345" --downloadDownload results into a specific directory:
python scripts/arxiv_search.py --query "cat:cs.LG AND diffusion" --max-results 3 --download --dir ./papersscripts/arxiv_search.py wraps the arxiv Python API to execute queries against the arXiv search endpoint.--query string is passed to arXiv search and can include:
cat:cs.AI)au:Smith)"Large Language Models")id:2101.12345)AND--max-results controls how many entries are returned (default: 10).--sort-by selects the ordering of results:
Relevance (default)LastUpdatedDateSubmittedDate--download is set, the script downloads the PDF for each returned result using the provided PDF URL and saves it to --dir (default: current working directory).63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.