Agent skill

pubmed-search

Search PubMed for scientific literature. Use when the user asks to find papers, search literature, look up research, find publications, or asks about recent studies. Triggers on "pubmed", "papers", "literature", "publications", "research on", "studies about".

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill pubmed-search --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/pubmed-search/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

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

From the SKILL.md

# PubMed Search Search NCBI PubMed for scientific literature using BioPython's Entrez module. ## When to Use - User asks to find papers on a topic - User wants recent publications in a field - User asks for references or citations - User wants to know the state of research on a topic ## How to Execute ### 1. Set up Entrez ```python from Bio import Entrez Entrez.email = "medclaw@freedomai.com" ``` ### 2. Search PubMed ```python # Search handle = Entrez.esearch(db="pubmed", term="CRISPR delivery methods", retmax=20, sort="date") record = Entrez.read(handle) handle.close() id_list = record["IdList"] print(f"Found {record['Count']} results, showing top {len(id_list)}") ``` ### 3. Fetch article details ```python # Fetch details handle = Entrez.efetch(db="pubmed", id=id_list, rettype="xml") records = Entrez.read(handle) handle.close() for article in records['PubmedArticle']: medline = article['MedlineCitation'] pmid = str(medline['PMID']) title = medline['Article']['ArticleTitle'] # Get authors authors = medline['Article'].get('AuthorList', []) first_author = f"{authors[0].get('LastName', '')} {authors[0].get('Initials', '')}" if authors else "Unknown" # Get journal and year journal = me

What's inside
Steps it walks through
  1. When to Use
  2. How to Execute
  3. 1. Set up Entrez
  4. 2. Search PubMed
  5. 3. Fetch article details
  6. 4. Output format for WhatsApp
  7. 5. Advanced searches
  8. 6. Follow-up suggestions
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the pubmed-search skill do?

Search PubMed for scientific literature. Use when the user asks to find papers, search literature, look up research, find publications, or asks about recent studies. Triggers on "pubmed", "papers", "literature", "publications", "research on", "studies about".

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill pubmed-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 FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 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