synthetic-sciences/openscience is an AI workbench that carries out scientific research by reading papers, forming hypotheses, writing and running code, conducting experiments, analyzing results, and preparing reports. Researchers use it for work in machine learning, biology, physics, and chemistry with remote or local models. Catalogue add-ons extend its scientific workflows through skills and instructions.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add synthetic-sciences/openscience --skill pharmacology-wetlabgit clone --depth 1 https://github.com/synthetic-sciences/openscienceWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/synthetic-sciences/openscience/pharmacology-wetlab)<a href="https://agentmods.dev/skills/synthetic-sciences/openscience/pharmacology-wetlab"><img src="https://agentmods.dev/badge/skills/synthetic-sciences/openscience/pharmacology-wetlab/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/synthetic-sciences/openscience/pharmacology-wetlab"><img src="https://agentmods.dev/badge/skills/synthetic-sciences/openscience/pharmacology-wetlab.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00079 | $0.05841 |
| Opus 5 | $0.00039 | $0.02920 |
| Sonnet 5 | $0.00016 | $0.01168 |
| Haiku 4.5 | $0.00008 | $0.00584 |
Grade A, and why
pharmacology-wetlab scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 605 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Pharmacology Wet-Lab: Experimental Data Analysis
Overview
Pharmacology Wet-Lab provides computational tools for analyzing data from pharmacology experiments. This skill covers western blot densitometry and quantification, xenograft tumor growth inhibition analysis, pharmaceutical stability modeling using Arrhenius kinetics, radiolabeled antibody biodistribution calculations, MIRD-based dosimetry, adverse event grading against CTCAE criteria, and dose-response curve fitting for IC50/EC50 determination.
When to Use This Skill
- Quantifying protein expression from western blot images
- Analyzing xenograft tumor growth data and calculating TGI%
- Predicting pharmaceutical shelf life from accelerated stability data
- Processing radiolabeled antibody biodistribution data (%ID/g)
- Estimating absorbed radiation doses (MIRD dosimetry)
- Grading adverse events against CTCAE or VCOG-CTCAE scales
- Fitting dose-response curves for IC50/EC50 determination
- Calculating combination indices (Chou-Talalay method)
Related Skills: For drug database queries use chembl-database or fda-database. For molecular docking use diffdock. For survival analysis use scikit-survival.
Installation
uv pip install opencv-python scipy pandas numpy matplotlib lifelines
Quick Start
import numpy as np
from scipy.optimize import curve_fit
# 4-Parameter Logistic for dose-response (IC50)
def four_pl(x, bottom, top, ic50, hill):
return bottom + (top - bottom) / (1 + (x / ic50) ** hill)
concentrations = np.array([0.001, 0.01, 0.1, 1, 10, 100]) # uM
viability = np.array([98, 95, 82, 45, 12, 3]) # % viability
popt, pcov = curve_fit(four_pl, concentrations, viability,
p0=[0, 100, 1, 1], maxfev=10000)
print(f"IC50: {popt[2]:.3f} uM")
print(f"Hill coefficient: {popt[3]:.2f}")
Core Capabilities
1. Western Blot Densitometry
Quantify protein bands from western blot images.
import cv2
import numpy as np
def quantify_western_blot(image_path, n_lanes, band_height=50):
"""Quantify western blot band intensities.
Args:
image_path: path to blot image
n_lanes: number of lanes
band_height: expected band height in pixels
"""
image = cv2.imread(image_path, cv2.IMREAD_GRAYSCALE)
if image is None:
raise FileNotFoundError(f"Cannot load {image_path}")
# Invert (bands are dark on light background)
inverted = 255 - image
h, w = inverted.shape
# Divide into lanes
lane_width = w // n_lanes
lane_intensities = []
for i in range(n_lanes):
x_start = i * lane_width + int(lane_width * 0.1)
x_end = (i + 1) * lane_width - int(lane_width * 0.1)
lane = inverted[:, x_start:x_end]
# Find band (peak in vertical intensity profile)
profile = lane.mean(axis=1)
# Background subtraction (rolling ball approximation)
from scipy.ndimage import minimum_filter1d
background = minimum_filter1d(profile, size=100)
corrected = profile - background
corrected = np.clip(corrected, 0, None)
# Band detection
from scipy.signal import find_peaks
peaks, props = find_peaks(corrected, height=corrected.max()*0.1,
distance=band_height)
# Integrate band intensity (area under curve)
total_intensity = 0
for peak in peaks:
start = max(0, peak - band_height // 2)
end = min(len(corrected), peak + band_height // 2)
band_area = corrected[start:end].sum()
total_intensity += band_area
lane_intensities.append({
'lane': i + 1,
'raw_intensity': total_intensity,
'n_bands': len(peaks),
'peak_positions': list(peaks)
})
# Normalize to loading control (first lane or specified)
import pandas as pd
df = pd.DataFrame(lane_intensities)
control_intensity = df.iloc[0]['raw_intensity']
df['normalized'] = df['raw_intensity'] / control_intensity
df['fold_change'] = df['normalized']
print("Lane intensities:")
print(df[['lane', 'raw_intensity', 'normalized', 'fold_change']])
return df
def calculate_fold_change(target_intensities, loading_control_intensities):
"""Calculate normalized fold change with loading control.
Args:
target_intensities: list of target protein band intensities
loading_control_intensities: list of loading control (e.g., actin) intensities
"""
target = np.array(target_intensities)
control = np.array(loading_control_intensities)
# Normalize target to loading control
normalized = target / control
# Fold change relative to first sample
fold_change = normalized / normalized[0]
return fold_change
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 605 lines · 79 tokens per session scan A f5feb4d9986a
pharmacology-wetlab is a skill published in the GitHub repository synthetic-sciences/openscience (3,535 stars, last pushed today), licensed Apache-2.0. It adds 79 tokens to every session and 5,841 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
songsee
Audio spectrograms/features (mel, chroma, MFCC) via CLI.
arxiv
Search arXiv papers by keyword, author, category, or ID.
research-paper-writing
Write ML papers for NeurIPS/ICML/ICLR: design→submit.
paper-revision-author
Revise independently drafted paper sections into one coherent LaTeX body before the abstract is written.
paper-plot-stub
Plot a results CSV (x, ybaseline, yours) as a two-line matplotlib chart and write a PDF. Demo-only.
google-workspace-setup
One-time setup for gws: install, OAuth, scopes, auto-approve.