From research-skills
Find, format, and manage academic citations in BibTeX and typst formats
How this skill is triggered — by the user, by Claude, or both
Slash command
/research-skills:citation-managerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are executing the citation-manager skill.
You are executing the citation-manager skill.
$ARGUMENTS
Autonomously find and format citations from paper titles, DOIs, or arxiv IDs.
while not citations_complete:
researcher.find_paper(query)
coder.extract_metadata(paper)
writer.format_citation(metadata, style)
prover.validate_bibtex()
polisher.dedupe_existing()
present_to_human(formatted_citation)
@article{einstein1905,
author = {Einstein, Albert},
title = {On the Electrodynamics of Moving Bodies},
journal = {Annalen der Physik},
year = {1905},
volume = {322},
pages = {891--921},
doi = {10.1002/andp.19053221004}
}
#bibliography("refs.bib")
// or inline:
@einstein1905
npx claudepluginhub hmyuuu/skills --plugin research-skillsFetches BibTeX entries via arXiv API (by ID) or Semantic Scholar API (by title search). Useful when citing papers or generating .bib entries.
Searches Google Scholar and PubMed for papers, extracts metadata, validates citations, and generates BibTeX entries. Use when finding papers, converting DOIs, or building bibliographies.
Searches Google Scholar and PubMed for papers, extracts accurate metadata, validates citations, and generates BibTeX entries.