/install arxiv-papers-search
\r \r
Arxiv Skill\r
\r
Overview\r
\r This skill enables searching and retrieving academic papers from the arXiv preprint server. It provides functionality to search for papers by keywords, authors, or categories, retrieve paper details and abstracts, download PDF files, and analyze research trends.\r \r
Quick Start\r
\r
Searching for Papers\r
\r
To search for papers on arXiv, use the search_papers script with relevant keywords:\r
\r
python scripts/search_papers.py --query "machine learning" --max-results 10\r
```\r
\r
### Retrieving Paper Details\r
\r
To get detailed information about a specific paper:\r
\r
```bash\r
python scripts/get_paper_details.py --id 2301.00001\r
```\r
\r
### Downloading Papers\r
\r
To download a paper's PDF:\r
\r
```bash\r
python scripts/download_paper.py --id 2301.00001 --output paper.pdf\r
```\r
\r
## Core Functions\r
\r
### Search Papers\r
\r
Searches arXiv for papers matching specified criteria. Supports keyword search, author search, and category filtering.\r
\r
**Parameters:**\r
- `--query`: Search query (required)\r
- `--max-results`: Maximum number of results to return (default: 10)\r
- `--category`: Filter by arXiv category (e.g., cs.AI, stat.ML)\r
- `--sort-by`: Sort results by relevance, lastUpdatedDate, or submittedDate\r
- `--start`: Start index for paginated results\r
\r
**Example:**\r
```bash\r
python scripts/search_papers.py --query "transformer architecture" --category cs.CL --max-results 5\r
```\r
\r
### Get Paper Details\r
\r
Retrieves detailed information about a specific paper, including title, authors, abstract, categories, and links.\r
\r
**Parameters:**\r
- `--id`: arXiv paper ID (required, e.g., 2301.00001)\r
\r
**Example:**\r
```bash\r
python scripts/get_paper_details.py --id 2301.00001\r
```\r
\r
### Download Paper\r
\r
Downloads the PDF of a specific paper.\r
\r
**Parameters:**\r
- `--id`: arXiv paper ID (required)\r
- `--output`: Output file path (default: paper.pdf)\r
\r
**Example:**\r
```bash\r
python scripts/download_paper.py --id 2301.00001 --output transformer-paper.pdf\r
```\r
\r
## Workflows\r
\r
### Research Literature Review\r
\r
1. Search for papers on a topic\r
2. Retrieve details for relevant papers\r
3. Download PDFs for in-depth analysis\r
4. Summarize key findings\r
\r
**Example Workflow:**\r
```bash\r
# Search for recent papers on large language models\r
python scripts/search_papers.py --query "large language models" --max-results 10 --sort-by lastUpdatedDate\r
\r
# Get details for a promising paper\r
python scripts/get_paper_details.py --id 2301.00001\r
\r
# Download the PDF\r
python scripts/download_paper.py --id 2301.00001 --output llm-paper.pdf\r
```\r
\r
### Trend Analysis\r
\r
1. Search for papers in a specific category over time\r
2. Analyze publication trends\r
3. Identify emerging research areas\r
\r
**Example Workflow:**\r
```bash\r
# Search for papers in machine learning category\r
python scripts/search_papers.py --query "" --category cs.LG --max-results 100 --sort-by submittedDate\r
```\r
\r
## Resources\r
\r
### scripts/\r
- `search_papers.py`: Search arXiv for papers\r
- `get_paper_details.py`: Get detailed information about a paper\r
- `download_paper.py`: Download paper PDFs\r
- `analyze_trends.py`: Analyze research trends based on arXiv data\r
\r
### references/\r
- `api_reference.md`: arXiv API documentation and usage examples\r
- `categories.md`: List of arXiv categories and their descriptions\r
\r
### assets/\r
- `templates/`: Templates for generating research summaries\r
\r
## API Reference\r
\r
For detailed information about the arXiv API, see `references/api_reference.md`.\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install arxiv-papers-search - After installation, invoke the skill by name or use
/arxiv-papers-search - Provide required inputs per the skill's parameter spec and get structured output
What is arXiv Papers Search?
Search, retrieve, and download academic papers from arXiv by keywords, authors, categories, and analyze research trends. It is an AI Agent Skill for Claude Code / OpenClaw, with 105 downloads so far.
How do I install arXiv Papers Search?
Run "/install arxiv-papers-search" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is arXiv Papers Search free?
Yes, arXiv Papers Search is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does arXiv Papers Search support?
arXiv Papers Search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created arXiv Papers Search?
It is built and maintained by maxjia (@maxjia); the current version is v1.0.1.