Loading...
Loading...
Search for scientific papers, preprints, and publications on arXiv. Extract metadata, abstracts, and download full-text PDFs or HTML versions of papers. Use when the user asks to find research papers, literature, or specific arXiv IDs.
npx skill4agent add google-deepmind/science-skills literature-search-arxivuvuvuvuv run scripts/search_arxiv.py --query "au:einstein AND ti:relativity" \
--max_results 5 2>/dev/null > /tmp/arxiv_search_results.jsonImportant: The tool outputs a large JSON result to stdout. Requesting 100+ results will produce a massive JSON that might exceed your context length. Limit(e.g., 5-10) or paginate carefully using--max_results. Always redirect output to a file and parse it separately, otherwise terminal output will be truncated.--start
idtitlesummarypublishedauthorspdf_urlprimary_categorydoijournal_refcommentdoi--query--id_list1706.03762v5--start--max_results--sort_byrelevancelastUpdatedDatesubmittedDate--sort_by submittedDate --sort_order descending--sort_orderascendingdescendinguv run scripts/download_paper.py --id 1706.03762 --format pdf --output attention.pdf--id1706.037621706.03762v5--formatpdfhtml--outputImportant: when downloading papers, make sure you download them to a location where you do not overwrite other files and do not clutter existing directory structure.
uv run scripts/download_paper_source.py --id 2010.11645 --output source.tar.gz--id2010.11645--outputCaution: Care should be exercised when untar'ing the downloaded file for security and to avoid cluttering your filesystem, as archives may contain many files or unexpected directory structures.Safe Extraction Requirements: NEVER extract directly into your working directory! Always extract into a dedicated new directory:bash mkdir paper_source && tar -xzf source.tar.gz -C paper_source
search_arxiv.pydownload_paper.py