Find, organize, transform, or summarize source material into a reusable research artifact. The largest open-source medical AI skills library for OpenClaw🦞.
Find, organize, transform, or summarize source material into a reusable research artifact.
Who should use itResearchers and builders collecting papers, transcripts, social content, or knowledge inputs for later analysis.
Use this as a fit check before reading install commands.
Works withOpenClaw
Platform fit comes after the use case, not before it.
Adoption pathSource-verified setup
Setup evidence is available from README.md · Or install globally (available to all agents). Review the source before installing.
Trust signalREADME + SKILL.md
12 SKILL.md + README + install evidence, 2,199 stars, and 33d ago repo freshness at last scan.
Overview
What job does it solve?Research & data
Find, organize, transform, or summarize source material into a reusable research artifact.
Who should use it?Researchers and builders collecting papers, transcripts, social content, or knowledge inputs for later analysis.
research and data collection for OpenClaw users.
Works withOpenClaw
Check platform compatibility after confirming the use case fits your workflow.
How can I adopt it?Source-verified setup
Setup evidence is available from README.md · Or install globally (available to all agents). Review the source before installing.
Can I trust it?README + SKILL.md
12 SKILL.md + README + install evidence, 2,199 stars, and 33d ago repo freshness at last scan.
What to compare?5 related skills
Use the comparison list below to avoid adopting the first matching repo blindly.
Quick read
The largest open-source medical AI skills library for OpenClaw🦞.
Note: Some skills bundle large data files (databases, datasets). The sparse-checkout method above avoids downloading them. If you need the full repo including all data, install Git LFS first, then run git clone
Why we list it
Public because this is a source-backed collection with enough current evidence to qualify for the shortlist.
Current GitHub metadata is available for FreedomIntelligence/OpenClaw-Medical-Skills.
897 SKILL.md file(s) were found in the recursive tree scan.
Trusted install evidence was extracted from 1 source file(s).
Adoption path for OpenClaw-Medical-Skills
Primary adoption path
Setup evidence extracted from README.md · Or install globally (available to all agents). Review source before installing.
Source excerpts used for this adoption decision. Low-confidence cases link back to GitHub instead of forcing a misleading quote.
README excerpt
README.md
Installation
Install to your workspace skills directory
cp -r skills/* /skills/
Or install globally (available to all agents)
cp -r skills/* ~/.openclaw/skills/
> **Note:** Some skills bundle large data files (databases, datasets). The
> sparse-checkout method above avoids downloading them. If you need the full
> repo including all data, install [Git LFS](https://git-lfs.com) first, then
> run `git clone https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills.git`.
Skills are picked up automatically on the next session. No restart needed.
#### Method 4 — Install Selected Skills Only
Pick skills relevant to your domain:
Skills Overview
Category
Count
Highlights
General & Core
10
Browser/search, document tools, and developer workflow utilities
Medical & Clinical
119
Clinical reports, CDS, oncology, imaging, and healthcare AI
Scientific Databases
43
Genomics/protein/drug databases and biomedical knowledge retrieval
Bioinformatics (gptomics)
239
Variant analysis, sequencing QC, DE, pathways, single-cell, and epigenomics
Omics & Computational Biology
59
Single-cell/spatial, proteomics, cheminformatics, and protein design tools
ClawBio Pipelines
21
Orchestration pipelines for scRNA, GWAS, ancestry, and structural workflows
BioOS Extended Suite
285
Extended agent suite for oncology, immunology, clinical AI, and infrastructure
Data Science & Tools
93
Statistics, visualization, automation, simulation, and scientific tooling
Total
869
SKILL.md excerpt
skills/benchling-integration/SKILL.md
When to Use This Skill
This skill should be used when:
Working with Benchling's Python SDK or REST API
Managing biological sequences (DNA, RNA, proteins) and registry entities
Some operations are asynchronous and return tasks:
# Update all pending tasks for a workflow
tasks = benchling.workflow_tasks.list(
workflow_id="wf_abc123",
status="pending"
)
for page in tasks:
for task in page:
# Perform automated checks
if auto_validate(task):
benchling.workflow_tasks.update(
task_id=task.id,
workflow_task=WorkflowTaskUpdate(
status_id="status_complete"
)
)