
Arxiv Search
- 70 installs
- 186 repo stars
- Updated August 4, 2026
- aws-samples/sample-strands-agent-with-agentcore
arxiv-search is an agent skill that searches and retrieves scientific papers from ArXiv with a required citation format.
About
arxiv-search searches and retrieves scientific papers from ArXiv by keyword, author, or topic and pulls detailed abstracts and metadata by paper ID. A developer or agent uses it to ground research answers in academic sources. It requires wrapping every specific claim from a paper in a <cite> tag with the source title and ArXiv URL.
- Searches and retrieves scientific papers from ArXiv
- Fetches abstracts, metadata, and content previews by paper ID
- Enforces a cite-your-claims format with <cite> tags
Arxiv Search by the numbers
- 70 all-time installs (skills.sh)
- Ranked #5,700 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
arxiv-search capabilities & compatibility
Free; queries the public ArXiv API, no keys stated.
- Capabilities
- paper search · citation formatting · literature review
- Works with
- github
- Use cases
- research · web search
- Pricing
- Free
What arxiv-search says it does
Search and retrieve scientific papers from ArXiv
When presenting information from papers, wrap every specific claim in `<cite>` tags
npx skills add https://github.com/aws-samples/sample-strands-agent-with-agentcore --skill arxiv-searchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 70 |
|---|---|
| repo stars | ★ 186 |
| Last updated | August 4, 2026 |
| Repository | aws-samples/sample-strands-agent-with-agentcore ↗ |
What it does
Search ArXiv for relevant papers and retrieve their abstracts and metadata to ground research claims with citations.
Who is it for?
Grounding an agent's research answers in ArXiv papers with proper citations.
Skip if: General web lookups or non-academic sources; it only searches ArXiv.
When should I use this skill?
You need to find or read scientific papers on a topic and cite specific findings.
What you get
Relevant ArXiv papers with title, authors, abstract, and citation-formatted claims.
By the numbers
- 2 tools (arxiv_search, arxiv_get_paper)
- paper ID format 2301.12345
Files
ArXiv Paper Search
Available Tools
- arxiv_search(query): Search scientific papers on ArXiv by keyword, author, or topic.
query(string, required): Search query for papers
- arxiv_get_paper(paper_ids): Get detailed paper content (abstract, metadata, content preview) from ArXiv.
paper_ids(string, required): Comma-separated paper IDs (e.g., "2301.12345" or "2301.12345,2302.67890")
Usage Guidelines
- Use specific academic keywords for best search results (e.g., "transformer attention mechanism" rather than "AI").
- Paper IDs follow the format:
2301.12345orcs.AI/2301.12345. - When presenting results, include: title, authors, abstract summary, and ArXiv link.
- Use
arxiv_searchfirst to find relevant papers, thenarxiv_get_paperfor detailed content. - Pass multiple paper IDs at once as comma-separated values for efficiency.
Citation Format
When presenting information from papers, wrap every specific claim in <cite> tags:
<cite source="PAPER_TITLE" url="https://arxiv.org/abs/PAPER_ID">claim text</cite>Rules:
- Cite findings, methods, statistics, and specific claims from papers.
- The
sourceattribute should contain the paper title. - The
urlattribute should contain the ArXiv URL (https://arxiv.org/abs/XXXX.XXXXX). - Do NOT cite your own reasoning or general knowledge.
- Use the minimum number of citations necessary to support claims.
Related skills
FAQ
How are paper IDs formatted?
As 2301.12345 or cs.AI/2301.12345, and multiple IDs can be passed comma-separated.
How must claims be cited?
Every specific claim from a paper must be wrapped in a <cite source=... url=...> tag pointing to the ArXiv URL.