This skill should be used when the user asks to "search papers", "find academic papers", "look up research papers", "track paper trends", "get paper summaries", "find papers on [topic]", "search arXiv", "academic literature search", "research paper lookup", or needs to find, analyze, or summarize academic papers. Also use when user mentions "DeepXiv", "arXiv search", "paper research", "literature review", or "find recent papers about".
DeepXiv is an agent-oriented academic literature infrastructure that transforms paper search, progressive reading, trend tracking, and deep research into callable, composable, automatable capabilities.
pip install deepxiv-sdk
For full features including agents:
pip install "deepxiv-sdk[all]"
Configure API key if needed:
deepxiv agent config
deepxiv search "<query>" --date-from <YYYY-MM-DD> --limit <N> --format json
--date-from: Filter papers by date (e.g., 2026-03-01 for last month)--limit: Number of results (default 20)--format json: Get JSON output for programmatic usedeepxiv paper <arxiv_id> --brief
Returns: title, TLDR, keywords, authors, GitHub link, citations. Use this for initial filtering before deep reading.
deepxiv paper <arxiv_id> --head
See all sections/chapters with token counts. Helps decide which parts to read.
deepxiv paper <arxiv_id> --section <SectionName>
Read only the specified section (e.g., "Experiments", "Introduction", "Method", "Results").
deepxiv trending --days <N> --limit <N> --json
Get hot papers in the last N days.
deepxiv wsearch "<query>"
Call internet search for broader results.
deepxiv sc <paper_id>
Get metadata from Semantic Scholar.
deepxiv pmc <pmc_id> --head # View structure
deepxiv pmc <pmc_id> # View full text
deepxiv agent query "<research_question>" --verbose
Conduct in-depth research on a topic end-to-end.
deepxiv paper <arxiv_id> --popularity
View social media buzz and dissemination metrics.
deepxiv search "<topic>" --date-from <YYYY-MM-DD> --limit 50 --format json
deepxiv paper <id> --brief
deepxiv paper <id> --head
deepxiv paper <id> --section Experiments
deepxiv trending --days 30 --limit 50 --json
deepxiv paper <id> --brief
deepxiv paper <id> --popularity
When user asks "what papers exist on X, what datasets they use, how they perform":
--brief for initial filtering--section Experiments for benchmark details--brief Output📄 MMA: Multimodal Memory Agent
🆔 arXiv: 2602.16493
📅 Published: 2026-02-18
📊 Citations: 0
🔗 PDF: https://arxiv.org/pdf/2602.16493
💻 GitHub: https://github.com/AIGeeksGroup/MMA
🏷️ Keywords: memory-level reliability, temporal decay, conflict-aware consensus
💡 TLDR: [research paper] MMA introduces a memory-level reliability framework...
--head Output (JSON){
"sections": [
{"name": "Introduction", "idx": 0, "tldr": "...", "token_count": 1098},
{"name": "Method", "idx": 1, "tldr": "...", "token_count": 5420},
{"name": "Experiments", "idx": 2, "tldr": "...", "token_count": 3200}
]
}
2603.16496 means March 16, 2026, ID 16496)PMCNNNNNN (e.g., PMC544940)--brief first to save tokens - preview before deep reading--head to understand structure before deciding what to read--section allows targeted reading without consuming full paper