Agent skill

pubmed-export-citations

├── EndNote/Zotero/Mendeley → prepareexport(pmids="last", format="ris")

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/pubmed-export-citations/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- 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 |

What's inside
Steps it walks through
  1. 快速決策樹
  2. 工具簽名
  3. 來源選項對比
  4. 格式選擇指南
  5. 常用範例
  6. 1. 匯出上次搜尋結果 (最常用)
  7. 2. 匯出指定 PMID
  8. 3. LaTeX 專用 BibTeX
  9. 4. 資料分析 CSV
  10. 輸出格式
  11. 成功回應
  12. 大量匯出(>20篇)
  13. RIS 格式範例(官方 API 輸出)
  14. 各軟體匯入
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going