Agent skill · Code Review & Quality

literature-search

Search and retrieve academic literature from multiple databases. LOAD THIS SKILL WHEN: User says "搜尋文獻", "search literature", "find papers", "PubMed", "學術搜尋" | needs to find research articles | starting literature review.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill literature-search --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/literature-search/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

# 文獻搜尋技能 (Literature Search) ## 描述 使用多種 MCP Tools 搜尋學術文獻,支援關鍵字搜尋、MeSH 詞彙擴展、引用指標排序。 ## 觸發條件 - 「搜尋文獻」「找論文」「PubMed 搜尋」 - "search papers", "find articles", "literature search" - 開始文獻回顧或系統性評讀 ## 可用 Tools ### MCP Tools (pubmed-search) | Tool | 用途 | 參數 | |------|------|------| | `search_literature` | 基本搜尋 | query, limit, min_year, article_type | | `generate_search_queries` | MeSH 詞彙擴展 | topic | | `merge_search_results` | 合併多次搜尋結果 | results_json | | `get_citation_metrics` | 取得引用指標 (RCR) | pmids, sort_by | | `fetch_article_details` | 取得文章詳細資訊 | pmids | ### MCP Tools (zotero-keeper) | Tool | 用途 | 參數 | |------|------|------| | `check_articles_owned` | 檢查是否已收藏 | pmids | | `batch_import_from_pubmed` | 批次匯入到 Zotero | pmids, collection_name | ## 執行流程 ### 1. 快速搜尋模式 ``` 用戶提供關鍵字 ↓ search_literature(query, limit=20) ↓ 返回 PMID 清單 + 摘要 ``` ### 2. 精確搜尋模式 (推薦用於系統性回顧) ``` 用戶提供主題 ↓ generate_search_queries(topic) ← 取得 MeSH 詞彙 ↓ 選擇最佳搜尋策略 ↓ search_literature(query=MeSH_query) ↓ get_citation_metrics(pmids, sort_by="relative_citation_ratio") ↓ 返回按 RCR 排序的結果 ``` ### 3. 多策略合併模式 ```python # 並行執行多個搜尋策略 results = [] results.append(search_literature(query="keyword1")) results.append(search_literature(query="keyword2"

What's inside
Steps it walks through
  1. 描述
  2. 觸發條件
  3. 可用 Tools
  4. MCP Tools (pubmed-search)
  5. MCP Tools (zotero-keeper)
  6. 執行流程
  7. 1. 快速搜尋模式
  8. 2. 精確搜尋模式 (推薦用於系統性回顧)
  9. 3. 多策略合併模式
  10. 輸出格式
  11. 使用範例
  12. 相關技能
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the literature-search skill do?

Search and retrieve academic literature from multiple databases. LOAD THIS SKILL WHEN: User says "搜尋文獻", "search literature", "find papers", "PubMed", "學術搜尋" | needs to find research articles | starting literature review.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill literature-search --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