arxiv-search
作者: langchain-ai
透過主題搜尋arXiv上的預印本與學術論文,並可擷取摘要。支援物理、數學、電腦科學、生物學、統計學及相關領域的查詢式搜尋。可設定結果數量上限(預設為10篇論文),結果依相關性排序。回傳每篇符合論文的標題與摘要。需使用arxiv Python套件;若尚未安裝,請透過pip進行安裝。
npx skills add https://github.com/langchain-ai/deepagents --skill arxiv-searcharXiv 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