Executable Agent Skill · 2025

One-Person AI Pharma

Build a complete AI-powered protein design pipeline with cloud GPU compute and automated wet-lab validation. End-to-end, from a laptop, for ~$1.7K per 3-round campaign.

$5
Dry / round
$582
Wet / 5 seqs
21d
Wet turnaround
~$1.7K
3 rounds total
The AWS Analogy for Biology

Infrastructure that changes the economics

In 2006, AWS eliminated the need to buy servers. A developer could rent GPU by the second and deploy within hours. A similar compression is happening in biotech right now — except instead of serving web pages, you're designing proteins.

Cloud GPU (Modal) + protein design tools (biomodals) + automated lab (Adaptyv Bio) = the full stack for AI-driven binder discovery, accessible to a single researcher. — ~$1.7K for 3 rounds of design-validate-iterate vs. $1-3M for traditional CRO
Pipeline

Four-stage closed loop

1
Stage 01
Target Acquisition
Download target structure from PDB or AlphaFold DB. Extract the relevant chain.
wget https://files.rcsb.org/download/5JDS.pdb
grep "^ATOM.* A " 5JDS.pdb > 5JDS_chainA.pdb
2
Stage 02
Dry Design — Modal + biomodals
GPU-accelerated de novo binder generation. BindCraft, RFdiffusion, Chai-1, AF2Rank — all callable via single Python commands on Modal's serverless infrastructure.
GPU=A100 uvx modal run modal_bindcraft.py \
  --input-pdb 5JDS_chainA.pdb \
  --number-of-final-designs 5
3
Stage 03
Wet Validation — Adaptyv Bio
Submit candidate sequences for automated expression and SPR/BLI binding assays. Receive real kinetic parameters: Kd, kon, koff.
experiment = client.experiments.create(
    assay_type="binding",
    target_id="comp-pdl1-human",
    sequences=[{"name":"d1","sequence":"QVQLV..."}]
)
4
Stage 04
Feedback → Next Iteration
Experimental Kd guides the next round of computational design. Hits (Kd < 10 nM) advance; misses inform the next scaffold selection.
# Filter and iterate
hits = [r for r in results if r.kd < 1e-8]
best = min(hits, key=lambda r: r.kd) if hits else None
Dry Lab

Modal + biomodals: GPU supercomputer in your terminal

Modal provides serverless A100/L40S GPU compute billed per second. biomodals wraps the best open-source protein engineering tools into one-line Modal commands. Modal free tier: $30/month (~6 complete dry rounds).

BindCraft
$2-4 / 3 designs
AF2-conditioned end-to-end binder design
RFdiffusion
$1 / run
Scaffold diffusion generation
Chai-1
Complex
Multi-chain complex structure prediction
AF2Rank
$0.5 / run
ipSAE/ipAE binding score
Boltz-1
Open-source
AF3-class prediction, fully open
RFantibody
$2 / run
Antibody CDR design
Wet Lab

Adaptyv Bio: the protein lab as an API

Protein expression, binding assays, real Kd — delivered by API. No lab bench required. — Adaptyv Bio, $8M seed, Lausanne 2025
Targets
EGFR, HER2, PD-L1, IL-7Rα
Self-service via API
Assay
SPR / BLI
Kinetic binding: Kd, kon, koff
Cost
$116 / seq
$99 assay + $17 materials
Turnaround
21 days
Expression + assay + QC
Example result payload
{
  "sequence_name": "VHH-01",
  "target_name": "HER2 / ERBB2",
  "kd": 8.1e-10,         // M
  "kon": 2400000,         // M^-1 s^-1
  "koff": 0.0019,         // s^-1
  "binding_strength": "strong",
  "r_squared": 0.999
}
Cost Breakdown

Real numbers

Dry Lab (Modal)

  • BindCraft (5 designs): ~$3 / ~1h
  • Chai-1 complex check: ~$1 / 20min
  • AF2Rank scoring: ~$0.5 / 10min
  • 1 round total: ~$5

Wet Lab (Adaptyv)

  • Assay fee: $99 / sequence
  • Materials: ~$17 / sequence
  • 5 sequences: ~$582
  • Turnaround: 21 days
$15
Dry (3×$5)
+
$1,746
Wet (3×$582)
=
~$1,761
Total
vs. $1-3M and 18-36 months for a traditional CRO engagement. This is not a toy — EGFR binder competitions have demonstrated 2.5-13% first-round hit rates with these tools.
Current limitations: Self-service targets are limited (EGFR, HER2, PD-L1, IL-7Rα). 21-day wet turnaround dominates the timeline. Only binding assays covered — selectivity, PK/PD, immunogenicity still require traditional paths.
Getting Started

Five steps to your first design

Step 1 · Install dependencies
curl -LsSf https://astral.sh/uv/install.sh | sh
python -m modal setup   # get token at modal.com ($30 free/month)
pip install adaptyv-sdk # API client for wet lab
Step 2 · Clone biomodals
git clone https://github.com/hgbrian/biomodals
cd biomodals
Step 3 · Download target and design (~$3, ~1 hour)
wget https://files.rcsb.org/download/5JDS.pdb
GPU=A100 uvx modal run modal_bindcraft.py \
  --input-pdb 5JDS.pdb --number-of-final-designs 5
Step 4 · Submit to Adaptyv (get API key at foundry.adaptyvbio.com)
from adaptyv_sdk import AdaptyvClient
client = AdaptyvClient(api_key="your_key")
exp = client.experiments.create(
    assay_type="binding",
    target_id="comp-pdl1-human",
    sequences=[{"name":"d1","sequence":"QVQLV..."}]
)
Step 5 · Get results in 21 days, iterate
results = client.results.list(experiment_id=exp.id)
for r in results:
    print(f"{r.sequence_name}: Kd = {r.kd:.2e} M")
Resources

Everything in one place

ResourceURL
GitHub repogithub.com/junior1p/one-person-pharma
Agent skillgithub.com/junior1p/one-person-pharma/tree/main/skills
biomodalsgithub.com/hgbrian/biomodals
Boolean Biotech Blogblog.booleanbiotech.com
Adaptyv API docsdocs.adaptyvbio.com
Adaptyv AI Agentsagents.adaptyvbio.com
Adaptyv EGFR竞赛biorxiv.org/content/10.1101/2025.04.17.648362