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 synthetic-biologygit 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/synthetic-biology)<a href="https://agentmods.dev/skills/synthetic-sciences/openscience/synthetic-biology"><img src="https://agentmods.dev/badge/skills/synthetic-sciences/openscience/synthetic-biology/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/synthetic-biology"><img src="https://agentmods.dev/badge/skills/synthetic-sciences/openscience/synthetic-biology.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high YARA Match · line 3 YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
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.00061 | $0.05975 |
| Opus 5 | $0.00030 | $0.02988 |
| Sonnet 5 | $0.00012 | $0.01195 |
| Haiku 4.5 | $0.00006 | $0.00598 |
Grade A, and why
synthetic-biology 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 — 571 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Synthetic Biology: Design & Simulation
Overview
Synthetic Biology provides computational tools for designing and simulating engineered biological systems. This skill covers codon optimization with species-specific usage tables, gene circuit ODE modeling (repressilator, toggle switch, inducible promoters) with growth dilution coupling, SBML model creation and validation using python-libsbml, bifurcation analysis for bistable circuits, barcode sequencing fitness analysis, and genome engineering with expression cassette insertion. All simulations produce quantitative outputs suitable for guiding experimental design.
When to Use This Skill
- Optimizing gene sequences for heterologous expression (codon adaptation)
- Simulating gene circuit dynamics (toggle switches, repressilators, inducible systems)
- Creating standardized SBML models of biological networks
- Analyzing bistability and bifurcation behavior in synthetic circuits
- Processing barcode sequencing data for fitness landscape analysis
- Designing expression cassettes and generating annotated plasmid maps
- Sensitivity analysis of circuit parameters for robust design
Related Skills: For constraint-based metabolic modeling use cobrapy. For sequence manipulation and file parsing use biopython. For molecular cloning simulation use molecular-cloning.
Installation
uv pip install python-libsbml scipy biopython numpy pandas matplotlib
Quick Start
import numpy as np
from scipy.integrate import solve_ivp
# Toggle switch: two mutually repressing genes
def toggle_switch(t, y, alpha1, alpha2, beta, n, gamma):
u, v = y # Protein concentrations
du = alpha1 / (1 + v**n) - (beta + gamma) * u # gamma = growth dilution
dv = alpha2 / (1 + u**n) - (beta + gamma) * v
return [du, dv]
sol = solve_ivp(toggle_switch, [0, 50], [0.1, 3.0],
args=(5.0, 5.0, 0.5, 2.0, 0.1),
t_eval=np.linspace(0, 50, 500))
print(f"Final state: u={sol.y[0,-1]:.3f}, v={sol.y[1,-1]:.3f}")
print(f"Bistable: {'Yes' if abs(sol.y[0,-1] - sol.y[1,-1]) > 0.5 else 'No'}")
What ships with it
4 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 · 571 lines · 61 tokens per session scan A a4efdb495365
synthetic-biology is a skill published in the GitHub repository synthetic-sciences/openscience (3,518 stars, last pushed today), licensed Apache-2.0. It adds 61 tokens to every session and 5,975 once invoked, about $0.0003 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.