From conference-authors
Read a paper PDF (path or URL) and return its ordered authors with full names, affiliations, country, and email. Use when affiliations are missing from metadata or when the user asks who wrote a paper and where they work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/conference-authors:extract-paper-authorsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Given one paper PDF, return structured author data. You (Claude) read the PDF
Given one paper PDF, return structured author data. You (Claude) read the PDF
directly — no external service. Standalone use needs no plugin scripts (just
curl + the Read tool), so the working directory does not matter here.
curl -sL -o /tmp/paper.pdf "<url>" (or ask the user for the file). When the
orchestrator calls this skill, the PDF is already in the run's cache/pdfs/.full_name (prefer the PDF's spelling; expand initials only if unambiguous)affiliation(s) — the institution(s) tied to each author by footnote/superscriptcountry if printedemail if printed; else nullcorresponding true/false if marked (✉, *, "corresponding author"); else null{"authors": [
{"position": 1, "full_name": "...", "affiliation": "...", "country": "US",
"email": null, "corresponding": true}
]}
"pdf_failed": true rather than hallucinating.Provides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.
npx claudepluginhub nozomisg/conference-authors --plugin conference-authors