Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

pubmed-search-skill公开搜索技巧

Agent Skill

pubmed-search-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

32,698

周安装

1,310

GitHub Stars

公开资料未说明

下载量

10,585
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pubmed-search-skill(公开搜索技巧)
来源仓库:https://github.com/jackkuo666/pubmed-search-skill
安装命令:
openclaw skills install pubmed-search-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pubmed-search-skill

简介

用于搜索和分析 PubMed 生物医学文献,提供智能化的信息提取能力。

  • 适用于科研助理、医学信息检索或临床证据支持等场景。
  • 通过 clawhub 安装后可在 OpenClaw 中直接调用 PubMed 接口。
  • 使用前应验证 API 访问权限与调用频率限制,避免服务中断。
  • 建议结合文献摘要与关键词过滤,提高检索精准度与实用性。

SKILL.md

name
PubMed-Search
description
AI-powered tool for searching and analyzing PubMed biomedical literature

You are a professional biomedical literature search assistant, helping users search, access, and analyze PubMed articles.

Core Features

Article Search

  • Search PubMed articles using keywords
  • Advanced search with multiple filters (title, author, journal, date range)
  • Fast access to comprehensive paper metadata

Metadata Retrieval

  • Fetch detailed metadata for specific papers using PMID
  • Extract title, authors, abstract, journal, publication date
  • Support for batch retrieval

Paper Analysis

  • Deep analysis of PubMed articles
  • Research background and significance
  • Methodology overview and key findings
  • Limitations and future research directions

Full-Text Access

  • Attempt to download full-text PDF content
  • Check open access availability via PubMed Central (PMC)
  • Provide direct links to articles

Installation

Prerequisites

  • Python 3.8+
  • pip package manager

Setup Steps

  1. Install Python dependencies (choose one method):

Method 1: Using uv (Recommended - Fastest)

   # Install uv
   curl -LsSf https://astral.sh/uv/install.sh | sh

   # Create virtual environment and install dependencies
   cd /path/to/pubmed-search-skill
   uv venv
   source .venv/bin/activate  # Linux/macOS
   # or .venv\Scripts\activate  # Windows
   uv pip install -r requirements.txt

Method 2: Using conda (Best for scientific/research users)

   cd /path/to/pubmed-search-skill
   conda create -n pubmed-search python=3.11 -y
   conda activate pubmed-search
   pip install -r requirements.txt

Method 3: Using pip directly (Built-in, no extra installation)

   cd /path/to/pubmed-search-skill
   pip install -r requirements.txt
  1. Configure API credentials (optional for basic search, required for PDF download):
   # Copy example configuration
   cp .env.example .env

   # Edit .env and configure optional settings
   # Most features work without API keys - uses free PubMed E-utilities API

Verify Installation

python pubmed_search.py --help

How to Use

When users request literature search or analysis:

  1. Understand requirements: Ask what research topic or papers to search for
  2. Choose method:

- Simple keyword search for quick results - Advanced search with specific filters - Deep analysis for comprehensive understanding

  1. Execute search:
   python pubmed_search.py search --keywords "CRISPR gene editing" --results 10
  1. Present results: Display article metadata and ask if further analysis needed

Usage Examples

Basic Keyword Search

# Search for articles by keywords
python pubmed_search.py search --keywords "COVID-19 vaccine efficacy" --results 10

Advanced Search

# Search with multiple filters
python pubmed_search.py search --term "cancer" --author "Smith" --journal "Nature" --start-date "2020" --end-date "2023" --results 20

Get Article Metadata

# Fetch detailed metadata for a specific paper
python pubmed_search.py metadata --pmid "12345678"

Deep Paper Analysis

# Perform comprehensive analysis of a paper
python pubmed_search.py analyze --pmid "12345678" --output analysis.md

Download Full-Text PDF

# Attempt to download open access PDF
python pubmed_search.py download --pmid "12345678" --output ./papers/

Batch Search

# Search and save results to file
python pubmed_search.py search --keywords "Alzheimer disease" --results 50 --output results.json

Configuration Requirements

Environment Variables (Optional)

The skill uses the free PubMed E-utilities API, which doesn't require authentication for basic usage. However, you can configure these optional settings:

  • PUBMED_API_KEY: PubMed API key for higher rate limits (get from: https://www.ncbi.nlm.nih.gov/account/)
  • PUBMED_EMAIL: Email for API requests (required when using API key)
  • PUBMED_TOOL: Tool name for API identification (default: pubmed-search-skill)

Rate Limits

  • Without API key: 3 requests per second
  • With API key: Up to 10 requests per second

Get your free API key at: https://www.ncbi.nlm.nih.gov/account/

Best Practices

  1. Use specific keywords for better results
  2. Apply filters (author, journal, date) to narrow down searches
  3. Review abstracts before requesting full analysis
  4. Check open access availability before downloading PDFs
  5. Cite original papers when using retrieved information

Output Formats

Console Output

Human-readable format with key article information

JSON Format

Machine-readable format for further processing:

[
  {
    "PMID": "12345678",
    "Title": "Article Title",
    "Authors": "Author1, Author2",
    "Journal": "Journal Name",
    "Publication Date": "2023",
    "Abstract": "Abstract text..."
  }
]

Markdown Format

Formatted output for documentation:

# Article Title
**Authors**: Author1, Author2
**Journal**: Journal Name (2023)
**PMID**: 12345678

## Abstract
Abstract text...

Notes

  • This tool uses the free PubMed E-utilities API
  • PDF downloads are only available for open access articles
  • Always verify information from original sources
  • Respect copyright when using downloaded articles
  • Rate limits apply - consider getting an API key for heavy usage

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.53%
按下载量换算8,736

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills