skills/43-wentorai-research-plugins/skills/literature/search/arxiv-batch-reporting/SKILL.md
Batch search and report generation from arXiv preprint repository
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research arxiv-batch-reportingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Keeping up with the flood of new preprints on arXiv is one of the most persistent challenges in fast-moving fields like machine learning, physics, mathematics, and computer science. The arXiv Batch Reporting skill provides a systematic approach to searching, filtering, and generating structured reports from arXiv at scale.
Unlike ad-hoc manual searches, this skill enables researchers to define persistent query profiles, run batch searches across date ranges, and produce formatted reports that highlight the most relevant papers. It is particularly useful for weekly or monthly literature surveillance, lab meeting preparation, and trend analysis across subfields.
The skill leverages the arXiv API and supports advanced query syntax, category filtering, and result ranking by relevance or recency. Reports can be generated in Markdown, HTML, or CSV formats for integration into existing workflows.
Define your search profiles as structured configurations. Each profile specifies the search terms, category filters, date range, and output preferences:
profile_name: "transformer-architectures-weekly"
queries:
- "ti:transformer AND abs:attention mechanism"
- "ti:vision transformer"
- "abs:efficient transformer AND cat:cs.LG"
categories:
- cs.LG
- cs.CL
- cs.CV
date_range: "last_7_days"
max_results: 100
sort_by: "submittedDate"
sort_order: "descending"
The arXiv API supports field-specific searches:
ti: — Search in titleabs: — Search in abstractau: — Search by authorcat: — Filter by category (e.g., cs.AI, math.PR, physics.comp-ph)AND, OR, ANDNOTExample queries:
abs:generative adversarial AND cat:cs.CVau:bengio AND ti:deep learningabs:reinforcement learning ANDNOT ti:surveyThe arXiv API enforces rate limits. Follow these guidelines:
start and max_results parameters (max 2000 per request)After collecting batch results, generate a report with the following structure:
# arXiv Batch Report: [Profile Name]
**Date range:** [start] to [end]
**Total results:** [N] papers
**Generated:** [timestamp]
## Highlights (Top 10 by Relevance)
| # | Title | Authors | Category | Date |
|---|-------|---------|----------|------|
| 1 | [Title](arxiv-link) | First Author et al. | cs.LG | 2026-03-08 |
## Category Breakdown
- cs.LG: 45 papers
- cs.CL: 23 papers
- cs.CV: 18 papers
## Keyword Frequency
- "transformer": 38 mentions
- "attention": 29 mentions
- "efficient": 15 mentions
## Full Results
[Expandable table with all papers]
After retrieving raw results, apply post-processing filters to surface the most relevant papers:
For ongoing literature surveillance, automate your batch reports:
Store all generated reports in a versioned directory structure for longitudinal trend analysis:
reports/
transformer-architectures-weekly/
2026-03-03.md
2026-03-10.md
...
tools
Autonomous multi-round research review loop using MiniMax API. Use when you want to use MiniMax instead of Codex MCP for external review. Trigger with "auto review loop minimax" or "minimax review".
tools
Autonomous research review loop using any OpenAI-compatible LLM API. Configure via llm-chat MCP server or environment variables. Trigger with "auto review loop llm" or "llm review".
tools
Autonomous multi-round research review loop using MiniMax API. Use when you want to use MiniMax instead of Codex MCP for external review. Trigger with "auto review loop minimax" or "minimax review".
tools
Autonomous research review loop using any OpenAI-compatible LLM API. Configure via llm-chat MCP server or environment variables. Trigger with "auto review loop llm" or "llm review".