From research-analysis
Search and retrieve arXiv academic papers by topic, category, or paper ID — with AlphaXiv-enriched AI-generated overviews. Uses arXiv Atom API across cs.AI/cs.LG/cs.CL/cs.CR/cs.MA/cs.SE/cs.IR. Three workflows: Latest, Search, Paper. USE WHEN arxiv, papers, latest papers, research papers, recent ML papers, paper lookup, summarize paper, latest LLM papers, AI safety papers, cs.AI latest. NOT FOR general research (Research), URL parsing (_PARSER), or annual reports (_ANNUALREPORTS).
How this skill is triggered — by the user, by Claude, or both
Slash command
/research-analysis:ArXivThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Searches and retrieves arXiv academic papers by topic, category, or paper ID, and pulls AlphaXiv's AI-generated overviews when a paper has one. Covers the cs.AI / cs.LG / cs.CL / cs.CR / cs.MA / cs.SE / cs.IR categories. Three workflows: Latest, Search, Paper. No API keys needed.
Searches and retrieves arXiv academic papers by topic, category, or paper ID, and pulls AlphaXiv's AI-generated overviews when a paper has one. Covers the cs.AI / cs.LG / cs.CL / cs.CR / cs.MA / cs.SE / cs.IR categories. Three workflows: Latest, Search, Paper. No API keys needed.
arXiv ships thousands of papers a day and its native search is clunky — Atom XML, three-second rate limits, fields you have to know by name, and a lastUpdatedDate that quietly resurfaces old papers as if they were new. Reading a raw paper to decide whether it's worth your time is slow. This skill wraps the query mechanics, handles the XML, and layers AlphaXiv overviews on top so you can triage a paper in seconds instead of reading the whole PDF first.
Uses arXiv's Atom API for search and discovery, and AlphaXiv's markdown endpoint for enriched paper overviews. Search fields, boolean operators, sort order, and pagination are all handled for you; overviews are fetched per paper ID when available (a 404 just means no overview exists yet).
| Trigger | Workflow |
|---|---|
| "latest papers in X", "new papers on X", "what's new in AI research" | Workflows/Latest.md |
| "search arxiv for X", "find papers about X", "arxiv papers on X" | Workflows/Search.md |
arxiv URL, paper ID like 2401.12345, "explain this paper" | Workflows/Paper.md |
arXiv API (no auth):
https://export.arxiv.org/api/queryti: (title), au: (author), abs: (abstract), cat: (category), all: (everything)AND, OR, ANDNOTsortBy=lastUpdatedDate&sortOrder=descending for lateststart=0&max_results=10 (max 2000 per call)AlphaXiv enrichment (no auth):
curl -s "https://alphaxiv.org/overview/{PAPER_ID}.md"curl -s "https://alphaxiv.org/abs/{PAPER_ID}.md" (fallback)Key categories for our work:
cs.AI — Artificial Intelligencecs.LG — Machine Learningcs.CL — Computation and Language (NLP/LLMs)cs.CR — Cryptography and Securitycs.SE — Software Engineeringcs.MA — Multi-Agent Systemscs.IR — Information RetrievalExample 1: Latest papers in a category
User: "what's new in AI safety papers this week"
→ Latest workflow: queries cat:cs.AI sorted by lastUpdatedDate, filters by <published> date
→ Returns titles, authors, abstracts, links
Example 2: Topic search
User: "search arxiv for prompt injection defenses"
→ Search workflow: all:"prompt injection" query with boolean refinement
→ Returns ranked matches with abstracts
Example 3: Single paper lookup
User: "explain this paper: 2401.12345"
→ Paper workflow: fetches metadata, pulls AlphaXiv overview (falls back to abstract on 404)
→ Returns summary plus link to PDF
-L (follows redirects). HTTP 301s to HTTPS silently.jq.lastUpdatedDate includes edits to old papers. For truly new submissions, check <published> dates.max_results caps at 2000. For broader sweeps, paginate with start.cat:cs.AI) returns papers with that as primary OR cross-listed category.npx claudepluginhub p/fadrienne-research-analysis-plugins-research-analysisGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.