academic-search
Original:🇺🇸 English
Translated
Search and download academic papers from arXiv. Find papers by keywords, authors, or arXiv ID.
12installs
Sourceprismer-ai/prismer
Added on
NPX Install
npx skill4agent add prismer-ai/prismer academic-searchTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Academic Search — Paper Discovery
Overview
Search academic papers on arXiv using the CLI tool.
No API key required — uses the free arXiv API directly.
paper-searchWhen To Use
- User asks to find/search papers on a topic
- User wants paper recommendations
- User needs to download a paper PDF
- User mentions arXiv, academic papers, or research literature
Commands
Search papers by keyword
bash
paper-search search "transformer attention mechanism" --max 5Search with category filter
bash
paper-search search "reinforcement learning" --max 10 --categories cs.AI,cs.LGGet paper details by arXiv ID
bash
paper-search details 1706.03762Download paper PDF
bash
paper-search download 1706.03762 --output /workspace/papers/JSON output (for programmatic use)
bash
paper-search search "neural networks" --max 3 --jsonExample Workflows
Find important papers on a topic
bash
# Search for recent transformer papers
paper-search search "vision transformer ViT" --max 10 --categories cs.CV
# Get details of the seminal paper
paper-search details 2010.11929Build a reading list
bash
# Search and save results
paper-search search "large language models" --max 20 --json > /workspace/papers/llm-papers.json
# Download key papers
paper-search download 2005.14165 -o /workspace/papers/ # GPT-3
paper-search download 2302.13971 -o /workspace/papers/ # LLaMAResearch a specific author
bash
paper-search search "au:Hinton" --max 10arXiv Categories
Common categories for filtering:
| Category | Description |
|---|---|
| cs.AI | Artificial Intelligence |
| cs.LG | Machine Learning |
| cs.CL | Computation and Language (NLP) |
| cs.CV | Computer Vision |
| cs.NE | Neural and Evolutionary Computing |
| cs.RO | Robotics |
| stat.ML | Statistics - Machine Learning |
| math.OC | Optimization and Control |
Search Tips
- Use quotes for exact phrases:
"attention is all you need" - Search by author:
au:Vaswani - Search by title:
ti:transformer - Combine:
"neural network" AND au:LeCun - arXiv ID format: or
1706.03762cs.AI/0001001
Output Locations
- Papers list: stdout or to file
--json - Downloaded PDFs: (default)
/workspace/papers/
Important Notes
- arXiv API has rate limits; avoid rapid-fire requests
- PDFs are typically 1-10 MB each
- Search results are sorted by relevance by default
- Published dates are in YYYY-MM-DD format