freshcrate
Home > AI Agents > SciAgent-Skills

SciAgent-Skills

Life sciences computational skills for scientific AI agents

Description

Life sciences computational skills for scientific AI agents

README

SciAgent-Skills

197 SkillsBixBench 92.0%CC-BY-4.0GitHub StarsTurn your AI coding agent into a life sciences expert โ€” 197 bioinformatics skills for Claude Code covering RNA-seq, single-cell analysis, genomics, proteomics, drug discovery, and more. Boosted BixBench from 65% to 92%. Open source.

SciAgent-Skills is the largest open-source skill library for scientific AI agents. It equips Claude Code (and any markdown-compatible agent) with domain-specific knowledge for computational biology, bioinformatics, cheminformatics, and biostatistics โ€” no fine-tuning required, just plug in and analyze.

Keywords: bioinformatics AI agent, Claude Code skills, scientific computing, RNA-seq analysis, single-cell RNA-seq, drug discovery pipeline, protein structure prediction, computational biology tools, life science automation, BixBench benchmark

Benchmark: 92.0% on BixBench-Verified-50

BixBench bioinformatics benchmark results โ€” SciAgent-Skills achieves 92.0% accuracy

BixBench is a benchmark for evaluating AI agents on real-world bioinformatics tasks. SciAgent-Skills achieved 92.0% accuracy on BixBench-Verified-50, the highest among all tested systems:

System BixBench-Verified-50 Accuracy
Claude Code (Opus 4.6) + SciAgent-Skills 92.0%
Claude Code (Opus 4.6) baseline 65.3%

Simply equipping Claude Code with these domain-specific skills yields a +26.7 percentage point improvement โ€” no fine-tuning, no custom model, just structured scientific knowledge.

Try It Now โ€” OmicsHorizon

Want to try these skills without any setup? OmicsHorizon (์˜ค๋ฏน์Šค ํ˜ธ๋ผ์ด์ฆŒ) is the web platform powered by SciAgent-Skills. Sign up and start analyzing your bioinformatics data directly in your browser โ€” RNA-seq, proteomics, drug screening, and more.

Try OmicsHorizon197 ready-to-use scientific skills for AI coding agents โ€” covering genomics, proteomics, drug discovery, biostatistics, scientific computing, and scientific writing.

Each skill is a self-contained SKILL.md file with runnable code examples, key parameters, troubleshooting guides, and best practices. Designed for Claude Code, but compatible with any AI agent that reads markdown skill files (setup guides below).

What's Inside

Category Skills Examples
Genomics & Bioinformatics 63 Scanpy, BioPython, pysam, gget, KEGG, PubMed, scvi-tools
Structural Biology & Drug Discovery 26 RDKit, AutoDock Vina, ChEMBL, PDB, DeepChem, datamol
Scientific Computing 24 Polars, Dask, NetworkX, SymPy, UMAP, PyG, Zarr, SimPy
Cell Biology 15 pydicom, histolab, FlowIO
Biostatistics 12 scikit-learn, statsmodels, PyMC, SHAP, survival analysis
Scientific Writing 21 Manuscript writing, peer review, LaTeX posters, slides, figure guides
Systems Biology & Multi-omics 11 COBRApy, LaminDB, Reactome, STRING
Proteomics & Protein Engineering 10 ESM, UniProt, PyOpenMS, matchms, HMDB
Lab Automation 6 Opentrons, Benchling
Data Visualization 5 Plotly, Seaborn
Molecular Biology 3 CRISPR sgRNA design, gene expression, cloning

Skill types: 72 toolkits, 53 database connectors, 36 guides, 35 pipelines

Installation

Prerequisites

Note: SciAgent-Skills is not an npm package. Skills are plain markdown files read directly by your AI agent โ€” no npx, npm install, or runtime dependencies needed. Just clone the repository and point your agent at the skill files.

Step 1: Clone the Repository

git clone https://github.com/jaechang-hits/SciAgent-Skills.git
cd SciAgent-Skills

Step 2: Choose Your Setup Method

Method A: Claude Code Plugin (Recommended)

Load SciAgent-Skills as a Claude Code plugin for the current session:

claude --plugin-dir /path/to/SciAgent-Skills

To verify the plugin loaded, run /plugin inside Claude Code and check that sciagent-skills appears in the Installed tab.

Skills become available as /sciagent-skills:<skill-name>:

/sciagent-skills:scanpy-scrna-seq
/sciagent-skills:rdkit-cheminformatics
/sciagent-skills:pymc-bayesian-modeling

Or just describe your task โ€” the agent finds the relevant skill automatically:

"Perform differential expression analysis on this RNA-seq count matrix"

Persistent installation โ€” to load the plugin automatically in every session, use the plugin install command inside Claude Code:

