Get Research Paper
A research-discovery skill. Where the research-paper skill writes
papers, this skill finds them. Give it a topic, get a ranked,
de-duplicated reading list of real existing papers with verified DOIs,
key findings, and ready-to-cite metadata.
This file is the entry point. Heavier guidance (per-source
strategies, ranking criteria, summarization prompts) lives in topic
folders and is loaded on demand.
1. When to activate
Slash commands
| Command |
What it does |
/get-research-paper <topic> |
Curated reading list (default 10 papers) |
/find-paper <topic> |
Alias for /get-research-paper |
/find-papers <topic> |
Alias for /get-research-paper |
/fetch-paper <topic> |
Alias for /get-research-paper |
/papers-on <topic> |
Alias for /get-research-paper |
/scholar <topic> |
Quick scholarly summary (5 papers, 2-line summaries) |
Common options:
--n <N> — number of papers (default 10).
--years <range> — e.g. 2020-2024, last-5, since-2018.
--source <src> — arxiv, scholar, pubmed, semantic-scholar, all (default).
--depth <quick|standard|deep> — summary detail.
--style <harvard|apa|ieee|...> — pre-format the bibliography.
--audience <academic|technical|general> — adjust summary register.
--handoff — emit a bibliography.yaml ready for the research-paper skill.
Natural-language patterns
- "get research paper on / about / for [topic]"
- "find research papers on [topic]"
- "find papers on / about [topic]"
- "what are the top papers on [topic]"
- "show me research on [topic]"
- "fetch papers about [topic]"
- "list papers on [topic]"
- "literature on [topic]" (shorter than
/literature-review)
- "scholar [topic]"
Negative activation
Do NOT activate for:
- Requests to write a paper (route to
research-paper).
- Requests to review or critique a draft (route to
research-paper).
- Casual questions ("what is X?") that don't need scholarly sources.
- Pure code / API documentation lookup.
2. Output contract
Every run produces, at minimum:
- Reading list — N papers with:
- Title (full)
- Authors (first 3 + "et al." if more)
- Year
- Venue / journal / preprint server
- DOI / arXiv ID / URL
- 2–4 sentence summary (problem → method → finding → significance)
- Relevance score (1–5) and quality score (per
citation_engine rubric)
- Cite key (lowercase author_year_word) ready for use
- Field briefing (optional, default ON for
--depth deep) — a
1-paragraph synthesis of where the field is and what the dominant
approaches are.
bibliography.yaml — canonical-format file ready to drop into
the research-paper skill.
Known-gaps.md block — every paper that couldn't be verified is
surfaced with severity and recommended fix.
See templates/reading-list.md, templates/paper-summary.md,
templates/briefing.md.
3. Core principles
- Anchor to TODAY's date FIRST. Before any search, determine
today's actual date (via
date -u +%Y-%m-%d, runtime context, or
asking the user). Never default to training-cutoff dates. Year
ranges like --years last-3 are computed from today. Full protocol:
instructions/freshness.md.
- Real papers only. Never invent papers, DOIs, authors, or
findings. Use only sources the model can verify (or honestly mark
[UNVERIFIED — offline]).
- De-duplicate aggressively. Same DOI / arXiv ID / first-author + year + title prefix → one entry.
- Rank by relevance and quality. A bad paper that mentions the
topic is less useful than a great paper that's two clicks adjacent.
- Cite-ready by default. Every entry has cite_key + DOI + ready-to-use formatted citation.
- Triangulation. For load-bearing claims, prefer ≥ 2 independent
sources. Note when a finding rests on a single source.
- Honest about limits. Without web tools, the model relies on
training-data knowledge — flag every entry accordingly.
- Hand off cleanly. Output is consumable by the
research-paper
skill via --handoff mode.
4. Top-level workflow
intake → search-strategy → fan-out search → rank+dedupe →
verify → summarize → assemble briefing → output (+ optional handoff)
Each step has a dedicated playbook. Read the file for the step you're
on; persist the artifact; move on. Master pipeline:
workflows/search.md.
5. Source coverage
| Source |
When to prefer |
Tool |
| arXiv |
CS, ML, AI, physics, math, quant-bio |
toolchains/arxiv_search.py (works offline-only via API) |
| Google Scholar |
Generic / cross-discipline broad surveys |
WebSearch with site:scholar.google.com |
| Semantic Scholar |
API-friendly, citation graph, summaries |
WebFetch of api.semanticscholar.org |
| PubMed / PubMed Central |
Biomedical, life sciences |
WebFetch of eutils.ncbi.nlm.nih.gov |
| DBLP |
CS authors / venues / publication lists |
WebFetch of dblp.org |
| ACM DL |
HCI, systems, security, networks |
WebSearch with site:dl.acm.org |
| IEEE Xplore |
Engineering, signal, hardware |
WebSearch with site:ieeexplore.ieee.org |
| OpenReview |
NeurIPS, ICLR, ICML reviews + papers |
WebFetch of openreview.net |
| Crossref |
DOI verification + metadata fill-in |
WebFetch of api.crossref.org |
| Retraction Watch |
Retraction screening |
WebFetch of retractionwatch.com / database |
Per-source strategy details: sources/.
6. Ranking and quality
Each candidate paper is scored on:
- Authority (0–4) — venue quality (peer-review rigor, impact).
- Methodological rigor (0–3) — replicability, sample size, sound stats.
- Recency / relevance (0–3) — fresh + topical, OR foundational + canonical.
- Total (0–10) — used to rank.
Default reading lists keep papers scoring ≥ 5. Higher floors raise
the bar (--quality-floor 7).
Full rubric: prompts/ranking.md (extends the
citation_engine/source-evaluation.md of the research-paper skill).
7. Handoff to research-paper
After producing a reading list:
/get-research-paper "graph neural networks for fraud detection" \
--n 25 --handoff --style ieee --years 2020-2024
Produces:
gnn-fraud-detection/
├── reading-list.md # human-readable curated list
├── bibliography.yaml # ← canonical file for research-paper skill
├── briefing.md # 1-paragraph synthesis
└── Known-gaps.md # any unverifiable items
The user then runs the writer skill with the produced bibliography:
/research "graph neural networks for fraud detection" \
--style ieee --bibliography ./gnn-fraud-detection/bibliography.yaml
The writer reads the curated bibliography directly — no re-search needed.
8. Failure handling
- No web search available → use model-known papers, mark every
entry
[UNVERIFIED — offline], lower the recommended --n to 5–8,
and surface the limitation in the briefing.
- Search returns nothing → broaden the query (drop adjectives,
try synonyms), then return what was found with an honest note.
- Conflicting metadata across sources → prefer the published
(peer-reviewed) version over the preprint; note the relationship.
- Retracted paper detected → drop from the list; flag in
Known-gaps.md.
- Out-of-scope topic → surface a note in the briefing; deliver
best-effort results.
9. Where to look next
- Plan a search →
workflows/search.md
- Per-source strategy →
sources/
- Ranking rubric →
prompts/ranking.md
- Summarization →
prompts/summarization.md
- Output templates →
templates/
- Hand off to writer →
workflows/handoff-to-writer.md
- arXiv search tool →
toolchains/arxiv_search.py
This skill is intentionally smaller than the writer skill. Its job is
discovery and curation; the heavy lifting (writing, methodology,
review) lives in research-paper.
Source: aniketkrs/research-paper — distributed by TomeVault.
1---2name: get-research-paper3description: Discovers, retrieves, ranks, and summarizes real existing research papers on any topic. Searches arXiv, Google Scholar, PubMed, Semantic Scholar, and reputable open repositories; returns a curated reading list with verified DOIs, key findings, and citation-ready metadata. Activates on slash commands (`/get-research-paper`, `/find-paper`, `/fetch-paper`, `/papers-on`, `/scholar`) and natural-language requests like "get research paper on …", "find papers about …", "what are the top papers on …". Hands off cleanly to the `research-paper` skill for paper writing. Runtime-neutral — works with Claude Code, OpenCode, Cursor, Cline, Codex, Aider, Amp, and 50+ agents. Use when this capability is needed.4---56# Get Research Paper78A research-discovery skill. Where the **`research-paper`** skill *writes*9papers, this skill **finds** them. Give it a topic, get a ranked,10de-duplicated reading list of real existing papers with verified DOIs,11key findings, and ready-to-cite metadata.1213This file is the **entry point**. Heavier guidance (per-source14strategies, ranking criteria, summarization prompts) lives in topic15folders and is loaded **on demand**.1617---1819## 1. When to activate2021### Slash commands2223| Command | What it does |24| ------------------------------ | ------------------------------------------------- |25| `/get-research-paper <topic>` | Curated reading list (default 10 papers) |26| `/find-paper <topic>` | Alias for `/get-research-paper` |27| `/find-papers <topic>` | Alias for `/get-research-paper` |28| `/fetch-paper <topic>` | Alias for `/get-research-paper` |29| `/papers-on <topic>` | Alias for `/get-research-paper` |30| `/scholar <topic>` | Quick scholarly summary (5 papers, 2-line summaries) |3132Common options:33- `--n <N>` — number of papers (default 10).34- `--years <range>` — e.g. `2020-2024`, `last-5`, `since-2018`.35- `--source <src>` — `arxiv`, `scholar`, `pubmed`, `semantic-scholar`, `all` (default).36- `--depth <quick|standard|deep>` — summary detail.37- `--style <harvard|apa|ieee|...>` — pre-format the bibliography.38- `--audience <academic|technical|general>` — adjust summary register.39- `--handoff` — emit a `bibliography.yaml` ready for the `research-paper` skill.4041### Natural-language patterns4243- "get research paper on / about / for [topic]"44- "find research papers on [topic]"45- "find papers on / about [topic]"46- "what are the top papers on [topic]"47- "show me research on [topic]"48- "fetch papers about [topic]"49- "list papers on [topic]"50- "literature on [topic]" (shorter than `/literature-review`)51- "scholar [topic]"5253### Negative activation5455Do NOT activate for:56- Requests to **write** a paper (route to `research-paper`).57- Requests to **review** or **critique** a draft (route to `research-paper`).58- Casual questions ("what is X?") that don't need scholarly sources.59- Pure code / API documentation lookup.6061---6263## 2. Output contract6465Every run produces, at minimum:66671. **Reading list** — N papers with:68 - Title (full)69 - Authors (first 3 + "et al." if more)70 - Year71 - Venue / journal / preprint server72 - DOI / arXiv ID / URL73 - 2–4 sentence **summary** (problem → method → finding → significance)74 - **Relevance score** (1–5) and **quality score** (per `citation_engine` rubric)75 - **Cite key** (lowercase author_year_word) ready for use762. **Field briefing** (optional, default ON for `--depth deep`) — a77 1-paragraph synthesis of where the field is and what the dominant78 approaches are.793. **`bibliography.yaml`** — canonical-format file ready to drop into80 the `research-paper` skill.814. **`Known-gaps.md` block** — every paper that couldn't be verified is82 surfaced with severity and recommended fix.8384See `templates/reading-list.md`, `templates/paper-summary.md`,85`templates/briefing.md`.8687---8889## 3. Core principles90910. **Anchor to TODAY's date FIRST.** Before any search, determine92 today's actual date (via `date -u +%Y-%m-%d`, runtime context, or93 asking the user). **Never default to training-cutoff dates.** Year94 ranges like `--years last-3` are computed from today. Full protocol:95 `instructions/freshness.md`.961. **Real papers only.** Never invent papers, DOIs, authors, or97 findings. Use only sources the model can verify (or honestly mark98 `[UNVERIFIED — offline]`).992. **De-duplicate aggressively.** Same DOI / arXiv ID / first-author + year + title prefix → one entry.1003. **Rank by relevance and quality.** A bad paper that mentions the101 topic is less useful than a great paper that's two clicks adjacent.1024. **Cite-ready by default.** Every entry has cite_key + DOI + ready-to-use formatted citation.1035. **Triangulation.** For load-bearing claims, prefer ≥ 2 independent104 sources. Note when a finding rests on a single source.1056. **Honest about limits.** Without web tools, the model relies on106 training-data knowledge — flag every entry accordingly.1077. **Hand off cleanly.** Output is consumable by the `research-paper`108 skill via `--handoff` mode.109110---111112## 4. Top-level workflow113114```115intake → search-strategy → fan-out search → rank+dedupe →116verify → summarize → assemble briefing → output (+ optional handoff)117```118119Each step has a dedicated playbook. Read the file for the step you're120on; persist the artifact; move on. Master pipeline:121**`workflows/search.md`**.122123---124125## 5. Source coverage126127| Source | When to prefer | Tool |128| --------------------- | ----------------------------------------- | -------------------------------------------- |129| **arXiv** | CS, ML, AI, physics, math, quant-bio | `toolchains/arxiv_search.py` (works offline-only via API) |130| **Google Scholar** | Generic / cross-discipline broad surveys | `WebSearch` with `site:scholar.google.com` |131| **Semantic Scholar** | API-friendly, citation graph, summaries | `WebFetch` of api.semanticscholar.org |132| **PubMed / PubMed Central** | Biomedical, life sciences | `WebFetch` of eutils.ncbi.nlm.nih.gov |133| **DBLP** | CS authors / venues / publication lists | `WebFetch` of dblp.org |134| **ACM DL** | HCI, systems, security, networks | `WebSearch` with `site:dl.acm.org` |135| **IEEE Xplore** | Engineering, signal, hardware | `WebSearch` with `site:ieeexplore.ieee.org` |136| **OpenReview** | NeurIPS, ICLR, ICML reviews + papers | `WebFetch` of openreview.net |137| **Crossref** | DOI verification + metadata fill-in | `WebFetch` of api.crossref.org |138| **Retraction Watch** | Retraction screening | `WebFetch` of retractionwatch.com / database |139140Per-source strategy details: `sources/`.141142---143144## 6. Ranking and quality145146Each candidate paper is scored on:147148- **Authority (0–4)** — venue quality (peer-review rigor, impact).149- **Methodological rigor (0–3)** — replicability, sample size, sound stats.150- **Recency / relevance (0–3)** — fresh + topical, OR foundational + canonical.151- **Total (0–10)** — used to rank.152153Default reading lists keep papers scoring **≥ 5**. Higher floors raise154the bar (`--quality-floor 7`).155156Full rubric: `prompts/ranking.md` (extends the157`citation_engine/source-evaluation.md` of the `research-paper` skill).158159---160161## 7. Handoff to `research-paper`162163After producing a reading list:164165```bash166/get-research-paper "graph neural networks for fraud detection" \167 --n 25 --handoff --style ieee --years 2020-2024168```169170Produces:171172```173gnn-fraud-detection/174├── reading-list.md # human-readable curated list175├── bibliography.yaml # ← canonical file for research-paper skill176├── briefing.md # 1-paragraph synthesis177└── Known-gaps.md # any unverifiable items178```179180The user then runs the writer skill with the produced bibliography:181182```bash183/research "graph neural networks for fraud detection" \184 --style ieee --bibliography ./gnn-fraud-detection/bibliography.yaml185```186187The writer reads the curated bibliography directly — no re-search needed.188189---190191## 8. Failure handling192193- **No web search available** → use model-known papers, mark every194 entry `[UNVERIFIED — offline]`, lower the recommended `--n` to 5–8,195 and surface the limitation in the briefing.196- **Search returns nothing** → broaden the query (drop adjectives,197 try synonyms), then return what was found with an honest note.198- **Conflicting metadata across sources** → prefer the published199 (peer-reviewed) version over the preprint; note the relationship.200- **Retracted paper detected** → drop from the list; flag in201 `Known-gaps.md`.202- **Out-of-scope topic** → surface a note in the briefing; deliver203 best-effort results.204205---206207## 9. Where to look next208209- **Plan a search** → `workflows/search.md`210- **Per-source strategy** → `sources/`211- **Ranking rubric** → `prompts/ranking.md`212- **Summarization** → `prompts/summarization.md`213- **Output templates** → `templates/`214- **Hand off to writer** → `workflows/handoff-to-writer.md`215- **arXiv search tool** → `toolchains/arxiv_search.py`216217This skill is intentionally smaller than the writer skill. Its job is218discovery and curation; the heavy lifting (writing, methodology,219review) lives in `research-paper`.220221---222> Source: [aniketkrs/research-paper](https://github.com/aniketkrs/research-paper) — distributed by [TomeVault](https://tomevault.io).223<!-- tomevault:4.0:skill_md:2026-05-23 -->