From paper-research-skill
Use when user wants to search for academic papers by keywords or topic, or download specific papers from a DOI/URL list. Triggers when user says "find papers on X", "search for research about Y", "get these papers" with a DOI list, or when paper-research calls this sub-skill.
How this skill is triggered — by the user, by Claude, or both
Slash command
/paper-research-skill:paper-fetchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Searches multiple academic databases and downloads user-selected papers as PDFs.
Searches multiple academic databases and downloads user-selected papers as PDFs.
Uses paper-search-mcp for multi-source concurrent search with deduplication and open-access fallback.
openags/paper-search-mcp must be installed and configured.
Install:
npx -y @smithery/cli install @openags/paper-search-mcp --client claude
Option A — Keyword Search
Ask the user for:
arxiv, pubmed, semantic_scholar, biorxiv (default: all)2022-2025 (optional)10 (default: 10)Option B — DOI / URL List
Accept a plain list, one per line:
10.48550/arXiv.1706.03762
10.1038/s41586-021-03819-2
https://arxiv.org/abs/2301.00001
Call search_papers (Option A) or skip directly to step 3 (Option B)
Present candidate table to user:
| # | Title | Authors | Year | Source |
|---|---|---|---|---|
| 1 | Attention Is All You Need | Vaswani et al. | 2017 | arxiv |
Include one-line abstract excerpt under each row.
Ask: "Which papers to download? (e.g. 1,3,5 or 'all')"
Call download_with_fallback for each selected paper (tries publisher link → Unpaywall → open access)
Return structured output (see below)
Pass this JSON to the next step (paper-zotero or paper-note):
{
"papers": [
{
"title": "Attention Is All You Need",
"authors": ["Vaswani", "Shazeer", "Parmar"],
"year": 2017,
"doi": "10.48550/arXiv.1706.03762",
"source": "arxiv",
"pdf_path": "/tmp/papers/attention-is-all-you-need.pdf",
"abstract": "We propose a new simple network architecture..."
}
]
}
download_with_fallback tries Unpaywall automatically. If still unavailable, set "pdf_path": null and continue with remaining papers.npx claudepluginhub thuyhuongctu/paper-research-skillGuides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Runs a structured interview session to sharpen plans or designs, producing ADRs and a glossary as output.
Applies curated color/font themes to slides, docs, and HTML artifacts. Includes 10 preset themes and can generate custom themes on demand.