/plugin marketplace add jaechang-hits/SciAgent-Skills
/plugin install sciagent-skills

Method B: Project-Level Integration (Claude Code)

Clone into your project directory so Claude Code picks up skills via CLAUDE.md:

cd your-project
git clone https://github.com/jaechang-hits/SciAgent-Skills.git .sciagent-skills

Add to your project's CLAUDE.md:

## Scientific Skills
Reference skills in `.sciagent-skills/skills/` for domain-specific analysis.
Registry: `.sciagent-skills/registry.yaml`

Using with Other Agents

SciAgent-Skills works with any AI agent that can read project files. Clone the repo into your project, then configure the agent to discover skills via registry.yaml.

Method C: OpenAI Codex CLI

cd your-project
git clone https://github.com/jaechang-hits/SciAgent-Skills.git .sciagent-skills
cp .sciagent-skills/integration-templates/AGENTS.md ./AGENTS.md

Codex reads AGENTS.md at the project root automatically. If you already have an AGENTS.md, append the contents from the template.

Method D: Cursor

cd your-project
git clone https://github.com/jaechang-hits/SciAgent-Skills.git .sciagent-skills
mkdir -p .cursor/rules
cp .sciagent-skills/integration-templates/cursor-rules.md .cursor/rules/sciagent-skills.md

Cursor loads rules from .cursor/rules/ automatically. Alternatively, you can use the AGENTS.md template โ€” Cursor supports it as well.

Method E: Windsurf

cd your-project
git clone https://github.com/jaechang-hits/SciAgent-Skills.git .sciagent-skills
mkdir -p .windsurf/rules
cp .sciagent-skills/integration-templates/windsurf-rules.md .windsurf/rules/sciagent-skills.md

Windsurf loads rules from .windsurf/rules/ automatically. Alternatively, you can use the AGENTS.md template โ€” Windsurf supports it as well.

Other agents: If your agent reads project files, clone the repo as .sciagent-skills/ and instruct the agent (via its config mechanism) to read .sciagent-skills/registry.yaml for skill discovery.

Step 3: Install Dependencies

cd SciAgent-Skills
pixi install

Pixi handles the Python environment and all required packages. If you don't have pixi installed:

curl -fsSL https://pixi.sh/install.sh | bash

How Skills Work

Each skill follows a structured template:

skills/<category>/<skill-name>/
  SKILL.md          # Main skill file (300-550 lines)
  references/       # Optional deep-dive reference files
  assets/           # Optional templates, configs

A SKILL.md contains:

  • Frontmatter โ€” name, description, license (for agent discovery)
  • Overview & When to Use โ€” what the tool does and when to reach for it
  • Prerequisites โ€” packages, data, environment setup
  • Quick Start โ€” minimal copy-paste example
  • Workflow / Core API โ€” step-by-step pipeline or module-by-module API guide
  • Key Parameters โ€” tunable settings with defaults and ranges
  • Common Recipes โ€” self-contained snippets for common tasks
  • Troubleshooting โ€” problem/cause/solution table

The agent reads only the description field during planning. Full skill content is loaded on demand when relevant.

Directory Structure

SciAgent-Skills/
โ”œโ”€โ”€ .claude-plugin/
โ”‚   โ””โ”€โ”€ plugin.json        # Claude Code plugin manifest
โ”œโ”€โ”€ integration-templates/  # Config templates for Codex, Cursor, Windsurf
โ”œโ”€โ”€ skills/                 # All 197 skills organized by category
โ”‚   โ”œโ”€โ”€ genomics-bioinformatics/
โ”‚   โ”œโ”€โ”€ structural-biology-drug-discovery/
โ”‚   โ”œโ”€โ”€ scientific-computing/
โ”‚   โ”œโ”€โ”€ cell-biology/
โ”‚   โ”œโ”€โ”€ biostatistics/
โ”‚   โ”œโ”€โ”€ scientific-writing/
โ”‚   โ”œโ”€โ”€ systems-biology-multiomics/
โ”‚   โ”œโ”€โ”€ proteomics-protein-engineering/
โ”‚   โ”œโ”€โ”€ lab-automation/
โ”‚   โ”œโ”€โ”€ data-visualization/
โ”‚   โ””โ”€โ”€ molecular-biology/
โ”œโ”€โ”€ templates/              # Skill authoring templates
โ”œโ”€โ”€ registry.yaml           # Index of all skills
โ”œโ”€โ”€ CLAUDE.md               # Skill authoring guide
โ””โ”€โ”€ scripts/
    โ””โ”€โ”€ validate_registry.py

Example Use Cases

Single-Cell RNA-seq Analysis (scRNA-seq)

"Load 10X data, QC filter, normalize, cluster, find marker genes, and annotate cell types"

