arxiv-search
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesearXiv Search Skill
arXiv 搜索技能
This skill provides access to arXiv, a free distribution service and open-access archive for scholarly articles in physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering, systems science, and economics.
本技能可访问arXiv,这是一个面向物理学、数学、计算机科学、定量生物学、定量金融学、统计学、电气工程、系统科学和经济学领域学术文章的免费分发服务与开放获取档案库。
When to Use This Skill
使用场景
Use this skill when you need to:
- Find preprints and recent research papers before journal publication
- Search for papers in computational biology, bioinformatics, or systems biology
- Access mathematical or statistical methods papers relevant to biology
- Find machine learning papers applied to biological problems
- Get the latest research that may not yet be in PubMed
当你需要以下服务时,可使用本技能:
- 在期刊发表前查找预印本和最新研究论文
- 搜索计算生物学、生物信息学或系统生物学领域的论文
- 获取与生物学相关的数学或统计方法类论文
- 查找应用于生物学问题的机器学习论文
- 获取可能尚未收录至PubMed的最新研究成果
How to Use
使用方法
The skill provides a Python script that searches arXiv and returns formatted results.
本技能提供一个Python脚本,用于搜索arXiv并返回格式化结果。
Basic Usage
基础用法
Note: Always use the absolute path from your skills directory (shown in the system prompt above).
If running deepagents from a virtual environment:
bash
.venv/bin/python [YOUR_SKILLS_DIR]/arxiv-search/arxiv_search.py "your search query" [--max-papers N]Or for system Python:
bash
python3 [YOUR_SKILLS_DIR]/arxiv-search/arxiv_search.py "your search query" [--max-papers N]Replace with the absolute skills directory path from your system prompt (e.g., or the full absolute path).
[YOUR_SKILLS_DIR]~/.deepagents/agent/skillsArguments:
- (required): The search query string (e.g., "neural networks protein structure", "single cell RNA-seq")
query - (optional): Maximum number of papers to retrieve (default: 10)
--max-papers
**注意:**请始终使用技能目录的绝对路径(如系统提示中所示)。
如果从虚拟环境运行deepagents:
bash
.venv/bin/python [YOUR_SKILLS_DIR]/arxiv-search/arxiv_search.py "your search query" [--max-papers N]或使用系统Python:
bash
python3 [YOUR_SKILLS_DIR]/arxiv-search/arxiv_search.py "your search query" [--max-papers N]将替换为系统提示中的技能目录绝对路径(例如或完整绝对路径)。
[YOUR_SKILLS_DIR]~/.deepagents/agent/skills参数说明:
- (必填):搜索查询字符串(例如"neural networks protein structure"、"single cell RNA-seq")
query - (可选):要检索的最大论文数量(默认值:10)
--max-papers
Examples
示例
Search for machine learning papers:
bash
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "deep learning drug discovery" --max-papers 5Search for computational biology papers:
bash
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "protein folding prediction"Search for bioinformatics methods:
bash
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "genome assembly algorithms"搜索机器学习相关论文:
bash
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "deep learning drug discovery" --max-papers 5搜索计算生物学相关论文:
bash
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "protein folding prediction"搜索生物信息学方法相关论文:
bash
.venv/bin/python ~/.deepagents/agent/skills/arxiv-search/arxiv_search.py "genome assembly algorithms"Output Format
输出格式
The script returns formatted results with:
- Title: Paper title
- Summary: Abstract/summary text
Each paper is separated by blank lines for readability.
脚本返回的格式化结果包含:
- 标题:论文标题
- 摘要:摘要/概述文本
为便于阅读,每篇论文之间用空行分隔。
Features
功能特性
- Relevance sorting: Results ordered by relevance to query
- Fast retrieval: Direct API access with no authentication required
- Simple interface: Clean, easy-to-parse output
- No API key required: Free access to arXiv database
- 相关性排序:结果按与查询的相关性排序
- 快速检索:无需认证,直接通过API访问
- 简洁界面:清晰、易于解析的输出
- 无需API密钥:免费访问arXiv数据库
Dependencies
依赖项
This skill requires the Python package. The script will detect if it's missing and show an error.
arxivIf you see "Error: arxiv package not installed":
If running deepagents from a virtual environment (recommended), use the venv's Python:
bash
.venv/bin/python -m pip install arxivOr for system-wide install:
bash
python3 -m pip install arxivThe package is not included in deepagents by default since it's skill-specific. Install it on-demand when first using this skill.
本技能需要 Python包。脚本会检测该包是否缺失并显示错误信息。
arxiv若出现“Error: arxiv package not installed”错误:
如果从虚拟环境运行deepagents(推荐方式),请使用虚拟环境的Python:
bash
.venv/bin/python -m pip install arxiv或进行系统级安装:
bash
python3 -m pip install arxiv由于该包是技能专属依赖,默认未包含在deepagents中。首次使用本技能时按需安装即可。
Notes
注意事项
- arXiv is particularly strong for:
- Computer science (cs.LG, cs.AI, cs.CV)
- Quantitative biology (q-bio)
- Statistics (stat.ML)
- Physics and mathematics
- Papers are preprints and may not be peer-reviewed
- Results include both recent uploads and older papers
- Best for computational/theoretical work in biology
- arXiv在以下领域的资源尤为丰富:
- 计算机科学(cs.LG、cs.AI、cs.CV)
- 定量生物学(q-bio)
- 统计学(stat.ML)
- 物理学与数学
- 论文均为预印本,可能未经过同行评审
- 结果包含最新上传和较早的论文
- 最适用于生物学领域的计算/理论研究