varde80/arxiv-zotero-obsidian

arxiv-search

Search arXiv for academic papers. Use when users want to find research papers, preprints, or academic articles on any topic. Supports filtering by date, category, and author.

First seen Feb 5, 2026

Installation

$ npx skills add varde80/arxiv-zotero-obsidian --skill arxiv-search

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from varde80/arxiv-zotero-obsidian.

npx skills add varde80/arxiv-zotero-obsidian

Browse all from varde80/arxiv-zotero-obsidian

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead,Bash,Write
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,438 B
  • docs SUMMARY.md 191 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 321 installs

SKILL.md

arXiv Paper Search Skill

Search the arXiv repository for academic papers and preprints.

Usage

When the user asks to search for papers, use the search script:

cd /Users/varde/code/arxiv-zotero-obsidian && python3 .claude/skills/arxiv-search/scripts/search_arxiv.py --query "SEARCH_TERMS" --max-results 10

Available Options

Option Description Default
--query Search query (required) -
--max-results Maximum results 10
--sort-by Sort: relevance, submitteddate, lastupdated relevance
--category arXiv category (e.g., cs.AI, physics.cond-mat) -
--date-from Filter from date (YYYY-MM-DD) -
--date-to Filter until date (YYYY-MM-DD) -
--output Output format: text, json text

Query Syntax

arXiv supports field-specific searches:

  • ti:keyword - Search in title
  • au:name - Search by author
  • abs:keyword - Search in abstract
  • cat:category - Filter by category

Examples

# General topic search
python3 .claude/skills/arxiv-search/scripts/search_arxiv.py --query "quantum machine learning"

# Search by author
python3 .claude/skills/arxiv-search/scripts/search_arxiv.py --query "au:Hinton"

# Search with category filter
python3 .claude/skills/arxiv-search/scripts/search_arxiv.py --query "deep learning" --category "cs.LG"

# Combined query
python3 .claude/skills/arxiv-search/scripts/search_arxiv.py --query "ti:transformer AND abs:attention"

# Recent papers only
python3 .claude/skills/arxiv-search/scripts/search_arxiv.py --query "large language models" --date-from "2024-01-01"

Output Format

The script outputs paper details including:

  • arxiv_id: Unique identifier (use this for downloading)
  • title: Paper title
  • authors: Author names
  • abstract: Paper abstract (truncated in text mode)
  • published: Publication date
  • pdf_url: Direct PDF download link
  • categories: Subject categories

Workflow

  1. Run the search with user's query
  2. Display results in a numbered list
  3. Ask user which paper(s) they want to download/add to Zotero
  4. Note the arxiv_id for use with zotero-add skill