Agent Skills
› langchain-ai/deepagents
› arxiv-search
arxiv-search
GitHub通过Python脚本在arXiv搜索学术论文并获取摘要,支持按主题和数量过滤。适用于查找物理、数学、CS等领域的预印本和研究论文。
Trigger Scenarios
用户要求查找研究论文
用户询问arXiv上的预印本
需要检索特定领域的学术文章
Install
npx skills add langchain-ai/deepagents --skill arxiv-search -g -y
SKILL.md
Frontmatter
{
"name": "arxiv-search",
"description": "Searches arXiv for preprints and academic papers, retrieves abstracts, and filters by topic. Use when the user asks to find research papers, search arXiv, look up preprints, find academic articles in physics, math, CS, biology, statistics, or related fields."
}
arXiv Search Skill
Usage
Run the bundled Python script using the absolute skills directory path from your system prompt:
.venv/bin/python [YOUR_SKILLS_DIR]/arxiv-search/arxiv_search.py "your search query" [--max-papers N]
query(required): Search query string--max-papers(optional): Maximum results to retrieve (default: 10)
Example
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "deep learning drug discovery" --max-papers 5
Returns title and abstract for each matching paper, sorted by relevance.
Dependencies
Requires the arxiv Python package. If missing, install with:
.venv/bin/python -m pip install arxiv
Version History
- 1e4f507 Current 2026-08-20 16:33


