From ai-frontier
Search arXiv for latest AI/ML preprints. Use when Claude needs bleeding-edge research not yet in peer-reviewed journals — newest methods, architectures, training techniques, benchmarks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-frontier:arxiv-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search arXiv preprints across AI/ML categories: cs.AI, cs.LG, cs.CL, cs.CV, stat.ML, cs.MA.
Search arXiv preprints across AI/ML categories: cs.AI, cs.LG, cs.CL, cs.CV, stat.ML, cs.MA.
No API key required. Uses arXiv public API directly.
Find the script path, then execute:
SCRIPT=$(find ~/.claude/plugins -path "*/ai-frontier/skills/arxiv-search/scripts/search.mjs" 2>/dev/null | head -1)
node "$SCRIPT" "your query" [maxResults] [--sort=date|relevance] [--cats=cs.AI,cs.LG]
| Arg | Default | Description |
|---|---|---|
| query | (required) | Natural language search query |
| maxResults | 10 | Number of results (1-100) |
| --sort=date | relevance | Sort by submission date or relevance |
| --cats=cs.AI,cs.LG | all 6 defaults | Comma-separated arXiv categories |
--sort=date)Returns JSON with unified envelope:
results[].title — paper titleresults[].authors — author listresults[].abstract — first 500 chars of abstractresults[].pdf_url — direct PDF linkresults[].source_specific.arxiv_id — arXiv identifierresults[].source_specific.categories — arXiv categoriesresults[].source_specific.published — publication date# Latest papers on chain-of-thought reasoning
node "$SCRIPT" "chain-of-thought reasoning" 10 --sort=date
# Search specific category
node "$SCRIPT" "diffusion models" 5 --cats=cs.CV
# Broad AI safety search
node "$SCRIPT" "AI alignment safety" 20
npx claudepluginhub flight505/ai-frontierSearches and retrieves arXiv preprints by keywords, authors, IDs, categories, or date ranges, returning structured JSON metadata and PDF links.
Searches and retrieves preprints from arXiv via the Atom API by keywords, authors, IDs, or categories. Returns structured JSON with titles, abstracts, and links.
Searches ArXiv for latest research papers on a topic, summarizes top 3 papers, and explains complex methodology in plain English.