Uses: anndata-data-structure โ†’ scanpy-scrna-seq

Bulk RNA-seq Differential Expression

"Run DESeq2-style differential expression analysis on this count matrix, generate volcano plot"

Uses: pydeseq2-differential-expression โ†’ matplotlib-scientific-plotting

Drug Discovery Pipeline

"Search ChEMBL for EGFR inhibitors with IC50 < 100nM, filter with Lipinski rules using RDKit, dock top candidates with AutoDock Vina"

Uses: chembl-database-bioactivity โ†’ rdkit-cheminformatics โ†’ autodock-vina-docking

Protein Structure Prediction & Analysis

"Get the AlphaFold structure for UniProt P04637, assess confidence, find high-confidence binding regions"

Uses: uniprot-protein-database โ†’ alphafold-database-access

Bayesian Biostatistics

"Fit a hierarchical Bayesian model to this clinical trial data with patient-level random effects"

Uses: pymc-bayesian-modeling โ†’ matplotlib-scientific-plotting

Multi-omics Integration

"Integrate transcriptomics and proteomics data, run pathway enrichment, build a protein interaction network"

Uses: lamindb-data-management โ†’ reactome-pathway-analysis โ†’ string-protein-interaction

Contributing

Adding a New Skill

  1. Read CLAUDE.md for the full authoring workflow
  2. Classify your topic (pipeline / toolkit / database / guide)
  3. Pick a category from the table above
  4. Use the appropriate template from templates/
  5. Add the entry to registry.yaml
  6. Validate: python scripts/validate_registry.py

Skill Templates

Template Use When
SKILL_TEMPLATE.md Linear inputโ†’processโ†’output pipeline (e.g., DESeq2)
SKILL_TEMPLATE_TOOLKIT.md Collection of independent modules (e.g., RDKit)
SKILL_TEMPLATE_PROSE.md Conceptual guide, decision frameworks (e.g., statistical test selection)

Requirements

  • Python 3.12+ (for validation scripts)
  • No runtime dependencies โ€” skills are markdown files read by the agent
  • Individual skills list their own tool-specific prerequisites (e.g., pip install scanpy)

Comparison with Other Tools

Feature SciAgent-Skills GPTomics/bioSkills ClawBio
Total skills 197 ~30 ~20
BixBench benchmark 92.0% โ€” โ€”
Skill types Pipeline, Toolkit, Database, Guide Pipeline Pipeline
Multi-agent support Claude Code, Codex, Cursor, Windsurf Claude Code Claude Code
Claude Code plugin Yes No No
Web platform OmicsHorizon No No

License

CC-BY-4.0 for original content. Individual skills note the license of their underlying tools.

Acknowledgments

This project builds on 50+ open-source scientific Python packages. If you find a skill useful, consider starring the underlying tool's repository and supporting its maintainers.


Related searches: bioinformatics AI agent, Claude Code scientific skills, RNA-seq analysis tool, single-cell RNA-seq AI, drug discovery AI pipeline, protein structure prediction, computational biology automation, life science AI tools, ๋ฐ”์ด์˜ค์ธํฌ๋งคํ‹ฑ์Šค AI, ์˜ค๋ฏน์Šค ํ˜ธ๋ผ์ด์ฆŒ, ์ƒ๋ช…๊ณผํ•™ AI ์—์ด์ „ํŠธ, BixBench benchmark

Release History

VersionChangesUrgencyDate
main@2026-04-17Latest activity on main branchHigh4/17/2026
0.0.0No release found โ€” using repo HEADHigh4/9/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

claude-ruby-grape-railsClaude Code plugin for Ruby, Rails, Grape, PostgreSQL, Redis, and Sidekiq developmentv1.13.4
GENesis-AGIAutonomous AI agent with persistent memory, self-learning, and earned autonomy. Cognitive partner that remembers, learns, and evolves.v3.0a8
claude-code-skills-zh๐Ÿ› ๏ธ ๆœ€ๅฎž็”จ็š„ Claude Code Skills ๅˆ้›† | ็ฒพ้€‰ 100+ | 18ไธชๅŽŸๅˆ›ๅฏๅฎ‰่ฃ…ๆŠ€่ƒฝ | ๆŒ‰ๅœบๆ™ฏๅˆ†็ฑป | ๅคๅˆถๅณ่ฃ…0.0.0
hermes-gate๐Ÿ›๏ธ Hermes Gate โ€” Terminal TUI for managing remote Hermes Agent sessions with auto-reconnect, detach support, and zero config0.0.0
claude-code-skillforgeBuild, upgrade, and validate Claude Code and Antigravity SKILL.md files with live best practices and multi-marketplace discovery tools.main@2026-04-21