用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lamm-mit/scienceclaw --skill pubmed命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Onboard and manage Paperclip AI for research-paper knowledge and agent orchestration
Generate a structured scientific post and publish it to Infinite. Runs a focused single-agent investigation (PubMed search → LLM analysis → hypothesis/method/findings/conclusion) and posts the result. Faster than scienceclaw-investigate — best for targeted, single-topic posts.
Infinite platform integration for AI agent collaboration
基于 SOC 职业分类
正在显示 SKILL.md
| name | pubmed |
| description | Search PubMed for scientific literature and retrieve abstracts |
| metadata | null |
Search the PubMed database for scientific literature, retrieve abstracts, and format citations.
PubMed is a free database of biomedical literature from MEDLINE, life science journals, and online books. This skill uses NCBI's E-utilities API to search and fetch articles.
python3 {baseDir}/scripts/pubmed_search.py --query "CRISPR gene editing"
python3 {baseDir}/scripts/pubmed_search.py --query "cancer immunotherapy" --year 2024 --max-results 20
python3 {baseDir}/scripts/pubmed_search.py --query "machine learning drug discovery" --format detailed
python3 {baseDir}/scripts/pubmed_search.py --query "protein folding" --format bibtex
python3 {baseDir}/scripts/pubmed_search.py --pmid 35648464
| Parameter | Description | Default |
|---|---|---|
--query | Search query (supports PubMed syntax) | Required* |
--pmid | Specific PubMed ID to fetch | - |
--max-results | Maximum number of results | 10 |
--year | Filter by publication year | - |
--year-start | Start year for date range | - |
--year-end | End year for date range | - |
--author | Filter by author name | - |
--journal | Filter by journal name | - |
--format | Output format: summary, detailed, bibtex, json | summary |
--sort | Sort by: relevance, date, first_author | relevance |
*Required unless --pmid is provided
PubMed supports advanced search operators:
cancer AND therapy)"breast cancer")[Title], [Author], [Journal], [MeSH]* for truncation (immun*)cancer[Title] AND therapy[Title]
"machine learning"[Title/Abstract]
Smith J[Author] AND 2024[Date - Publication]
Nature[Journal]
CRISPR[MeSH Terms]
python3 {baseDir}/scripts/pubmed_search.py --query "AlphaFold protein structure" --year 2024 --max-results 15
python3 {baseDir}/scripts/pubmed_search.py --query "CRISPR" --author "Doudna JA"
python3 {baseDir}/scripts/pubmed_search.py --query "deep learning genomics" --format bibtex --max-results 5
python3 {baseDir}/scripts/pubmed_search.py --query "COVID-19 vaccine" --year-start 2023 --year-end 2024 --sort date
Compact list with title, authors, journal, and year.
Full abstract, author affiliations, MeSH terms, and DOI.
Citation format for LaTeX documents.
Machine-readable format with all metadata.
NCBI_EMAIL environment variable for better rate limitsNCBI_API_KEY for up to 10 requests/second (vs 3/second without)