pubmed-export-citations
├── EndNote/Zotero/Mendeley → prepareexport(pmids="last", format="ris")
Profile →npx skills add majiayu000/claude-skill-registry --skill pubmed-export-citations --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
--- name: pubmed-export-citations description: Export citations to reference managers. Triggers: 匯出, export, RIS, BibTeX, EndNote, Zotero, Mendeley, 引用格式, reference manager --- # 引用匯出指南 ## 快速決策樹 ``` 需要匯出引用? ├── EndNote/Zotero/Mendeley → prepare_export(pmids="last", format="ris") ├── LaTeX/Overleaf → prepare_export(pmids="last", format="bibtex", source="local") ├── Excel 分析 → prepare_export(pmids="last", format="csv", source="local") └── 程式處理 → prepare_export(pmids="last", format="csl") ``` --- ## 工具簽名 ```python prepare_export( pmids: str | list, # "last" | "12345678,87654321" | ["12345678"] format: str = "ris", # ris, medline, csl, bibtex, csv, json include_abstract: bool = True, source: str = "official" # "official" (推薦) | "local" ) ``` --- ## 來源選項對比 | 來源 | 支援格式 | 品質 | 何時使用 | |------|----------|------|----------| | **official** (預設) | ris, medline, csl | ★★★★★ | 📌 優先選擇,官方 API | | **local** | ris, bibtex, csv, medline, json | ★★★★ | BibTeX/CSV 專用 | > **💡 建議**: 除非需要 BibTeX 或 CSV,否則使用預設的 `source="official"` --- ## 格式選擇指南 | 用途 | 格式 | 來源 | 範例 | |------|------|------|------| | EndNote/Zotero/Mendeley | ris | official | `prepare_export(pmids="last", format="ris")` | | LaTeX/Overleaf |
- 快速決策樹
- 工具簽名
- 來源選項對比
- 格式選擇指南
- 常用範例
- 1. 匯出上次搜尋結果 (最常用)
- 2. 匯出指定 PMID
- 3. LaTeX 專用 BibTeX
- 4. 資料分析 CSV
- 輸出格式
- 成功回應
- 大量匯出(>20篇)
- RIS 格式範例(官方 API 輸出)
- 各軟體匯入
What does the pubmed-export-citations skill do?
├── EndNote/Zotero/Mendeley → prepareexport(pmids="last", format="ris")
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill pubmed-export-citations --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.