Loading...
Loading...
Comprehensive scientific research toolkit with 139 specialized skills for biology, chemistry, medicine, data science, and computational research. Transforms Claude into an AI research assistant with access to scientific databases, analysis tools, and domain-specific workflows.
npx skill4agent add oimiragieo/agent-studio scientific-skills// Invoke the main skill catalog
Skill({ skill: 'scientific-skills' });
// Or invoke specific sub-skills directly
Skill({ skill: 'scientific-skills/rdkit' }); // Cheminformatics
Skill({ skill: 'scientific-skills/scanpy' }); // Single-cell analysis
Skill({ skill: 'scientific-skills/biopython' }); // Bioinformatics
Skill({ skill: 'scientific-skills/literature-review' }); // Literature review| Skill | Description |
|---|---|
| Chemical compound database |
| Bioactivity database for drug discovery |
| Protein sequence and function database |
| Protein Data Bank structures |
| Drug and drug target information |
| Pathway and genome database |
| Clinical variant interpretations |
| Cancer mutation database |
| Genome browser and annotations |
| Gene expression data |
| Genome-wide association studies |
| Biological pathways |
| Protein-protein interactions |
| Protein structure predictions |
| Preprint server for biology |
| Clinical trial registry |
| European Nucleotide Archive |
| FDA drug approvals and labels |
| Gene information from NCBI |
| Commercially available compounds |
| Enzyme database |
| Pharmacogenomics annotations |
| Patent database |
| Skill | Description |
|---|---|
| Cheminformatics toolkit |
| Single-cell RNA-seq analysis |
| Annotated data matrices |
| Computational biology tools |
| Deep learning framework |
| Machine learning library |
| NLP and deep learning models |
| Data manipulation |
| Visualization |
| Deep learning for chemistry |
| Evolutionary Scale Modeling |
| Molecular data processing |
| Materials science |
| Quantum computing |
| Multi-objective optimization |
| Statistical modeling |
| Symbolic mathematics |
| Network analysis |
| Geospatial analysis |
| Model explainability |
| Skill | Description |
|---|---|
| Gene and transcript information |
| SAM/BAM file manipulation |
| NGS data analysis |
| Differential expression |
| Deep learning for single-cell |
| Phylogenetic analysis |
| Bioinformatics algorithms |
| Web services for biology |
| Cell atlas exploration |
| Skill | Description |
|---|---|
| Molecular manipulation |
| Molecular data handling |
| Molecular featurization |
| Molecular docking |
| Drug discovery ML |
| Therapeutics data commons |
| Metabolic modeling |
| Skill | Description |
|---|---|
| Systematic literature reviews |
| Academic writing assistance |
| AI-generated figures |
| Presentation generation |
| Hypothesis development |
| Journal-specific formatting |
| Reference management |
| Skill | Description |
|---|---|
| Clinical reasoning |
| Medical report generation |
| Treatment planning |
| Healthcare ML |
| Medical imaging |
| Skill | Description |
|---|---|
| Lab informatics platform |
| Genomics cloud platform |
| Laboratory automation |
| Flow cytometry data |
| Bioimaging platform |
# 7-phase systematic literature review
# 1. Planning with PICO framework
# 2. Multi-database search execution
# 3. Screening with PRISMA flow
# 4. Data extraction and quality assessment
# 5. Thematic synthesis
# 6. Citation verification
# 7. PDF generation# Using RDKit + ChEMBL + datamol
from rdkit import Chem
from rdkit.Chem import Descriptors, AllChem
# 1. Query ChEMBL for bioactivity data
# 2. Calculate molecular properties
# 3. Filter by drug-likeness (Lipinski)
# 4. Similarity screening
# 5. Substructure analysis# Using scanpy + anndata
import scanpy as sc
# 1. Load and QC data
# 2. Normalization and feature selection
# 3. Dimensionality reduction (PCA, UMAP)
# 4. Clustering (Leiden algorithm)
# 5. Marker gene identification
# 6. Cell type annotation# 8-step systematic process
# 1. Understand phenomenon
# 2. Literature search
# 3. Synthesize evidence
# 4. Generate competing hypotheses
# 5. Evaluate quality
# 6. Design experiments
# 7. Formulate predictions
# 8. Generate reportscientific-skills/
├── SKILL.md # This file (catalog/index)
├── skills/ # Individual skill directories
│ ├── rdkit/
│ │ ├── SKILL.md # Skill documentation
│ │ ├── references/ # API references, patterns
│ │ └── scripts/ # Example scripts
│ ├── scanpy/
│ ├── biopython/
│ └── ... (139 total)// Invoke specific skill
Skill({ skill: 'scientific-skills/rdkit' });
Skill({ skill: 'scientific-skills/scanpy' });// Multi-skill workflow
Skill({ skill: 'scientific-skills/literature-review' });
Skill({ skill: 'scientific-skills/hypothesis-generation' });
Skill({ skill: 'scientific-skills/scientific-schematics' });| Agent | Scientific Skills |
|---|---|
| polars, dask, vaex, zarr-python |
| All Python-based skills |
| Database skills for schema design |
| literature-review, scientific-writing |
Task({
task_id: 'task-1',
subagent_type: 'python-pro',
description: 'Analyze molecular dataset with RDKit',
prompt: `You are the PYTHON-PRO agent with scientific research expertise.
## Task
Analyze the molecular dataset for drug-likeness properties.
## Skills to Invoke
1. Skill({ skill: "scientific-skills/rdkit" })
2. Skill({ skill: "scientific-skills/datamol" })
## Workflow
1. Load molecular data
2. Calculate descriptors
3. Apply Lipinski filters
4. Generate visualization
5. Report findings
`,
});skills/*/SKILL.mdskills/*/references/skills/*/scripts/