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