Install any skill in seconds. Free to start, no credit card required.
Get Started Free →- Choose 3-6 exposed residues
.claude/skills/protein-design-workflow/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-17 | ✗→✓ | ▲ Improved | — | — |
| case-16 | ✗→✓ | ▲ Improved | — | — |
| case-06 | ✗→✓ | ▲ Improved | — | — |
| case-13 | ✗→✓ | ▲ Improved | — | — |
| case-15 | ✗→✓ | ▲ Improved | — | — |
Target Preparation --> Backbone Generation --> Sequence Design
| | |
v v v
(pdb skill) (rfdiffusion) (proteinmpnn)
| |
v v
Structure Validation --> Filtering
| |
v v
(alphafold/chai) (protein-qc)bash# Download from PDB curl -o target.pdb "https://files.rcsb.org/download/XXXX.pdb"
python# Extract target chain # Remove waters, ligands if needed # Trim to binding region + 10A buffer
Output: target_prepared.pdb, hotspot list
bashmodal run modal_rfdiffusion.py \ --pdb target_prepared.pdb \ --contigs "A1-150/0 70-100" \ --hotspot "A45,A67,A89" \ --num-designs 500
bashmodal run modal_bindcraft.py \ --target-pdb target_prepared.pdb \ --hotspots "A45,A67,A89" \ --num-designs 100
Output: 100-500 backbone PDBs
bashfor backbone in backbones/*.pdb; do modal run modal_proteinmpnn.py \ --pdb-path "$backbone" \ --num-seq-per-target 8 \ --sampling-temp 0.1 done
Output: 8 sequences per backbone (800-4000 total)
bash# Prepare FASTA with binder + target # binder:target format for multimer modal run modal_colabfold.py \ --input-faa all_sequences.fasta \ --out-dir predictions/
Output: AF2 predictions with pLDDT, ipTM, PAE
pythonimport pandas as pd # Load metrics designs = pd.read_csv('all_metrics.csv') # Filter filtered = designs[ (designs['pLDDT'] > 0.85) & (designs['ipTM'] > 0.50) & (designs['PAE_interface'] < 10) & (designs['scRMSD'] < 2.0) & (designs['esm2_pll'] > 0.0) ] # Rank by composite score filtered['score'] = ( 0.3 * filtered['pLDDT'] + 0.3 * filtered['ipTM'] + 0.2 * (1 - filtered['PAE_interface'] / 20) + 0.2 * filtered['esm2_pll'] ) top_designs = filtered.nlargest(50, 'score')
Output: 50-200 filtered candidates
| Stage | GPU | Time (100 designs) | |-------|-----|-------------------| | RFdiffusion | A10G | 30 min | | ProteinMPNN | T4 | 15 min | | ColabFold | A100 | 4-8 hours | | Filtering | CPU | 15 min |
| Problem | Solution | |---------|----------| | Low ipTM | Check hotspots, increase designs | | Poor diversity | Higher temperature, more backbones | | High scRMSD | Backbone may be unusual | | Low pLDDT | Check design quality |
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-03 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-17 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-21 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-19 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-16 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-22 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-06 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-13 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-15 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-20 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-02 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-14 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-18 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-07 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-11 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-05 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-08 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-04 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-01 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-09 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-10 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-12 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 18 counted toward the lift figure. The other 4 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +45 percentage points is the difference between those two pass rates over the 18 comparable cases.
The per-case answers from this run were removed by the retention sweep, so the case table below shows the verdicts without the text either arm produced. The counts above were recorded at the time and are unaffected. Answers are now kept for 180 days.
Other measured skills in the registry, with their headline benchmark lift.