Install
$ agentstack add skill-learningmatter-mit-atomisticskills-general-arxiv-search ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
ArXiv Search
Goal
To search for and retrieve metadata (title, authors, summary, DOI, etc.) of research papers from the ArXiv database using the official ArXiv API. This skill supports keyword, author, category, and title-based searches.
Instructions
1. Simple Keyword Search
Search for papers containing specific keywords across all fields (title, abstract, authors, etc.).
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py "machine learning interatomic potential" --max_results 5 --output mlip_papers.json
2. Advanced Search (Authors, Categories, Title)
Combine multiple criteria to narrow down search results.
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py --authors "Ceder" --categories mtrl-sci --max_results 10 --output ceder_papers.json
Supported Category Shortcuts:
mtrl-sci: cond-mat.mtrl-sci (Materials Science)mes-hall: cond-mat.mes-hall (Mesoscale and Nanoscale Physics)comp-phys: physics.comp-ph (Computational Physics)chem-phys: physics.chem-ph (Chemical Physics)ml: cs.LG (Machine Learning)ai: cs.AI (Artificial Intelligence)
3. Search in Title
Restrict the search to only the paper titles.
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py --title "perovskite stability" --max_results 5
Examples
Retrieval of Recent MACE Related Papers
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py "MACE force field" --max_results 3 --output mace_results.json
Searching for Specific Authors in Materials Science
# Env: base-agent
python .agents/skills/general-arxiv-search/scripts/arxiv_search.py --authors "Boris Kozinsky" --categories mtrl-sci --max_results 5
Constraints
- Rate Limiting: The ArXiv API requires a minimum of 3 seconds between requests. This script includes a small delay, but frequent calls should be avoided.
- Environment: Requires
base-agentconda environment. - Dependencies: Uses
feedparserandurllib. - Metadata: Results include ID, URL, Title, Authors, Summary, Publication Date, and DOI (if available).
Author: Bowen Deng Contact: GitHub @learningmatter-mit
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: learningmatter-mit
- Source: learningmatter-mit/AtomisticSkills
- License: MIT
- Homepage: https://arxiv.org/abs/2605.24002
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.